Example #1
0
 /// <summary>
 /// Initializes a new instance of the
 /// VirtualMachineScaleSetUpdateOSDisk class.
 /// </summary>
 /// <param name="caching">The caching type. Possible values include:
 /// 'None', 'ReadOnly', 'ReadWrite'</param>
 /// <param name="writeAcceleratorEnabled">Specifies whether
 /// writeAccelerator should be enabled or disabled on the disk.</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 VirtualMachineScaleSetUpdateOSDisk(CachingTypes?caching = default(CachingTypes?), bool?writeAcceleratorEnabled = default(bool?), VirtualHardDisk image = default(VirtualHardDisk), IList <string> vhdContainers = default(IList <string>), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters))
 {
     Caching = caching;
     WriteAcceleratorEnabled = writeAcceleratorEnabled;
     Image         = image;
     VhdContainers = vhdContainers;
     ManagedDisk   = managedDisk;
     CustomInit();
 }
Example #2
0
 /// <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.&lt;br&gt;&lt;br&gt; The only
 /// allowed value is: **FromImage**  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.
 /// &lt;br&gt;&lt;br&gt; Possible values are: &lt;br&gt;&lt;br&gt;
 /// **None** &lt;br&gt;&lt;br&gt; **ReadOnly** &lt;br&gt;&lt;br&gt;
 /// **ReadWrite** &lt;br&gt;&lt;br&gt; Default: **None for Standard
 /// storage. ReadOnly for Premium storage**. Possible values include:
 /// 'None', 'ReadOnly', 'ReadWrite'</param>
 /// <param name="writeAcceleratorEnabled">Specifies whether
 /// writeAccelerator should be enabled or disabled on the disk.</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. &lt;br&gt;&lt;br&gt; Possible
 /// values are: &lt;br&gt;&lt;br&gt; **Windows** &lt;br&gt;&lt;br&gt;
 /// **Linux**. Possible values include: 'Windows', 'Linux'</param>
 /// <param name="image">Specifies information about the unmanaged user
 /// image to base the scale set on.</param>
 /// <param name="vhdContainers">Specifies the container urls that are
 /// used to store operating system disks for the scale set.</param>
 /// <param name="managedDisk">The managed disk parameters.</param>
 public VirtualMachineScaleSetOSDisk(string createOption, string name = default(string), CachingTypes?caching = default(CachingTypes?), bool?writeAcceleratorEnabled = default(bool?), OperatingSystemTypes?osType = default(OperatingSystemTypes?), VirtualHardDisk image = default(VirtualHardDisk), IList <string> vhdContainers = default(IList <string>), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters))
 {
     Name    = name;
     Caching = caching;
     WriteAcceleratorEnabled = writeAcceleratorEnabled;
     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.&lt;br&gt;&lt;br&gt; Possible values
 /// are:&lt;br&gt;&lt;br&gt; **Attach**  This value is used when you
 /// are using a specialized disk to create the virtual
 /// machine.&lt;br&gt;&lt;br&gt; **FromImage**  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.
 /// &lt;br&gt;&lt;br&gt; Possible values are: &lt;br&gt;&lt;br&gt;
 /// **None** &lt;br&gt;&lt;br&gt; **ReadOnly** &lt;br&gt;&lt;br&gt;
 /// **ReadWrite** &lt;br&gt;&lt;br&gt; Default: **None for Standard
 /// storage. ReadOnly for Premium storage**. Possible values include:
 /// 'None', 'ReadOnly', 'ReadWrite'</param>
 /// <param name="writeAcceleratorEnabled">Specifies whether
 /// writeAccelerator should be enabled or disabled on the disk.</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. &lt;br&gt;&lt;br&gt; This value
 /// cannot be larger than 1023 GB</param>
 /// <param name="managedDisk">The managed disk parameters.</param>
 public DataDisk(int lun, string createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes?caching = default(CachingTypes?), bool?writeAcceleratorEnabled = default(bool?), int?diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters))
 {
     Lun     = lun;
     Name    = name;
     Vhd     = vhd;
     Image   = image;
     Caching = caching;
     WriteAcceleratorEnabled = writeAcceleratorEnabled;
     CreateOption            = createOption;
     DiskSizeGB  = diskSizeGB;
     ManagedDisk = managedDisk;
     CustomInit();
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of the OSDisk class.
 /// </summary>
 /// <param name="createOption">Specifies how the virtual machine should
 /// be created.&lt;br&gt;&lt;br&gt; Possible values
 /// are:&lt;br&gt;&lt;br&gt; **Attach**  This value is used when you
 /// are using a specialized disk to create the virtual
 /// machine.&lt;br&gt;&lt;br&gt; **FromImage**  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. &lt;br&gt;&lt;br&gt; Possible
 /// values are: &lt;br&gt;&lt;br&gt; **Windows** &lt;br&gt;&lt;br&gt;
 /// **Linux**. Possible values include: 'Windows', 'Linux'</param>
 /// <param name="encryptionSettings">Specifies the encryption settings
 /// for the OS Disk. &lt;br&gt;&lt;br&gt; 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.
 /// &lt;br&gt;&lt;br&gt; Possible values are: &lt;br&gt;&lt;br&gt;
 /// **None** &lt;br&gt;&lt;br&gt; **ReadOnly** &lt;br&gt;&lt;br&gt;
 /// **ReadWrite** &lt;br&gt;&lt;br&gt; Default: **None for Standard
 /// storage. ReadOnly for Premium storage**. Possible values include:
 /// 'None', 'ReadOnly', 'ReadWrite'</param>
 /// <param name="writeAcceleratorEnabled">Specifies whether
 /// writeAccelerator should be enabled or disabled on the disk.</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. &lt;br&gt;&lt;br&gt; This value
 /// cannot be larger than 1023 GB</param>
 /// <param name="managedDisk">The managed disk parameters.</param>
 public OSDisk(string 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?), bool?writeAcceleratorEnabled = default(bool?), int?diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters))
 {
     OsType             = osType;
     EncryptionSettings = encryptionSettings;
     Name    = name;
     Vhd     = vhd;
     Image   = image;
     Caching = caching;
     WriteAcceleratorEnabled = writeAcceleratorEnabled;
     CreateOption            = createOption;
     DiskSizeGB  = diskSizeGB;
     ManagedDisk = managedDisk;
     CustomInit();
 }