Remove-AzApplicationGatewaySslProfilePolicy

Entfernt eine SSL-Richtlinie aus einem SSL-Profil des Azure-Anwendungsgateways.

Syntax

Remove-AzApplicationGatewaySslProfilePolicy
      -SslProfile <PSApplicationGatewaySslProfile>
      [-DefaultProfile <IAzureContextContainer>]
      [<CommonParameters>]

Beschreibung

Das Cmdlet Remove-AzApplicationGatewaySslProfilePolicy entfernt eine SSL-Richtlinie aus einem SSL-Profil eines Azure-Anwendungsgateways.

Beispiele

Beispiel 1

$AppGW = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$profile  = Get-AzApplicationGatewaySslProfile -Name "Profile01" -ApplicationGateway $AppGw
$profile = Remove-AzApplicationGatewaySslProfilePolicy -SslProfile $profile

Der erste Befehl ruft das Anwendungsgateway01 in der Ressourcengruppe "ResourceGroup01" ab und speichert es in der $AppGw Variablen. Der zweite Befehl ruft das SSL-Profil "Profile01" für $AppGw ab und speichert es in der variablen $profile. Mit dem letzten Befehl wird die SSL-Richtlinie des in $profile gespeicherten SSL-Profils entfernt.

Parameter

-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

-SslProfile

Das applicationGateway SSL-Profil

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

Eingaben

PSApplicationGatewaySslProfile

Ausgaben

PSApplicationGatewaySslProfile