/// <summary> /// Initializes a new instance of the VirtualMachineScaleSetOSDisk /// class. /// </summary> /// <param name="createOption">Specifies how the virtual machines in /// the scale set should be created.<br><br> The only /// allowed value is: **FromImage** \u2013 This value is used when you /// are using an image to create the virtual machine. If you are using /// a platform image, you also use the imageReference element described /// above. If you are using a marketplace image, you also use the plan /// element previously described. Possible values include: 'FromImage', /// 'Empty', 'Attach'</param> /// <param name="name">The disk name.</param> /// <param name="caching">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'</param> /// <param name="osType">This property allows you to specify the type /// of the OS that is included in the disk if creating a VM from /// user-image or a specialized VHD. <br><br> Possible /// values are: <br><br> **Windows** <br><br> /// **Linux**. Possible values include: 'Windows', 'Linux'</param> /// <param name="image">The Source User Image VirtualHardDisk. This /// VirtualHardDisk will be copied before using it to attach to the /// Virtual Machine. If SourceImage is provided, the destination /// VirtualHardDisk should not exist.</param> /// <param name="vhdContainers">The list of virtual hard disk container /// uris.</param> /// <param name="managedDisk">The managed disk parameters.</param> public VirtualMachineScaleSetOSDisk(DiskCreateOptionTypes createOption, string name = default(string), CachingTypes?caching = default(CachingTypes?), OperatingSystemTypes?osType = default(OperatingSystemTypes?), VirtualHardDisk image = default(VirtualHardDisk), IList <string> vhdContainers = default(IList <string>), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) { Name = name; Caching = caching; CreateOption = createOption; OsType = osType; Image = image; VhdContainers = vhdContainers; ManagedDisk = managedDisk; CustomInit(); }
/// <summary> /// Initializes a new instance of the DataDisk class. /// </summary> /// <param name="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.</param> /// <param name="createOption">Specifies how the virtual machine should /// be created.<br><br> Possible values /// are:<br><br> **Attach** \u2013 This value is used when /// you are using a specialized disk to create the virtual /// machine.<br><br> **FromImage** \u2013 This value is /// used when you are using an image to create the virtual machine. If /// you are using a platform image, you also use the imageReference /// element described above. If you are using a marketplace image, you /// also use the plan element previously described. Possible values /// include: 'FromImage', 'Empty', 'Attach'</param> /// <param name="name">The disk name.</param> /// <param name="vhd">The virtual hard disk.</param> /// <param name="image">The source user image virtual hard disk. The /// virtual hard disk will be copied before being attached to the /// virtual machine. If SourceImage is provided, the destination /// virtual hard drive must not exist.</param> /// <param name="caching">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'</param> /// <param name="diskSizeGB">Specifies the size of an empty data disk /// 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</param> /// <param name="managedDisk">The managed disk parameters.</param> public DataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes?caching = default(CachingTypes?), int?diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) { Lun = lun; Name = name; Vhd = vhd; Image = image; Caching = caching; CreateOption = createOption; DiskSizeGB = diskSizeGB; ManagedDisk = managedDisk; CustomInit(); }
/// <summary> /// Initializes a new instance of the OSDisk class. /// </summary> /// <param name="createOption">Specifies how the virtual machine should /// be created.<br><br> Possible values /// are:<br><br> **Attach** \u2013 This value is used when /// you are using a specialized disk to create the virtual /// machine.<br><br> **FromImage** \u2013 This value is /// used when you are using an image to create the virtual machine. If /// you are using a platform image, you also use the imageReference /// element described above. If you are using a marketplace image, you /// also use the plan element previously described. Possible values /// include: 'FromImage', 'Empty', 'Attach'</param> /// <param name="osType">This property allows you to specify the type /// of the OS that is included in the disk if creating a VM from /// user-image or a specialized VHD. <br><br> Possible /// values are: <br><br> **Windows** <br><br> /// **Linux**. Possible values include: 'Windows', 'Linux'</param> /// <param name="encryptionSettings">Specifies the encryption settings /// for the OS Disk. <br><br> Minimum api-version: /// 2015-06-15</param> /// <param name="name">The disk name.</param> /// <param name="vhd">The virtual hard disk.</param> /// <param name="image">The source user image virtual hard disk. The /// virtual hard disk will be copied before being attached to the /// virtual machine. If SourceImage is provided, the destination /// virtual hard drive must not exist.</param> /// <param name="caching">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'</param> /// <param name="diskSizeGB">Specifies the size of an empty data disk /// 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</param> /// <param name="managedDisk">The managed disk parameters.</param> public OSDisk(DiskCreateOptionTypes createOption, OperatingSystemTypes?osType = default(OperatingSystemTypes?), DiskEncryptionSettings encryptionSettings = default(DiskEncryptionSettings), string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes?caching = default(CachingTypes?), int?diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) { OsType = osType; EncryptionSettings = encryptionSettings; Name = name; Vhd = vhd; Image = image; Caching = caching; CreateOption = createOption; DiskSizeGB = diskSizeGB; ManagedDisk = managedDisk; CustomInit(); }