| | | 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.Network.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> Application Gateway autoscale configuration. </summary> |
| | | 11 | | public partial class ApplicationGatewayAutoscaleConfiguration |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of ApplicationGatewayAutoscaleConfiguration. </summary> |
| | | 14 | | /// <param name="minCapacity"> Lower bound on number of Application Gateway capacity. </param> |
| | 0 | 15 | | public ApplicationGatewayAutoscaleConfiguration(int minCapacity) |
| | | 16 | | { |
| | 0 | 17 | | MinCapacity = minCapacity; |
| | 0 | 18 | | } |
| | | 19 | | |
| | | 20 | | /// <summary> Initializes a new instance of ApplicationGatewayAutoscaleConfiguration. </summary> |
| | | 21 | | /// <param name="minCapacity"> Lower bound on number of Application Gateway capacity. </param> |
| | | 22 | | /// <param name="maxCapacity"> Upper bound on number of Application Gateway capacity. </param> |
| | 0 | 23 | | internal ApplicationGatewayAutoscaleConfiguration(int minCapacity, int? maxCapacity) |
| | | 24 | | { |
| | 0 | 25 | | MinCapacity = minCapacity; |
| | 0 | 26 | | MaxCapacity = maxCapacity; |
| | 0 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> Lower bound on number of Application Gateway capacity. </summary> |
| | 0 | 30 | | public int MinCapacity { get; set; } |
| | | 31 | | /// <summary> Upper bound on number of Application Gateway capacity. </summary> |
| | 0 | 32 | | public int? MaxCapacity { get; set; } |
| | | 33 | | } |
| | | 34 | | } |