| | 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 metadata for retrieving price info. </summary> |
| | 11 | | public partial class ResourceSkuCosts |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of ResourceSkuCosts. </summary> |
| 0 | 14 | | internal ResourceSkuCosts() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of ResourceSkuCosts. </summary> |
| | 19 | | /// <param name="meterID"> Used for querying price from commerce. </param> |
| | 20 | | /// <param name="quantity"> The multiplier is needed to extend the base metered cost. </param> |
| | 21 | | /// <param name="extendedUnit"> An invariant to show the extended unit. </param> |
| 0 | 22 | | internal ResourceSkuCosts(string meterID, long? quantity, string extendedUnit) |
| | 23 | | { |
| 0 | 24 | | MeterID = meterID; |
| 0 | 25 | | Quantity = quantity; |
| 0 | 26 | | ExtendedUnit = extendedUnit; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> Used for querying price from commerce. </summary> |
| 0 | 30 | | public string MeterID { get; } |
| | 31 | | /// <summary> The multiplier is needed to extend the base metered cost. </summary> |
| 0 | 32 | | public long? Quantity { get; } |
| | 33 | | /// <summary> An invariant to show the extended unit. </summary> |
| 0 | 34 | | public string ExtendedUnit { get; } |
| | 35 | | } |
| | 36 | | } |