Skip to content

Commit

Permalink
{sql} Update sample for action parameter (#22982)
Browse files Browse the repository at this point in the history
* {sql} | updated sample for action parameter

Fixes #22729

* {SQL} | Fixing line too long issue

Fixing line too long issue
  • Loading branch information
RakeshMohanMSFT authored Jun 28, 2022
1 parent 0356640 commit 5025de4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/azure-cli/azure/cli/command_modules/sql/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,9 @@ def _configure_security_policy_storage_params(arg_ctx):
c.argument('audit_actions_and_groups',
options_list=['--actions'],
arg_group=policy_arg_group,
help='List of actions and action groups to audit.',
help='List of actions and action groups to audit.'
'These are space seperated values.'
'Example: --actions FAILED_DATABASE_AUTHENTICATION_GROUP BATCH_COMPLETED_GROUP',
nargs='+')

c.argument('retention_days',
Expand Down Expand Up @@ -1568,7 +1570,9 @@ def _configure_security_policy_storage_params(arg_ctx):
c.argument('audit_actions_and_groups',
options_list=['--actions'],
arg_group=policy_arg_group,
help='List of actions and action groups to audit.',
help='List of actions and action groups to audit.'
'These are space seperated values.'
'Example: --actions FAILED_DATABASE_AUTHENTICATION_GROUP BATCH_COMPLETED_GROUP',
nargs='+')

c.argument('retention_days',
Expand Down

0 comments on commit 5025de4

Please sign in to comment.