VmssDataDisk Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
VmssDataDisk() |
Initializes a new instance of the VmssDataDisk class. |
VmssDataDisk(Int32, Int32, String, String) |
Initializes a new instance of the VmssDataDisk class. |
VmssDataDisk()
Initializes a new instance of the VmssDataDisk class.
public VmssDataDisk ();
Public Sub New ()
Applies to
VmssDataDisk(Int32, Int32, String, String)
Initializes a new instance of the VmssDataDisk class.
public VmssDataDisk (int lun, int diskSizeGb, string diskType, string diskLetter);
new Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmssDataDisk : int * int * string * string -> Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.VmssDataDisk
Public Sub New (lun As Integer, diskSizeGb As Integer, diskType As String, diskLetter As String)
Parameters
- lun
- Int32
Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM. Lun 0 is reserved for the service fabric data disk.
- diskSizeGb
- Int32
Disk size for each vm in the node type in GBs.
- diskType
- String
Managed data disk type. Specifies the storage account type for the managed disk Possible values include: 'Standard_LRS', 'StandardSSD_LRS', 'Premium_LRS'
- diskLetter
- String
Managed data disk letter. It can not use the reserved letter C or D and it can not change after created.