Show / Hide Table of Contents

Class OlvmHardwareInformation

Represents hardware information of host

Inheritance
object
OlvmHardwareInformation
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 OlvmHardwareInformation

Properties

Family

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

Type of host???s CPU.

Manufacturer

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

Manufacturer of the host???s machine and hardware vendor.

ProductName

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

Host???s product name (for example RHEV Hypervisor).

SerialNumber

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

Unique ID for host???s chassis.

SupportedRngSources

Declaration
[JsonProperty(PropertyName = "supportedRngSources")]
public List<RngSource> SupportedRngSources { get; set; }
Property Value
Type Description
List<RngSource>

Supported sources of random number generator.

Uuid

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

Unique ID for each host.

Version

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

Unique name for each of the manufacturer.

In this article
Back to top