ImageDiskReference Constructors

Definition

Overloads

ImageDiskReference()

Initializes a new instance of the ImageDiskReference class.

ImageDiskReference(String, Nullable<Int32>)

Initializes a new instance of the ImageDiskReference class.

ImageDiskReference(String, String, String, Nullable<Int32>)

Initializes a new instance of the ImageDiskReference class.

ImageDiskReference()

Initializes a new instance of the ImageDiskReference class.

public ImageDiskReference ();
Public Sub New ()

Applies to

ImageDiskReference(String, Nullable<Int32>)

Initializes a new instance of the ImageDiskReference class.

public ImageDiskReference (string id = default, int? lun = default);
new Microsoft.Azure.Management.Compute.Models.ImageDiskReference : string * Nullable<int> -> Microsoft.Azure.Management.Compute.Models.ImageDiskReference
Public Sub New (Optional id As String = Nothing, Optional lun As Nullable(Of Integer) = Nothing)

Parameters

id
String

A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.

lun
Nullable<Int32>

If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.

Applies to

ImageDiskReference(String, String, String, Nullable<Int32>)

Initializes a new instance of the ImageDiskReference class.

public ImageDiskReference (string id = default, string sharedGalleryImageId = default, string communityGalleryImageId = default, int? lun = default);
new Microsoft.Azure.Management.Compute.Models.ImageDiskReference : string * string * string * Nullable<int> -> Microsoft.Azure.Management.Compute.Models.ImageDiskReference
Public Sub New (Optional id As String = Nothing, Optional sharedGalleryImageId As String = Nothing, Optional communityGalleryImageId As String = Nothing, Optional lun As Nullable(Of Integer) = Nothing)

Parameters

id
String

A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.

sharedGalleryImageId
String

A relative uri containing a direct shared Azure Compute Gallery image reference.

communityGalleryImageId
String

A relative uri containing a community Azure Compute Gallery image reference.

lun
Nullable<Int32>

If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.

Applies to