Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: fix command descriptions #17

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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