Get-AzApplicationGatewayClientAuthConfiguration

SSL プロファイル オブジェクトのクライアント認証構成を取得します。

構文

Get-AzApplicationGatewayClientAuthConfiguration
   -SslProfile <PSApplicationGatewaySslProfile>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

説明

Get-AzApplicationGatewayClientAuthConfiguration コマンドレットは、SSL プロファイル オブジェクトのクライアント認証構成を取得します。

例 1

$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$SslProfile  = Get-AzApplicationGatewaySslProfile -Name "SslProfile01" -ApplicationGateway $AppGw
$ClientAuthConfig = Get-AzApplicationGatewayClientAuthConfiguration -SslProfile $SslProfile

最初のコマンドは、ResourceGroup01 という名前のリソース グループ内の ApplicationGateway01 という名前のアプリケーション ゲートウェイを取得し、$AppGw変数に格納します。 2 番目のコマンドは、$AppGwの SslProfile01 という名前の SSL プロファイルを取得し、それを変数$SslProfile格納します。 最後のコマンドは、SSL プロファイル $SslProfileからクライアント認証構成を取得し、$ClientAuthConfig変数に格納します。

パラメーター

-DefaultProfile

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

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

-SslProfile

ssl プロファイル

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

入力

PSApplicationGatewaySslProfile

出力

PSApplicationGatewayClientAuthConfiguration