Show / Hide Table of Contents

Class DedicatedVmHostShapeSummary

The shape used to launch the dedicated virtual machine (VM) host.

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

Properties

AvailabilityDomain

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

The shape's availability domain.

CapacityConfigs

Declaration
[JsonProperty(PropertyName = "capacityConfigs")]
public List<CapacityConfig> CapacityConfigs { get; set; }
Property Value
Type Description
List<CapacityConfig>

A list of capacity configs that are supported by this dedicated VM host shape.

DedicatedVmHostShape

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

The name of the dedicated VM host shape. You can enumerate all available shapes by calling {@link #listDedicatedVmHostShapes(ListDedicatedVmHostShapesRequest) listDedicatedVmHostShapes}.

Remarks

Required

In this article
Back to top