Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2f66a2e
feat: add APIM/APIC sync commands
blackchoey Nov 15, 2024
bdb89ab
feat: rename apim to azure-api-management
blackchoey Nov 20, 2024
e39fe60
style: fix code style
blackchoey Nov 20, 2024
04da67e
fix: sync property names with new API spec
frankqianms Nov 27, 2024
f4e7c5d
feat: add aws api gateway sync command
frankqianms Nov 29, 2024
ea315c9
Revert "fix: sync property names with new API spec"
frankqianms Nov 29, 2024
d611ae2
refactor: add amazonApiGatewaySource
frankqianms Dec 2, 2024
63d197f
refactor: refactoring apim sync and amazon sync
frankqianms Dec 2, 2024
4769b7c
refactor: refactor cmd structure to make apim and aws sync seperated
frankqianms Dec 2, 2024
a4aa8a4
Merge branch 'chyuan/apim-sync' into frank/aws-api-gateway-sync
frankqianms Dec 2, 2024
12e2bc3
fix: remove log print
frankqianms Dec 2, 2024
c5ee55b
Merge branch 'frank/aws-api-gateway-sync' of https://github.com/black…
frankqianms Dec 2, 2024
0ce1257
Merge branch 'dev' into frank/aws-api-gateway-sync
frankqianms Dec 4, 2024
aa5293e
chore: generate new cmds
frankqianms Dec 4, 2024
6c77635
refactor: update version and remove import
frankqianms Dec 4, 2024
afefbd2
feat: add `apic integration create amazon-api-gateway`
frankqianms Dec 4, 2024
f417dd0
fix: style
frankqianms Dec 4, 2024
d7fbfcf
fix: change query param api-version
frankqianms Dec 4, 2024
2275ddd
revert changes in _delete.py
frankqianms Dec 4, 2024
63ae5c2
fix: some neede fixs
frankqianms Dec 4, 2024
3a72a15
Merge branch 'frank/aws-api-gateway-sync' of https://github.com/black…
frankqianms Dec 4, 2024
f72581d
fix: add the help sentence
frankqianms Dec 4, 2024
f9624db
refactor: make params clear
frankqianms Dec 4, 2024
9dfb775
refactor: handle msi-resource-id
frankqianms Dec 5, 2024
d82b539
refacor: revert flatten of apim resource
frankqianms Dec 5, 2024
cba184c
fix: use 06-01-preiew currently
frankqianms Dec 5, 2024
bb09aa8
fix: style
frankqianms Dec 5, 2024
50bc396
refactor: arg groups
frankqianms Dec 5, 2024
ec66b8e
fix: bad short param name
frankqianms Dec 5, 2024
933ce2a
chore: re-generate
frankqianms Dec 5, 2024
05c6b18
fix: old resource_id name
frankqianms Dec 5, 2024
ee359d6
chore: arg group
frankqianms Dec 5, 2024
03833f4
chore: naming
frankqianms Dec 5, 2024
9e4e847
fix: fix according to comments
frankqianms Dec 5, 2024
68242d3
chore: update
frankqianms Dec 5, 2024
0b89f22
fix: style
frankqianms Dec 5, 2024
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 @@ -21,9 +21,9 @@ class Delete(AAZCommand):
"""

_aaz_info = {
"version": "2024-12-01-preview",
"version": "2024-06-01-preview",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.apicenter/services/{}/workspaces/{}/apisources/{}", "2024-12-01-preview"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.apicenter/services/{}/workspaces/{}/apisources/{}", "2024-06-01-preview"],
]
}

Expand Down Expand Up @@ -55,6 +55,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
),
)
_args_schema.resource_group = AAZResourceGroupNameArg(
help="Name of Azure API Center resource group. You can configure the default group using `az configure --defaults group=<name>`.",
required=True,
)
_args_schema.service_name = AAZStrArg(
Expand Down
Loading