ImageDisk Constructors

Definition

Overloads

ImageDisk()

Initializes a new instance of the ImageDisk class.

ImageDisk(SubResource, SubResource, String, Nullable<CachingTypes>, Nullable<Int32>, StorageAccountTypes, SubResource)

Initializes a new instance of the ImageDisk class.

ImageDisk()

Initializes a new instance of the ImageDisk class.

public ImageDisk ();
Public Sub New ()

Applies to

ImageDisk(SubResource, SubResource, String, Nullable<CachingTypes>, Nullable<Int32>, StorageAccountTypes, SubResource)

Initializes a new instance of the ImageDisk class.

public ImageDisk (Microsoft.Azure.Management.ResourceManager.Fluent.SubResource snapshot = default, Microsoft.Azure.Management.ResourceManager.Fluent.SubResource managedDisk = default, string blobUri = default, Microsoft.Azure.Management.Compute.Fluent.Models.CachingTypes? caching = default, int? diskSizeGB = default, Microsoft.Azure.Management.Compute.Fluent.Models.StorageAccountTypes storageAccountType = default, Microsoft.Azure.Management.ResourceManager.Fluent.SubResource diskEncryptionSet = default);
new Microsoft.Azure.Management.Compute.Fluent.Models.ImageDisk : Microsoft.Azure.Management.ResourceManager.Fluent.SubResource * Microsoft.Azure.Management.ResourceManager.Fluent.SubResource * string * Nullable<Microsoft.Azure.Management.Compute.Fluent.Models.CachingTypes> * Nullable<int> * Microsoft.Azure.Management.Compute.Fluent.Models.StorageAccountTypes * Microsoft.Azure.Management.ResourceManager.Fluent.SubResource -> Microsoft.Azure.Management.Compute.Fluent.Models.ImageDisk
Public Sub New (Optional snapshot As SubResource = Nothing, Optional managedDisk As SubResource = Nothing, Optional blobUri As String = Nothing, Optional caching As Nullable(Of CachingTypes) = Nothing, Optional diskSizeGB As Nullable(Of Integer) = Nothing, Optional storageAccountType As StorageAccountTypes = Nothing, Optional diskEncryptionSet As SubResource = Nothing)

Parameters

snapshot
SubResource

The snapshot.

managedDisk
SubResource

The managedDisk.

blobUri
String

The Virtual Hard Disk.

caching
Nullable<CachingTypes>

Specifies the caching requirements. <br><br> Possible values are: <br><br> None <br><br> ReadOnly <br><br> ReadWrite <br><br> Default: None for Standard storage. ReadOnly for Premium storage. Possible values include: 'None', 'ReadOnly', 'ReadWrite'

diskSizeGB
Nullable<Int32>

Specifies the size of empty data disks in gigabytes. This element can be used to overwrite the name of the disk in a virtual machine image. <br><br> This value cannot be larger than 1023 GB

storageAccountType
StorageAccountTypes

Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk. Possible values include: 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS'

diskEncryptionSet
SubResource

Specifies the customer managed disk encryption set resource id for the managed image disk.

Applies to