| | 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.Resources.Models |
| | 9 | | { |
| | 10 | | /// <summary> Subscription policies. </summary> |
| | 11 | | public partial class SubscriptionPolicies |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of SubscriptionPolicies. </summary> |
| 0 | 14 | | internal SubscriptionPolicies() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of SubscriptionPolicies. </summary> |
| | 19 | | /// <param name="locationPlacementId"> The subscription location placement ID. The ID indicates which regions ar |
| | 20 | | /// <param name="quotaId"> The subscription quota ID. </param> |
| | 21 | | /// <param name="spendingLimit"> The subscription spending limit. </param> |
| 24 | 22 | | internal SubscriptionPolicies(string locationPlacementId, string quotaId, SpendingLimit? spendingLimit) |
| | 23 | | { |
| 24 | 24 | | LocationPlacementId = locationPlacementId; |
| 24 | 25 | | QuotaId = quotaId; |
| 24 | 26 | | SpendingLimit = spendingLimit; |
| 24 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The subscription location placement ID. The ID indicates which regions are visible for a subscript |
| 8 | 30 | | public string LocationPlacementId { get; } |
| | 31 | | /// <summary> The subscription quota ID. </summary> |
| 8 | 32 | | public string QuotaId { get; } |
| | 33 | | /// <summary> The subscription spending limit. </summary> |
| 0 | 34 | | public SpendingLimit? SpendingLimit { get; } |
| | 35 | | } |
| | 36 | | } |