Show / Hide Table of Contents

Class SystemDetails

Provides information about the system architecture and operating system.

Inheritance
object
SystemDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OsmanagementhubService.Models
Assembly: OCI.DotNetSDK.Osmanagementhub.dll
Syntax
public class SystemDetails

Properties

Architecture

Declaration
[Required(ErrorMessage = "Architecture is required.")]
[JsonProperty(PropertyName = "architecture")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ArchType? Architecture { get; set; }
Property Value
Type Description
ArchType?

Architecture type.

Remarks

Required

KspliceEffectiveKernelVersion

Declaration
[JsonProperty(PropertyName = "kspliceEffectiveKernelVersion")]
public string KspliceEffectiveKernelVersion { get; set; }
Property Value
Type Description
string

Version of the Ksplice effective kernel.

OsFamily

Declaration
[Required(ErrorMessage = "OsFamily is required.")]
[JsonProperty(PropertyName = "osFamily")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OsFamily? OsFamily { get; set; }
Property Value
Type Description
OsFamily?

Operating system type.

Remarks

Required

OsKernelRelease

Declaration
[JsonProperty(PropertyName = "osKernelRelease")]
public string OsKernelRelease { get; set; }
Property Value
Type Description
string

Release of the kernel.

OsKernelVersion

Declaration
[JsonProperty(PropertyName = "osKernelVersion")]
public string OsKernelVersion { get; set; }
Property Value
Type Description
string

Version of the kernel.

OsName

Declaration
[Required(ErrorMessage = "OsName is required.")]
[JsonProperty(PropertyName = "osName")]
public string OsName { get; set; }
Property Value
Type Description
string

Name of the operating system.

Remarks

Required

OsSystemVersion

Declaration
[Required(ErrorMessage = "OsSystemVersion is required.")]
[JsonProperty(PropertyName = "osSystemVersion")]
public string OsSystemVersion { get; set; }
Property Value
Type Description
string

Version of the operating system.

Remarks

Required

In this article
Back to top