Show / Hide Table of Contents

Class DedicatedVmHostSummary

A dedicated virtual machine (VM) host lets you host multiple instances on a dedicated server that is not shared with other tenancies.

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

Properties

AvailabilityDomain

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

The availability domain the dedicated VM host is running in.
Example: Uocm:PHX-AD-1

Remarks

Required

CompartmentId

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

The OCID of the compartment that contains the dedicated VM host.

Remarks

Required

DedicatedVmHostShape

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

The shape of the dedicated VM host. The shape determines the number of CPUs and other resources available for VMs.

Remarks

Required

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Remarks

Required

FaultDomain

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

The fault domain for the dedicated VM host's assigned instances. For more information, see Fault Domains.
If you do not specify the fault domain, the system selects one for you. To change the fault domain for a dedicated VM host, delete it and create a new dedicated VM host in the preferred fault domain.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example: FAULT-DOMAIN-1

Id

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

The OCID of the dedicated VM host.

Remarks

Required

LifecycleState

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

The current state of the dedicated VM host.

Remarks

Required

RemainingMemoryInGBs

Declaration
[JsonProperty(PropertyName = "remainingMemoryInGBs")]
public float? RemainingMemoryInGBs { get; set; }
Property Value
Type Description
float?

The current available memory of the dedicated VM host, in GBs.

RemainingOcpus

Declaration
[Required(ErrorMessage = "RemainingOcpus is required.")]
[JsonProperty(PropertyName = "remainingOcpus")]
public float? RemainingOcpus { get; set; }
Property Value
Type Description
float?

The current available OCPUs of the dedicated VM host.

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the dedicated VM host was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TotalMemoryInGBs

Declaration
[JsonProperty(PropertyName = "totalMemoryInGBs")]
public float? TotalMemoryInGBs { get; set; }
Property Value
Type Description
float?

The current total memory of the dedicated VM host, in GBs.

TotalOcpus

Declaration
[Required(ErrorMessage = "TotalOcpus is required.")]
[JsonProperty(PropertyName = "totalOcpus")]
public float? TotalOcpus { get; set; }
Property Value
Type Description
float?

The current total OCPUs of the dedicated VM host.

Remarks

Required

In this article
Back to top