共用方式為


Set-AzApplicationGatewaySslProfilePolicy

修改應用程式閘道 SSL 設定檔的 SSL 原則。

語法

Set-AzApplicationGatewaySslProfilePolicy
   -SslProfile <PSApplicationGatewaySslProfile>
   [-DisabledSslProtocols <String[]>]
   [-PolicyType <String>]
   [-PolicyName <String>]
   [-CipherSuite <String[]>]
   [-MinProtocolVersion <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

Set-AzApplicationGatewaySslProfilePolicy Cmdlet 會修改應用程式閘道 SSL 配置檔的 SSL 原則。

範例

範例 1

$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$profile  = Get-AzApplicationGatewaySslProfile -Name "SslProfile01" -ApplicationGateway $AppGw
$profile = Set-AzApplicationGatewaySslProfilePolicy -SslProfile $profile -PolicyType Predefined -PolicyName AppGwSslPolicy20170401

第一個命令會在名為 ResourceGroup01 的資源群組中取得名為 ApplicationGateway01 的應用程式閘道,並將它儲存在$AppGw變數中。 第二個命令會針對 $AppGw 取得名為 SslProfile01 的 ssl 配置檔,並將設定儲存在 $profile 變數中。 最後一個命令會修改儲存在 $profile的 ssl 配置檔物件的 ssl 原則。

參數

-CipherSuite

要依應用程式閘道指定順序啟用的 Ssl 加密套件

類型:String[]
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DefaultProfile

用於與 Azure 通訊的認證、帳戶、租用戶和訂用帳戶。

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DisabledSslProtocols

要停用的 SSL 通訊協定清單

類型:String[]
接受的值:TLSv1_0, TLSv1_1, TLSv1_2, TLSv1_3
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-MinProtocolVersion

應用程式閘道支援的最低 Ssl 通訊協定版本

類型:String
接受的值:TLSv1_0, TLSv1_1, TLSv1_2, TLSv1_3
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-PolicyName

Ssl 預先定義原則的名稱

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-PolicyType

Ssl 原則的類型

類型:String
接受的值:Predefined, Custom, CustomV2
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-SslProfile

應用程式閘道 SSL 設定檔

類型:PSApplicationGatewaySslProfile
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

輸入

PSApplicationGatewaySslProfile

輸出

PSApplicationGatewaySslProfile