You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/azure-cli/azure/cli/command_modules/role/_params.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -340,9 +340,9 @@ def load_arguments(self, _):
340
340
"the logged-in account has no permission or the machine has no network access to query "
341
341
"Microsoft Graph.")
342
342
c.argument('ids', nargs='+', help='space-separated role assignment ids')
343
-
c.argument('description', is_preview=True, min_api='2020-04-01-preview', help='Description of role assignment.')
344
-
c.argument('condition', is_preview=True, min_api='2020-04-01-preview', help='Condition under which the user can be granted permission.')
345
-
c.argument('condition_version', is_preview=True, min_api='2020-04-01-preview', help='Version of the condition syntax. If --condition is specified without --condition-version, default to 2.0.')
343
+
c.argument('description', is_preview=True, help='Description of role assignment.')
344
+
c.argument('condition', is_preview=True, help='Condition under which the user can be granted permission.')
345
+
c.argument('condition_version', is_preview=True, help='Version of the condition syntax. If --condition is specified without --condition-version, default to 2.0.')
346
346
c.argument('assignment_name', name_arg_type,
347
347
help='A GUID for the role assignment. It must be unique and different for each role assignment. If omitted, a new GUID is generated.')
348
348
@@ -379,7 +379,7 @@ class PrincipalType(str, Enum):
0 commit comments