Show / Hide Table of Contents

Class OlvmGuestOperatingSystem

Represents an operating system installed on the virtual machine.

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

Properties

Architecture

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

The architecture of the operating system, such as x86_64.

Codename

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

Code name of the operating system, such as Maipo.

Distribution

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

Full name of operating system distribution.

Family

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

Family of operating system, such as Linux.

Kernel

Declaration
[JsonProperty(PropertyName = "kernel")]
public OlvmKernel Kernel { get; set; }
Property Value
Type Description
OlvmKernel

Version

Declaration
[JsonProperty(PropertyName = "version")]
public OlvmVersion Version { get; set; }
Property Value
Type Description
OlvmVersion
In this article
Back to top