Remove-AzApplicationGatewaySslProfilePolicy

Menghapus kebijakan SSL dari profil SSL gateway aplikasi Azure.

Sintaks

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

Deskripsi

Cmdlet Remove-AzApplicationGatewaySslProfilePolicy menghapus kebijakan SSL dari profil SSL gateway aplikasi Azure.

Contoh

Contoh 1

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

Perintah pertama mendapatkan gateway aplikasi bernama ApplicationGateway01 dalam grup sumber daya bernama ResourceGroup01 dan menyimpannya dalam variabel $AppGw. Perintah kedua mendapatkan profil SSL bernama Profile01 untuk $AppGw dan menyimpannya dalam variabel $profile. Perintah terakhir menghapus kebijakan ssl profil ssl yang disimpan di $profile.

Parameter

-DefaultProfile

Kredensial, akun, penyewa, dan langganan yang digunakan untuk komunikasi dengan Azure.

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

-SslProfile

Profil SSL applicationGateway

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

Input

PSApplicationGatewaySslProfile

Output

PSApplicationGatewaySslProfile