| | | 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.Storage.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> The capability information in the specified SKU, including file encryption, network ACLs, change notif |
| | | 11 | | public partial class SKUCapability |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of SKUCapability. </summary> |
| | 0 | 14 | | internal SKUCapability() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of SKUCapability. </summary> |
| | | 19 | | /// <param name="name"> The name of capability, The capability information in the specified SKU, including file |
| | | 20 | | /// <param name="value"> A string value to indicate states of given capability. Possibly 'true' or &ap |
| | 25548 | 21 | | internal SKUCapability(string name, string value) |
| | | 22 | | { |
| | 25548 | 23 | | Name = name; |
| | 25548 | 24 | | Value = value; |
| | 25548 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> The name of capability, The capability information in the specified SKU, including file encryption |
| | 0 | 28 | | public string Name { get; } |
| | | 29 | | /// <summary> A string value to indicate states of given capability. Possibly 'true' or 'false&ap |
| | 0 | 30 | | public string Value { get; } |
| | | 31 | | } |
| | | 32 | | } |