Skip to content

Commit eda790d

Browse files
authored
Update Get-AzApplicationGatewayAuthenticationCertificate.md (#13972)
the command is not align with the description of Get-AzApplicationGatewayAuthenticationCertificate
1 parent d1f2aab commit eda790d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Network/Network/help/Get-AzApplicationGatewayAuthenticationCertificate.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ The **Get-AzApplicationGatewayAuthenticationCertificate** cmdlet gets an authent
2626
### Example 1: Get a specified authentication certificate
2727
```
2828
PS C:\> $appgw = Get-AzApplicationGateway -ResourceGroupName "rg" -Name "appGwName"
29-
PS C:\> $pool = Get-AzApplicationGatewayBackendAddressPool -Name "pool01" -ApplicationGateway $appgw
29+
PS C:\> $cert = Get-AzApplicationGatewayAuthenticationCertificate -Name "cert01" -ApplicationGateway $appgw
3030
```
3131

3232
The first command gets the application gateway named appGwName and stores it in the $appgw variable.
33-
The second command gets the authentication certificate named pool01 and stores it in the $pool variable.
33+
The second command gets the authentication certificate named cert01 and stores it in the $cert variable.
3434

3535
## PARAMETERS
3636

0 commit comments

Comments
 (0)