ImageOSDisk Constructors

Definition

Overloads

ImageOSDisk()

Initializes a new instance of the ImageOSDisk class.

ImageOSDisk(OperatingSystemTypes, OperatingSystemStateTypes, SubResource, SubResource, String, Nullable<CachingTypes>, Nullable<Int32>, StorageAccountTypes, SubResource)

Initializes a new instance of the ImageOSDisk class.

ImageOSDisk()

Initializes a new instance of the ImageOSDisk class.

public ImageOSDisk ();
Public Sub New ()

Applies to

ImageOSDisk(OperatingSystemTypes, OperatingSystemStateTypes, SubResource, SubResource, String, Nullable<CachingTypes>, Nullable<Int32>, StorageAccountTypes, SubResource)

Initializes a new instance of the ImageOSDisk class.

public ImageOSDisk (Microsoft.Azure.Management.Compute.Fluent.Models.OperatingSystemTypes osType, Microsoft.Azure.Management.Compute.Fluent.Models.OperatingSystemStateTypes osState, 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.ImageOSDisk : Microsoft.Azure.Management.Compute.Fluent.Models.OperatingSystemTypes * Microsoft.Azure.Management.Compute.Fluent.Models.OperatingSystemStateTypes * 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.ImageOSDisk
Public Sub New (osType As OperatingSystemTypes, osState As OperatingSystemStateTypes, 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

osType
OperatingSystemTypes

This property allows you to specify the type of the OS that is included in the disk if creating a VM from a custom image. <br><br> Possible values are: <br><br> Windows <br><br> Linux. Possible values include: 'Windows', 'Linux'

osState
OperatingSystemStateTypes

The OS State. Possible values include: 'Generalized', 'Specialized'

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