Skip to content

Commit 0da5df1

Browse files
jeskewzhoxing-ms
andauthored
Remove redundant required=False
Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com>
1 parent 89502eb commit 0da5df1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/azure-cli/azure/cli/command_modules/resource

src/azure-cli/azure/cli/command_modules/resource/_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def load_arguments(self, _):
5858
deployment_template_spec_type = CLIArgumentType(options_list=['--template-spec', '-s'], min_api='2019-06-01', help="The template spec resource id.")
5959
deployment_query_string_type = CLIArgumentType(options_list=['--query-string', '-q'], help="The query string (a SAS token) to be used with the template-uri in the case of linked templates.")
6060
deployment_parameters_type = CLIArgumentType(options_list=['--parameters', '-p'], action='append', nargs='+', completer=FilesCompleter(), help='the deployment parameters')
61-
deployment_validation_level_type = CLIArgumentType(options_list=['--validation-level'], required=False, arg_type=get_enum_type(ValidationLevel, None),
61+
deployment_validation_level_type = CLIArgumentType(options_list=['--validation-level'], arg_type=get_enum_type(ValidationLevel, None),
6262
help='The deployment validation level. May be set to "Provider" (the default), "Template", or '
6363
'"ProviderNoRbac". With a validation level of "provider", ARM will perform full validation and check that'
6464
' you have sufficient permission to deploy all resources in the template. With a validation level of '

0 commit comments

Comments
 (0)