Show / Hide Table of Contents

Class DedicatedVmHost

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

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

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 virtual machine host is running in.
Example: Uocm:PHX-AD-1

Remarks

Required

CapacityBins

Declaration
[JsonProperty(PropertyName = "capacityBins")]
public List<CapacityBin> CapacityBins { get; set; }
Property Value
Type Description
List<CapacityBin>

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 virtual machine host.

Remarks

Required

ComputeBareMetalHostId

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

The compute bare metal host OCID of the dedicated virtual machine host.

DedicatedVmHostShape

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

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

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

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 virtual machine 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 virtual machine host, delete it, and then create a new dedicated virtual machine 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

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

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 DedicatedVmHost.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
DedicatedVmHost.LifecycleStateEnum?

The current state of the dedicated VM host.

Remarks

Required

PlacementConstraintDetails

Declaration
[JsonProperty(PropertyName = "placementConstraintDetails")]
public PlacementConstraintDetails PlacementConstraintDetails { get; set; }
Property Value
Type Description
PlacementConstraintDetails

RemainingMemoryInGBs

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

The remaining 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 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 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 total OCPUs of the dedicated VM host.

Remarks

Required

In this article
Back to top