Get-AzApplicationGatewayClientAuthConfiguration

Ruft die Clientauthentifizierungskonfiguration eines SSL-Profilobjekts ab.

Syntax

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

Beschreibung

Das Cmdlet Get-AzApplicationGatewayClientAuthConfiguration ruft die Clientauthentifizierungskonfiguration eines SSL-Profilobjekts ab.

Beispiele

Beispiel 1

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

Der erste Befehl ruft das Anwendungsgateway01 in der Ressourcengruppe "ResourceGroup01" ab und speichert es in der $AppGw Variablen. Der zweite Befehl ruft das SSL-Profil "SslProfile01" für $AppGw ab und speichert es $SslProfile Variable. Der letzte Befehl ruft die Clientauthentifizierungskonfiguration aus dem SSL-Profil $SslProfile ab und speichert sie in der $ClientAuthConfig Variablen.

Parameter

-DefaultProfile

Anmeldeinformationen, Konto, Mandant und Abonnement für die Kommunikation mit Azure

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

-SslProfile

Das SSL-Profil

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

Eingaben

PSApplicationGatewaySslProfile

Ausgaben

PSApplicationGatewayClientAuthConfiguration