Azure / Azure/azure-powershell
Remove-AzApplicationGatewaySslCertificate documentation should include Set-AzApplicationGateway
- Dominant language
- C#
- Stars
- 4.8k
- Forks
- 4.3k
- Avg merge
- 2d 17h
- Merged PRs (30d)
- 51
Description
## Description of the new feature
Documentation for the command Remove-AzApplicationGatewaySslCertificate doesn't specify that a Set-AzApplicationGateway has to be executed to commit the changes
## Proposed implementation details (optional)
Add a third line on the example 1 to let users know that they have to run the Set-AzApplicationGateway
Example 1: Remove an SSL certificate from an application gateway
PS C:\>$AppGW = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
PS C:\> Remove-AzApplicationGatewaySslCertificate -ApplicationGateway $AppGW -Name "Cert02"
**PS C:\> Set-AzApplicationGateway -ApplicationGateway $AppGW**
Contributor guide
Assessment
This issue has not been assessed yet.