Remove-AzApplicationGatewaySslProfile

アプリケーション ゲートウェイから ssl プロファイルを削除します。

構文

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

説明

Remove-AzApplicationGatewaySslProfile コマンドレットは、アプリケーション ゲートウェイから ssl プロファイルを削除します。

例 1

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

最初のコマンドは、ResourceGroup01 という名前のリソース グループに属する ApplicationGateway01 という名前のアプリケーション ゲートウェイを取得し、$AppGw変数に格納します。 2 番目のコマンドは、$AppGwに格納されているアプリケーション ゲートウェイから SslProfile01 という名前の ssl プロファイルを削除します。 最後のコマンドは、アプリケーション ゲートウェイを更新します。

パラメーター

-ApplicationGateway

applicationGateway

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

-DefaultProfile

Azure との通信のために使用される資格情報、アカウント、テナント、サブスクリプションです。

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

-Name

SSL プロファイルの名前

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

入力

PSApplicationGateway

出力

PSApplicationGateway