@@ -388,10 +388,10 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
388388 'be configured for public access. Note that setting this property to true does '
389389 'not enable anonymous access to any data in the account. The additional step of configuring the '
390390 'public access setting for a container is required to enable anonymous access.' )
391- c .argument ('min_tls_version' , arg_type = get_enum_type (t_tls_version ),
391+ c .argument ('min_tls_version' , arg_type = get_enum_type ([ 'TLS1_2' , 'TLS1_3' ] ),
392392 help = 'The minimum TLS version to be permitted on requests to storage. '
393- ' Values TLS1_0 and TLS1_1 have been retired on 2026/02/03 and will be removed on 2026/03 /03.'
394- ' Microsoft recommends setting MinimumTlsVersion to TLS1_2' )
393+ 'Values TLS1_0 and TLS1_1 have been retired on 2026/02/03.'
394+ 'Microsoft recommends setting MinimumTlsVersion to TLS1_2' )
395395 c .argument ('allow_shared_key_access' , allow_shared_key_access_type )
396396 c .argument ('edge_zone' , edge_zone_type )
397397 c .argument ('identity_type' , arg_type = get_enum_type (t_identity_type ), arg_group = 'Identity' ,
@@ -507,10 +507,10 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
507507 'in the account may be configured for public access. Note that setting this property to true does '
508508 'not enable anonymous access to any data in the account. The additional step of configuring the '
509509 'public access setting for a container is required to enable anonymous access.' )
510- c .argument ('min_tls_version' , arg_type = get_enum_type (t_tls_version ),
510+ c .argument ('min_tls_version' , arg_type = get_enum_type ([ 'TLS1_2' , 'TLS1_3' ] ),
511511 help = 'The minimum TLS version to be permitted on requests to storage. '
512- ' Values TLS1_0 and TLS1_1 have been retired on 2026/02/03 and will be removed on 2026/03/03. '
513- ' Microsoft recommends setting MinimumTlsVersion to TLS1_2' )
512+ 'Values TLS1_0 and TLS1_1 have been retired on 2026/02/03. '
513+ 'Microsoft recommends setting MinimumTlsVersion to TLS1_2' )
514514 c .argument ('allow_shared_key_access' , allow_shared_key_access_type )
515515 c .argument ('identity_type' , arg_type = get_enum_type (t_identity_type ), arg_group = 'Identity' ,
516516 help = 'The identity type.' )
0 commit comments