| | 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 a virtual machine scale set storage profile. </summary> |
| | 13 | | public partial class VirtualMachineScaleSetUpdateStorageProfile |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetUpdateStorageProfile. </summary> |
| 0 | 16 | | public VirtualMachineScaleSetUpdateStorageProfile() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetUpdateStorageProfile. </summary> |
| | 21 | | /// <param name="imageReference"> The image reference. </param> |
| | 22 | | /// <param name="osDisk"> The OS disk. </param> |
| | 23 | | /// <param name="dataDisks"> The data disks. </param> |
| 0 | 24 | | internal VirtualMachineScaleSetUpdateStorageProfile(ImageReference imageReference, VirtualMachineScaleSetUpdateO |
| | 25 | | { |
| 0 | 26 | | ImageReference = imageReference; |
| 0 | 27 | | OsDisk = osDisk; |
| 0 | 28 | | DataDisks = dataDisks; |
| 0 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> The image reference. </summary> |
| 0 | 32 | | public ImageReference ImageReference { get; set; } |
| | 33 | | /// <summary> The OS disk. </summary> |
| 0 | 34 | | public VirtualMachineScaleSetUpdateOSDisk OsDisk { get; set; } |
| | 35 | | /// <summary> The data disks. </summary> |
| 0 | 36 | | public IList<VirtualMachineScaleSetDataDisk> DataDisks { get; set; } |
| | 37 | | } |
| | 38 | | } |