Class DedicatedHostAllocatableVM
Represents the dedicated host unutilized capacity in terms of a specific VM size.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class DedicatedHostAllocatableVM
Constructors
DedicatedHostAllocatableVM()
Initializes a new instance of the DedicatedHostAllocatableVM class.
Declaration
public DedicatedHostAllocatableVM ();
DedicatedHostAllocatableVM(String, Nullable<Double>)
Initializes a new instance of the DedicatedHostAllocatableVM class.
Declaration
public DedicatedHostAllocatableVM (string vmSize = null, Nullable<double> count = null);
Parameters
|
String
vmSize
VM size in terms of which the unutilized capacity is represented. |
|
Nullable<Double>
count
Maximum number of VMs of size vmSize that can fit in the dedicated host's remaining capacity. |
Properties
Count
Gets or sets maximum number of VMs of size vmSize that can fit in the dedicated host's remaining capacity.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="count")]
public Nullable<double> Count { get; set; }
Property Value
|
Nullable<Double>
|
VmSize
Gets or sets VM size in terms of which the unutilized capacity is represented.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="vmSize")]
public string VmSize { get; set; }
Property Value
|
String
|