Skip to content

Commit

Permalink
feat: fix command descriptions (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
blackchoey authored Apr 22, 2024
1 parent 39e2b0f commit 78092fd
Show file tree
Hide file tree
Showing 20 changed files with 13 additions and 1,045 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
# flake8: noqa

from .__cmd_group import *
from ._check_exists import *
from ._create import *
from ._delete import *
from ._list import *
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"apic api create",
)
class Create(AAZCommand):
"""Register a new API.
"""Register a new API or update an existing API.
:example: Create API
az apic api create -g contoso-resources -s contoso --api-id echo-api --title "Echo API" --type REST
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
# flake8: noqa

from .__cmd_group import *
from ._check_exists import *
from ._create import *
from ._delete import *
from ._export_specification import *
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"apic api definition create",
)
class Create(AAZCommand):
"""Create a new API definition.
"""Create a new API definition or update an existing API definition.
:example: Create API definition
az apic api definition create -g api-center-test -s contosoeuap --api-id echo-api --version-id 2023-01-01 --definition-id "openapi" --title "OpenAPI"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
# flake8: noqa

from .__cmd_group import *
from ._check_exists import *
from ._create import *
from ._delete import *
from ._list import *
Expand Down
Loading

0 comments on commit 78092fd

Please sign in to comment.