Get-AzApplicationGatewaySslProfile

Ruft das SSL-Profil eines Anwendungsgateways ab.

Syntax

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

Beschreibung

Das Cmdlet Get-AzApplicationGatewaySslProfile ruft das SSL-Profil eines Anwendungsgateways ab.

Beispiele

Beispiel 1

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

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 in der variablen $profile.

Parameter

-ApplicationGateway

ApplicationGateway

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

-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

-Name

Der Name des SSL-Profils

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

Eingaben

PSApplicationGateway

Ausgaben

PSApplicationGatewaySslProfile