Sdílet prostřednictvím


VmSizeProperty Constructors

Definition

Overloads

VmSizeProperty()

Initializes a new instance of the VmSizeProperty class.

VmSizeProperty(String, Nullable<Int32>, String, String, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the VmSizeProperty class.

VmSizeProperty()

Initializes a new instance of the VmSizeProperty class.

public VmSizeProperty ();
Public Sub New ()

Applies to

VmSizeProperty(String, Nullable<Int32>, String, String, Nullable<Int64>, Nullable<Int64>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the VmSizeProperty class.

public VmSizeProperty (string name = default, int? cores = default, string dataDiskStorageTier = default, string label = default, long? maxDataDiskCount = default, long? memoryInMb = default, bool? supportedByVirtualMachines = default, bool? supportedByWebWorkerRoles = default, long? virtualMachineResourceDiskSizeInMb = default, long? webWorkerResourceDiskSizeInMb = default);
new Microsoft.Azure.Management.HDInsight.Models.VmSizeProperty : string * Nullable<int> * string * string * Nullable<int64> * Nullable<int64> * Nullable<bool> * Nullable<bool> * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.HDInsight.Models.VmSizeProperty
Public Sub New (Optional name As String = Nothing, Optional cores As Nullable(Of Integer) = Nothing, Optional dataDiskStorageTier As String = Nothing, Optional label As String = Nothing, Optional maxDataDiskCount As Nullable(Of Long) = Nothing, Optional memoryInMb As Nullable(Of Long) = Nothing, Optional supportedByVirtualMachines As Nullable(Of Boolean) = Nothing, Optional supportedByWebWorkerRoles As Nullable(Of Boolean) = Nothing, Optional virtualMachineResourceDiskSizeInMb As Nullable(Of Long) = Nothing, Optional webWorkerResourceDiskSizeInMb As Nullable(Of Long) = Nothing)

Parameters

name
String

The vm size name.

cores
Nullable<Int32>

The number of cores that the vm size has.

dataDiskStorageTier
String

The data disk storage tier of the vm size.

label
String

The label of the vm size.

maxDataDiskCount
Nullable<Int64>

The max data disk count of the vm size.

memoryInMb
Nullable<Int64>

The memory whose unit is MB of the vm size.

supportedByVirtualMachines
Nullable<Boolean>

This indicates this vm size is supported by virtual machines or not

supportedByWebWorkerRoles
Nullable<Boolean>

The indicates this vm size is supported by web worker roles or not

virtualMachineResourceDiskSizeInMb
Nullable<Int64>

The virtual machine resource disk size whose unit is MB of the vm size.

webWorkerResourceDiskSizeInMb
Nullable<Int64>

The web worker resource disk size whose unit is MB of the vm size.

Applies to