| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.ResourceManager.Compute.Models |
| | 9 | | { |
| | 10 | | /// <summary> Describes an available virtual machine scale set sku. </summary> |
| | 11 | | public partial class VirtualMachineScaleSetSku |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetSku. </summary> |
| 0 | 14 | | internal VirtualMachineScaleSetSku() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetSku. </summary> |
| | 19 | | /// <param name="resourceType"> The type of resource the sku applies to. </param> |
| | 20 | | /// <param name="sku"> The Sku. </param> |
| | 21 | | /// <param name="capacity"> Specifies the number of virtual machines in the scale set. </param> |
| 2156 | 22 | | internal VirtualMachineScaleSetSku(string resourceType, Sku sku, VirtualMachineScaleSetSkuCapacity capacity) |
| | 23 | | { |
| 2156 | 24 | | ResourceType = resourceType; |
| 2156 | 25 | | Sku = sku; |
| 2156 | 26 | | Capacity = capacity; |
| 2156 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The type of resource the sku applies to. </summary> |
| 0 | 30 | | public string ResourceType { get; } |
| | 31 | | /// <summary> The Sku. </summary> |
| 0 | 32 | | public Sku Sku { get; } |
| | 33 | | /// <summary> Specifies the number of virtual machines in the scale set. </summary> |
| 0 | 34 | | public VirtualMachineScaleSetSkuCapacity Capacity { get; } |
| | 35 | | } |
| | 36 | | } |