New-AzApplicationGatewayAutoscaleConfiguration
Creates a Autoscale Configuration for the Application Gateway.
Note
This is the previous version of our documentation. Please consult the most recent version for up-to-date information.
Syntax
New-AzApplicationGatewayAutoscaleConfiguration
-MinCapacity <Int32>
[-MaxCapacity <Int32>]
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
The New-AzApplicationGatewayAutoscaleConfiguration cmdlet creates Autoscale Configuration for an Azure application gateway.
Examples
Example 1
PS C:\> $autoscaleConfig = New-AzApplicationGatewayAutoscaleConfiguration -MinCapacity 3
PS C:\> $gw = New-AzApplicationGateway -Name $appgwName -ResourceGroupName $rgname .. -AutoscaleConfiguration $autoscaleConfig
The first command creates an autoscale configuration with minimum capacity 3. The second command creates an application gateway with the autoscale configuration.
Example 2
PS C:\> $gw = Get-AzApplicationGateway -Name <Name> -ResourceGroupName <ResourceGroupName>
PS C:\> $gw.Sku.Capacity = $null
PS C:\> $gw.AutoscaleConfiguration = New-AzApplicationGatewayAutoscaleConfiguration -MinCapacity 2 -MaxCapacity 4
PS C:\> $gw = Set-AzApplicationGateway -ApplicationGateway $gw
The first command gets the configuration of the Application Gateway into a variable. The second command clears the SKU Capacity variable to allow the Autoscale Configuration to be set. The third command specifies a new AutoScale Configuration for the Application Gateway. The fourth command applies the new configuration to the Application Gateway.
Parameters
Prompts you for confirmation before running the cmdlet.
| Type: | SwitchParameter |
| Aliases: | cf |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
The credentials, account, tenant, and subscription used for communication with Azure.
| Type: | IAzureContextContainer |
| Aliases: | AzContext, AzureRmContext, AzureCredential |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Maximum capacity units that will always be available [and charged] for application gateway.
| Type: | Nullable<T>[Int32] |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Minimum capacity units that will always be available [and charged] for application gateway.
| Type: | Int32 |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Shows what would happen if the cmdlet runs. The cmdlet is not run.
| Type: | SwitchParameter |
| Aliases: | wi |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Inputs
None
Outputs
PSApplicationGatewayAutoscaleConfiguration