Show / Hide Table of Contents

Class OperatingSystem

Operating System of the platform on which the Java Runtime was reported.

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

Properties

Architecture

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

The architecture of the operating system as provided by the Java system property os.arch.

Remarks

Required

Distribution

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

The name of the Operating System distribution, such as Oracle Linux 9, Windows 10, or macOS X.

Family

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

The operating system type, such as Windows, Linux or macOS

Remarks

Required

ManagedInstanceCount

Declaration
[JsonProperty(PropertyName = "managedInstanceCount")]
public int? ManagedInstanceCount { get; set; }
Property Value
Type Description
int?

Number of instances running the operating system.

Name

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

The name of the operating system as provided by the Java system property os.name.

Remarks

Required

Version

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

The version of the operating system as provided by the Java system property os.version.

Remarks

Required

In this article
Back to top