| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Resources.Models |
| | 11 | | { |
| | 12 | | /// <summary> The policy sku. This property is optional, obsolete, and will be ignored. </summary> |
| | 13 | | public partial class PolicySku |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of PolicySku. </summary> |
| | 16 | | /// <param name="name"> The name of the policy sku. Possible values are A0 and A1. </param> |
| 6 | 17 | | public PolicySku(string name) |
| | 18 | | { |
| 6 | 19 | | if (name == null) |
| | 20 | | { |
| 0 | 21 | | throw new ArgumentNullException(nameof(name)); |
| | 22 | | } |
| | 23 | |
|
| 6 | 24 | | Name = name; |
| 6 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> Initializes a new instance of PolicySku. </summary> |
| | 28 | | /// <param name="name"> The name of the policy sku. Possible values are A0 and A1. </param> |
| | 29 | | /// <param name="tier"> The policy sku tier. Possible values are Free and Standard. </param> |
| 88 | 30 | | internal PolicySku(string name, string tier) |
| | 31 | | { |
| 88 | 32 | | Name = name; |
| 88 | 33 | | Tier = tier; |
| 88 | 34 | | } |
| | 35 | |
|
| | 36 | | /// <summary> The name of the policy sku. Possible values are A0 and A1. </summary> |
| 158 | 37 | | public string Name { get; set; } |
| | 38 | | /// <summary> The policy sku tier. Possible values are Free and Standard. </summary> |
| 190 | 39 | | public string Tier { get; set; } |
| | 40 | | } |
| | 41 | | } |