Remove-AzApplicationGatewaySslProfile

Tar bort SSL-profilen från en programgateway.

Syntax

Remove-AzApplicationGatewaySslProfile
      -Name <String>
      -ApplicationGateway <PSApplicationGateway>
      [-DefaultProfile <IAzureContextContainer>]
      [<CommonParameters>]

Description

Cmdleten Remove-AzApplicationGatewaySslProfile tar bort ssl-profilen från en programgateway.

Exempel

Exempel 1

$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
Remove-AzApplicationGatewaySslProfile -ApplicationGateway $AppGw -Name "SslProfile01"
Set-AzApplicationGateway -ApplicationGateway $AppGw

Det första kommandot hämtar en programgateway med namnet ApplicationGateway01 som tillhör resursgruppen ResourceGroup01 och lagrar den i variabeln $AppGw. Det andra kommandot tar bort SSL-profilen med namnet SslProfile01 från programgatewayen som lagras i $AppGw. Det senaste kommandot uppdaterar programgatewayen.

Parametrar

-ApplicationGateway

ApplicationGateway

Type:PSApplicationGateway
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-DefaultProfile

Autentiseringsuppgifter, konto, klientorganisation och prenumeration som används för kommunikation med Azure.

Type:IAzureContextContainer
Aliases:AzContext, AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Name

Namnet på ssl-profilen

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

Indata

PSApplicationGateway

Utdata

PSApplicationGateway