| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System.Collections.Generic; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Compute.Models |
| | 11 | | { |
| | 12 | | /// <summary> Describes virtual machine scale set operating system disk Update Object. This should be used for Updat |
| | 13 | | public partial class VirtualMachineScaleSetUpdateOSDisk |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetUpdateOSDisk. </summary> |
| 0 | 16 | | public VirtualMachineScaleSetUpdateOSDisk() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetUpdateOSDisk. </summary> |
| | 21 | | /// <param name="caching"> The caching type. </param> |
| | 22 | | /// <param name="writeAcceleratorEnabled"> Specifies whether writeAccelerator should be enabled or disabled on t |
| | 23 | | /// <param name="diskSizeGB"> Specifies the size of the operating system disk in gigabytes. This element can be |
| | 24 | | /// <param name="image"> The Source User Image VirtualHardDisk. This VirtualHardDisk will be copied before using |
| | 25 | | /// <param name="vhdContainers"> The list of virtual hard disk container uris. </param> |
| | 26 | | /// <param name="managedDisk"> The managed disk parameters. </param> |
| 0 | 27 | | internal VirtualMachineScaleSetUpdateOSDisk(CachingTypes? caching, bool? writeAcceleratorEnabled, int? diskSizeG |
| | 28 | | { |
| 0 | 29 | | Caching = caching; |
| 0 | 30 | | WriteAcceleratorEnabled = writeAcceleratorEnabled; |
| 0 | 31 | | DiskSizeGB = diskSizeGB; |
| 0 | 32 | | Image = image; |
| 0 | 33 | | VhdContainers = vhdContainers; |
| 0 | 34 | | ManagedDisk = managedDisk; |
| 0 | 35 | | } |
| | 36 | |
|
| | 37 | | /// <summary> The caching type. </summary> |
| 0 | 38 | | public CachingTypes? Caching { get; set; } |
| | 39 | | /// <summary> Specifies whether writeAccelerator should be enabled or disabled on the disk. </summary> |
| 0 | 40 | | public bool? WriteAcceleratorEnabled { get; set; } |
| | 41 | | /// <summary> Specifies the size of the operating system disk in gigabytes. This element can be used to overwrit |
| 0 | 42 | | public int? DiskSizeGB { get; set; } |
| | 43 | | /// <summary> The Source User Image VirtualHardDisk. This VirtualHardDisk will be copied before using it to atta |
| 0 | 44 | | public VirtualHardDisk Image { get; set; } |
| | 45 | | /// <summary> The list of virtual hard disk container uris. </summary> |
| 0 | 46 | | public IList<string> VhdContainers { get; set; } |
| | 47 | | /// <summary> The managed disk parameters. </summary> |
| 0 | 48 | | public VirtualMachineScaleSetManagedDiskParameters ManagedDisk { get; set; } |
| | 49 | | } |
| | 50 | | } |