Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
c263d18
feat: analysi rule init
frankqianms Dec 24, 2024
c7e7e77
feat: add create cmd
frankqianms Dec 25, 2024
d038b48
feat: add create and delete api-analysis commands
frankqianms Dec 31, 2024
f662b3e
feat: add import-ruleset and export-ruleset commands
frankqianms Jan 2, 2025
777a275
fix: update aaz
frankqianms Jan 3, 2025
0288f07
fix: registered
frankqianms Jan 3, 2025
1401952
fix: examples
frankqianms Jan 3, 2025
302861a
fix: fix style
frankqianms Jan 3, 2025
01e5a1e
refactor: renaming
frankqianms Jan 3, 2025
59324a8
refactor: regenerate aaz
frankqianms Jan 3, 2025
4ee2227
fix: fix codes
frankqianms Jan 3, 2025
5d9a453
fix: fix logics
frankqianms Jan 6, 2025
8f40cf8
fix: style
frankqianms Jan 6, 2025
e668d19
fix: rename parameter service name
frankqianms Jan 6, 2025
f6235b0
fix: change api-analysis status to preview
frankqianms Jan 6, 2025
b32eca6
fix: integration list
frankqianms Jan 6, 2025
a201ec4
refactor: modify examples
frankqianms Jan 6, 2025
5b23975
feat: analysi rule init
frankqianms Dec 24, 2024
44fdbe5
feat: add create cmd
frankqianms Dec 25, 2024
bf64a5e
feat: add create and delete api-analysis commands
frankqianms Dec 31, 2024
002133a
feat: add import-ruleset and export-ruleset commands
frankqianms Jan 2, 2025
3b96f0e
fix: update aaz
frankqianms Jan 3, 2025
c55425b
fix: registered
frankqianms Jan 3, 2025
216d50e
fix: examples
frankqianms Jan 3, 2025
c134062
fix: fix style
frankqianms Jan 3, 2025
84a18b7
refactor: renaming
frankqianms Jan 3, 2025
ad20ac5
refactor: regenerate aaz
frankqianms Jan 3, 2025
d8d35f1
fix: fix codes
frankqianms Jan 3, 2025
5ef5bac
fix: fix logics
frankqianms Jan 6, 2025
92d7fcc
fix: style
frankqianms Jan 6, 2025
33ff206
fix: change api-analysis status to preview
frankqianms Jan 6, 2025
ce075a8
fix: change short name of service name
frankqianms Jan 7, 2025
a9aaac9
fix: apic update example
frankqianms Jan 7, 2025
e216a0e
fix: examples and default value
frankqianms Jan 7, 2025
fba1460
chore: example
frankqianms Jan 7, 2025
01eddd1
Merge branch 'frank/add-analysis-rules' into frank/add-analysis-rule
frankqianms Jan 7, 2025
660ddab
fix: bad parameter short names
frankqianms Jan 7, 2025
7980664
fix: downgrade api version
frankqianms Jan 9, 2025
829e1fe
fix: set default workspace for list,show,update api-analysis
frankqianms Jan 9, 2025
9542e3f
refactor: integration examples
frankqianms Jan 9, 2025
8eb24f5
fix: style
frankqianms Jan 9, 2025
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
Prev Previous commit
Next Next commit
fix: change api-analysis status to preview
  • Loading branch information
frankqianms committed Jan 6, 2025
commit f6235b021650ab7e5509ed2fbe569cb58a713f26
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command_group(
"apic api-analysis",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure API Center service api analysis features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command(
"apic api-analysis create",
is_preview=True,
)
class Create(AAZCommand):
"""Create new or updates existing API analyzer configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command(
"apic api-analysis delete",
is_preview=True,
confirmation="Are you sure you want to perform this operation?",
)
class Delete(AAZCommand):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command(
"apic api-analysis export-ruleset",
is_preview=True,
)
class ExportRuleset(AAZCommand):
"""Exports the API analyzer ruleset.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command(
"apic api-analysis import-ruleset",
is_preview=True,
)
class ImportRuleset(AAZCommand):
"""Imports the API analyzer ruleset.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command(
"apic api-analysis list",
is_preview=True,
)
class List(AAZCommand):
"""List API analyzer configurations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command(
"apic api-analysis show",
is_preview=True,
)
class Show(AAZCommand):
"""Get details of the API analyzer configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

@register_command(
"apic api-analysis update",
is_preview=True,
)
class Update(AAZCommand):
"""Update new or updates existing API analyzer configuration.
Expand Down
Loading