Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ class ApplicationGateway extends models['Resource'] {
* @property {object} [autoscaleConfiguration] Autoscale Configuration.
* @property {number} [autoscaleConfiguration.minCapacity] Lower bound on
* number of Application Gateway instances
* @property {number} [autoscaleConfiguration.maxCapacity] Upper bound on
* number of Application Gateway capacity
* @property {string} [resourceGuid] Resource GUID property of the
* application gateway resource.
* @property {string} [provisioningState] Provisioning state of the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class ApplicationGatewayAutoscaleConfiguration {
* Create a ApplicationGatewayAutoscaleConfiguration.
* @property {number} minCapacity Lower bound on number of Application
* Gateway instances
* @property {number} [maxCapacity] Upper bound on number of Application
* Gateway capacity
*/
constructor() {
}
Expand Down Expand Up @@ -46,6 +48,16 @@ class ApplicationGatewayAutoscaleConfiguration {
type: {
name: 'Number'
}
},
maxCapacity: {
required: false,
serializedName: 'maxCapacity',
constraints: {
InclusiveMinimum: 2
},
type: {
name: 'Number'
}
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions lib/services/networkManagement2/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2035,6 +2035,10 @@ export interface ApplicationGatewayAutoscaleConfiguration {
* Lower bound on number of Application Gateway instances
*/
minCapacity: number;
/**
* Upper bound on number of Application Gateway capacity
*/
maxCapacity?: number;
}

export interface ManagedServiceIdentityUserAssignedIdentitiesValue {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,9 @@ function _get(resourceGroupName, applicationGatewayName, options, callback) {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down Expand Up @@ -2225,6 +2228,9 @@ function _beginDeleteMethod(resourceGroupName, applicationGatewayName, options,
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down Expand Up @@ -3729,6 +3735,9 @@ class ApplicationGateways {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down Expand Up @@ -3927,6 +3936,9 @@ class ApplicationGateways {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down Expand Up @@ -5317,6 +5329,9 @@ class ApplicationGateways {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down Expand Up @@ -5515,6 +5530,9 @@ class ApplicationGateways {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down
12 changes: 12 additions & 0 deletions lib/services/networkManagement2/lib/operations/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,9 @@ export interface ApplicationGateways {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down Expand Up @@ -460,6 +463,9 @@ export interface ApplicationGateways {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down Expand Up @@ -1457,6 +1463,9 @@ export interface ApplicationGateways {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down Expand Up @@ -1643,6 +1652,9 @@ export interface ApplicationGateways {
* @param {number} parameters.autoscaleConfiguration.minCapacity Lower bound on
* number of Application Gateway instances
*
* @param {number} [parameters.autoscaleConfiguration.maxCapacity] Upper bound
* on number of Application Gateway capacity
*
* @param {string} [parameters.resourceGuid] Resource GUID property of the
* application gateway resource.
*
Expand Down