Show / Hide Table of Contents

    Class DataDiskImage

    Contains the data disk images information.

    Inheritance
    Object
    DataDiskImage
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Compute.dll
    Syntax
    public class DataDiskImage

    Constructors

    DataDiskImage()

    Initializes a new instance of the DataDiskImage class.

    Declaration
    public DataDiskImage ();

    DataDiskImage(Nullable<Int32>)

    Initializes a new instance of the DataDiskImage class.

    Declaration
    public DataDiskImage (Nullable<int> lun = null);
    Parameters
    Nullable<Int32> lun

    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.

    Properties

    Lun

    Gets 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.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="lun")]
    public Nullable<int> Lun { get; }
    Property Value
    Nullable<Int32>

    Back to top Azure SDK for Net