Skip to content

Commit

Permalink
autogen: rename command group with acat
Browse files Browse the repository at this point in the history
  • Loading branch information
HuiquanJiang-ms committed Jul 9, 2024
1 parent 93c2f13 commit 8c02c50
Show file tree
Hide file tree
Showing 25 changed files with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command_group(
"app-compliance-automation",
"acat",
)
class __CMDGroup(AAZCommandGroup):
""" Manage App Compliance Automation Tool reports.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation onboard",
"acat onboard",
)
class Onboard(AAZCommand):
"""Onboard given subscriptions to Microsoft.AppComplianceAutomation provider.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation trigger-evaluation",
"acat trigger-evaluation",
)
class TriggerEvaluation(AAZCommand):
"""Trigger quick evaluation for the given subscriptions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command_group(
"app-compliance-automation report",
"acat report",
)
class __CMDGroup(AAZCommandGroup):
""" Manage App Compliance Automation Tool reports.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report create",
"acat report create",
)
class Create(AAZCommand):
"""Create a new AppComplianceAutomation report or update an exiting AppComplianceAutomation report.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report delete",
"acat report delete",
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 @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report list",
"acat report list",
)
class List(AAZCommand):
"""List the AppComplianceAutomation report list for the tenant.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report show",
"acat report show",
)
class Show(AAZCommand):
"""Get the AppComplianceAutomation report and its properties.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report update",
"acat report update",
)
class Update(AAZCommand):
"""Update a new AppComplianceAutomation report or update an exiting AppComplianceAutomation report.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report wait",
"acat report wait",
)
class Wait(AAZWaitCommand):
"""Place the CLI in a waiting state until a condition is met.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command_group(
"app-compliance-automation report snapshot",
"acat report snapshot",
)
class __CMDGroup(AAZCommandGroup):
"""manage ACAT report snapshots
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report snapshot download",
"acat report snapshot download",
)
class Download(AAZCommand):
"""Download compliance needs from snapshot, like: Compliance Report, Resource List.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report snapshot list",
"acat report snapshot list",
)
class List(AAZCommand):
"""List the AppComplianceAutomation snapshot list.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report snapshot show",
"acat report snapshot show",
)
class Show(AAZCommand):
"""Get the AppComplianceAutomation snapshot and its properties.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command_group(
"app-compliance-automation report webhook",
"acat report webhook",
)
class __CMDGroup(AAZCommandGroup):
"""manage ACAT report webhooks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report webhook create",
"acat report webhook create",
)
class Create(AAZCommand):
"""Create a new AppComplianceAutomation webhook or update an exiting AppComplianceAutomation webhook.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report webhook delete",
"acat report webhook delete",
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 @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report webhook list",
"acat report webhook list",
)
class List(AAZCommand):
"""List the AppComplianceAutomation webhook list.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report webhook show",
"acat report webhook show",
)
class Show(AAZCommand):
"""Get the AppComplianceAutomation webhook and its properties.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"app-compliance-automation report webhook update",
"acat report webhook update",
)
class Update(AAZCommand):
"""Update an exiting AppComplianceAutomation webhook.
Expand Down
2 changes: 1 addition & 1 deletion src/acat/azext_acat/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.57.0"
"azext.minCliCoreVersion": "2.61.0"
}

0 comments on commit 8c02c50

Please sign in to comment.