Get-AzApplicationGatewayAuthenticationCertificate
Gets an authentication certificate for an application gateway.
Note
This is the previous version of our documentation. Please consult the most recent version for up-to-date information.
Syntax
Get-AzApplicationGatewayAuthenticationCertificate
[-Name <String>]
-ApplicationGateway <PSApplicationGateway>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzApplicationGatewayAuthenticationCertificate cmdlet gets an authentication certificate for an Azure application gateway.
Examples
Example 1: Get a specified authentication certificate
PS C:\> $appgw = Get-AzApplicationGateway -ResourceGroupName "rg" -Name "appGwName"
PS C:\> $cert = Get-AzApplicationGatewayAuthenticationCertificate -Name "cert01" -ApplicationGateway $appgw
The first command gets the application gateway named appGwName and stores it in the $appgw variable. The second command gets the authentication certificate named cert01 and stores it in the $cert variable.
Parameters
Specifies the name of application gateway for which this cmdlet gets an authentication certificate.
| Type: | PSApplicationGateway |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
The credentials, account, tenant, and subscription used for communication with azure.
| Type: | IAzureContextContainer |
| Aliases: | AzContext, AzureRmContext, AzureCredential |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Specifies the name of the authentication certificate that this cmdlet gets.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Inputs
Outputs
PSApplicationGatewayAuthenticationCertificate
Notes
- Keywords: azure, azurerm, arm, resource, management, manager, network, networking