Remove-AzApplicationGatewaySslCertificate
從 Azure 應用程式閘道移除 SSL 憑證。
語法
Remove-AzApplicationGatewaySslCertificate
-Name <String>
-ApplicationGateway <PSApplicationGateway>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
Remove-AzApplicationGatewaySslCertificate Cmdlet 會從 Azure 應用程式閘道移除安全套接字層 (SSL) 憑證。
範例
範例 1:從應用程式閘道移除 SSL 憑證
$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
Remove-AzApplicationGatewaySslCertificate -ApplicationGateway $AppGw -Name "Cert02"
Set-AzApplicationGateway -ApplicationGateway $AppGw
第一個命令會取得名為ApplicationGateway01的應用程式閘道,並將結果儲存在名為 $AppGw的變數中。 第二個命令會從儲存在 $AppGw 變數的應用程式閘道中移除名為 Cert02 的 SSL 憑證。 最後一個命令 「Set-AzApplicationGateway」 會將應用程式閘道組態變更更新為保留應用程式閘道目前組態的 $AppGw 變數。
參數
-ApplicationGateway
指定此 Cmdlet 從中移除 SSL 憑證的應用程式閘道。
類型: | PSApplicationGateway |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-DefaultProfile
用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶。
類型: | IAzureContextContainer |
別名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Name
指定此 Cmdlet 移除的 SSL 憑證名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |