Skip to content

Commit

Permalink
add examples
Browse files Browse the repository at this point in the history
  • Loading branch information
necusjz committed Jul 20, 2022
1 parent 829925c commit fb1be6f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
is_preview=True,
)
class Create(AAZCommand):
"""Create a Azure security partner provider.
"""Create an Azure security partner provider.
:example: Create a security partner provider.
az network security-partner-provider create -n MyProvider -g MyResourceGroup --vhub MyVirtualHub --provider Checkpoint
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
is_preview=True,
)
class Delete(AAZCommand):
"""Delete a Azure security partner provider.
"""Delete an Azure security partner provider.
:example: Delete a security partner provider.
az network security-partner-provider delete -n MyProvider -g MyResourceGroup
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
is_preview=True,
)
class List(AAZCommand):
"""List all Azure security partner provider.
"""List all Azure security partner providers.
:example: List all security partner providers in a resource group.
az network security-partner-provider list -g MyResourceGroup
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
is_preview=True,
)
class Show(AAZCommand):
"""Show a Azure security partner provider.
"""Show an Azure security partner provider.
:example: Get details of a security partner provider.
az network security-partner-provider show -n MyProvider -g MyResourceGroup
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
is_preview=True,
)
class Update(AAZCommand):
"""Update a Azure security partner provider.
"""Update an Azure security partner provider.
:example: Update a security partner provider.
az network security-partner-provider update -n MyProvider -g MyResourceGroup --tags a=b
"""

_aaz_info = {
Expand Down

0 comments on commit fb1be6f

Please sign in to comment.