Remove-AzApplicationGatewaySslProfile

Entfernt das SSL-Profil aus einem Anwendungsgateway.

Syntax

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

Beschreibung

Das Cmdlet Remove-AzApplicationGatewaySslProfile entfernt das SSL-Profil aus einem Anwendungsgateway.

Beispiele

Beispiel 1

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

Der erste Befehl ruft ein Anwendungsgateway mit dem Namen ApplicationGateway01 ab, das zur Ressourcengruppe "ResourceGroup01" gehört, und speichert es in der $AppGw Variablen. Mit dem zweiten Befehl wird das ssl-Profil "SslProfile01" aus dem anwendungsgateway entfernt, das in $AppGw gespeichert ist. Der letzte Befehl aktualisiert das Anwendungsgateway.

Parameter

-ApplicationGateway

ApplicationGateway

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

-DefaultProfile

Anmeldeinformationen, Konto, Mandant und Abonnement für die Kommunikation mit Azure

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

-Name

Der Name des SSL-Profils

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

Eingaben

PSApplicationGateway

Ausgaben

PSApplicationGateway