| | 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 scaling information of a sku. </summary> |
| | 11 | | public partial class VirtualMachineScaleSetSkuCapacity |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetSkuCapacity. </summary> |
| 0 | 14 | | internal VirtualMachineScaleSetSkuCapacity() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of VirtualMachineScaleSetSkuCapacity. </summary> |
| | 19 | | /// <param name="minimum"> The minimum capacity. </param> |
| | 20 | | /// <param name="maximum"> The maximum capacity that can be set. </param> |
| | 21 | | /// <param name="defaultCapacity"> The default capacity. </param> |
| | 22 | | /// <param name="scaleType"> The scale type applicable to the sku. </param> |
| 2156 | 23 | | internal VirtualMachineScaleSetSkuCapacity(long? minimum, long? maximum, long? defaultCapacity, VirtualMachineSc |
| | 24 | | { |
| 2156 | 25 | | Minimum = minimum; |
| 2156 | 26 | | Maximum = maximum; |
| 2156 | 27 | | DefaultCapacity = defaultCapacity; |
| 2156 | 28 | | ScaleType = scaleType; |
| 2156 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> The minimum capacity. </summary> |
| 0 | 32 | | public long? Minimum { get; } |
| | 33 | | /// <summary> The maximum capacity that can be set. </summary> |
| 0 | 34 | | public long? Maximum { get; } |
| | 35 | | /// <summary> The default capacity. </summary> |
| 0 | 36 | | public long? DefaultCapacity { get; } |
| | 37 | | /// <summary> The scale type applicable to the sku. </summary> |
| 0 | 38 | | public VirtualMachineScaleSetSkuScaleType? ScaleType { get; } |
| | 39 | | } |
| | 40 | | } |