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 des 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
Die Anmeldeinformationen, Konten, Mandanten und Abonnements, die für die Kommunikation mit Azure verwendet werden.
Typ: | IAzureContextContainer |
Aliase: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-SslProfile
Das applicationGateway SSL-Profil
Typ: | PSApplicationGatewaySslProfile |
Position: | Named |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | True |
Platzhalterzeichen akzeptieren: | False |
Eingaben
PSApplicationGatewaySslProfile
Ausgaben
PSApplicationGatewaySslProfile
Ähnliche Themen
Azure PowerShell