New-AzApplicationGatewayAutoscaleConfiguration
Skapar en autoskalningskonfiguration för Application Gateway.
Syntax
New-AzApplicationGatewayAutoscaleConfiguration
-MinCapacity <Int32>
[-MaxCapacity <Int32>]
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Cmdleten New-AzApplicationGatewayAutoscaleConfiguration skapar autoskalningskonfiguration för en Azure-programgateway.
Exempel
Exempel 1
$AutoscaleConfig = New-AzApplicationGatewayAutoscaleConfiguration -MinCapacity 3
$Gateway = New-AzApplicationGateway -Name "AppGateway01" -ResourceGroupName "ResourceGroup01" -Location "West US" -BackendAddressPools $Pool -BackendHttpSettingsCollection $PoolSetting -FrontendIpConfigurations $FrontEndIpConfig -GatewayIpConfigurations $GatewayIpConfig -FrontendPorts $FrontEndPort -HttpListeners $Listener -RequestRoutingRules $Rule -Sku $Sku -AutoscaleConfiguration $AutoscaleConfig
Det första kommandot skapar en autoskalningskonfiguration med minsta kapacitet 3. Det andra kommandot skapar en programgateway med autoskalningskonfigurationen.
Exempel 2
$gw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$gw.Sku.Capacity = $null
$gw.AutoscaleConfiguration = New-AzApplicationGatewayAutoscaleConfiguration -MinCapacity 2 -MaxCapacity 4
$gw = Set-AzApplicationGateway -ApplicationGateway $gw
Det första kommandot hämtar konfigurationen av Application Gateway till en variabel. Det andra kommandot rensar SKU-kapacitetsvariabeln så att autoskalningskonfigurationen kan anges. Det tredje kommandot anger en ny autoskalningskonfiguration för Application Gateway. Det fjärde kommandot tillämpar den nya konfigurationen på Application Gateway.
Parametrar
-Confirm
Uppmanar dig att bekräfta innan du kör cmdleten.
Typ: | SwitchParameter |
Alias: | cf |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-DefaultProfile
Autentiseringsuppgifter, konto, klientorganisation och prenumeration som används för kommunikation med Azure.
Typ: | IAzureContextContainer |
Alias: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-MaxCapacity
Maximalt antal kapacitetsenheter som alltid är tillgängliga [och debiteras] för programgatewayen.
Typ: | Nullable<T>[Int32] |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-MinCapacity
Minsta kapacitetsenheter som alltid är tillgängliga [och debiteras] för programgatewayen.
Typ: | Int32 |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | True |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-WhatIf
Visar vad som skulle hända om cmdleten körs. Cmdleten körs inte.
Typ: | SwitchParameter |
Alias: | wi |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
Indata
None
Utdata
PSApplicationGatewayAutoscaleConfiguration
Relaterade länkar
Azure PowerShell