| | | 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 The SKU capabilities object. </summary> |
| | | 11 | | public partial class ResourceSkuCapabilities |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of ResourceSkuCapabilities. </summary> |
| | 0 | 14 | | internal ResourceSkuCapabilities() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of ResourceSkuCapabilities. </summary> |
| | | 19 | | /// <param name="name"> An invariant to describe the feature. </param> |
| | | 20 | | /// <param name="value"> An invariant if the feature is measured by quantity. </param> |
| | 752328 | 21 | | internal ResourceSkuCapabilities(string name, string value) |
| | | 22 | | { |
| | 752328 | 23 | | Name = name; |
| | 752328 | 24 | | Value = value; |
| | 752328 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> An invariant to describe the feature. </summary> |
| | 4 | 28 | | public string Name { get; } |
| | | 29 | | /// <summary> An invariant if the feature is measured by quantity. </summary> |
| | 4 | 30 | | public string Value { get; } |
| | | 31 | | } |
| | | 32 | | } |