Skip to content

Commit 1918202

Browse files
committed
Regenerate code so it includes example of each command
1 parent 0baf2c5 commit 1918202

File tree

6 files changed

+18
-0
lines changed

6 files changed

+18
-0
lines changed

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/application_gateway/probe/_delete.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
)
1717
class Delete(AAZCommand):
1818
"""Delete a probe.
19+
20+
:example: Delete a probe.
21+
az network application-gateway probe delete -g MyResourceGroup --gateway-name MyAppGateway -n MyProbe
1922
"""
2023

2124
_aaz_info = {

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/application_gateway/probe/_list.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
)
1717
class List(AAZCommand):
1818
"""List probes.
19+
20+
:example: List probes.
21+
az network application-gateway probe list -g MyResourceGroup --gateway-name MyAppGateway
1922
"""
2023

2124
_aaz_info = {

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/application_gateway/probe/_show.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
)
1717
class Show(AAZCommand):
1818
"""Get the details of a probe.
19+
20+
:example: Get the details of a probe.
21+
az network application-gateway probe show -g MyResourceGroup --gateway-name MyAppGateway -n MyProbe
1922
"""
2023

2124
_aaz_info = {

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/application_gateway/settings/_delete.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
)
1717
class Delete(AAZCommand):
1818
"""Delete settings.
19+
20+
:example: Delete settings.
21+
az network application-gateway settings delete -g MyResourceGroup --gateway-name MyAppGateway -n MyHttpSettings
1922
"""
2023

2124
_aaz_info = {

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/application_gateway/settings/_list.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
)
1717
class List(AAZCommand):
1818
"""List settings.
19+
20+
:example: List settings.
21+
az network application-gateway settings list -g MyResourceGroup --gateway-name MyAppGateway
1922
"""
2023

2124
_aaz_info = {

src/azure-cli/azure/cli/command_modules/network/aaz/latest/network/application_gateway/settings/_show.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
)
1717
class Show(AAZCommand):
1818
"""Get the details of settings.
19+
20+
:example: Get the details of settings.
21+
az network application-gateway settings show -g MyResourceGroup --gateway-name MyAppGateway -n MySettings
1922
"""
2023

2124
_aaz_info = {

0 commit comments

Comments
 (0)