Skip to content

Commit 6541989

Browse files
committed
change wording from deprecated to retired to be consistent with service changes
1 parent 1ab770e commit 6541989

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/azure-cli/azure/cli/command_modules/storage/_breaking_change.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
# --min-tls-version removing version 1.0 1.1
99
register_other_breaking_change('storage account create',
10-
message='The --min-tls-version argument values TLS1_0 and TLS1_1 have been deprecated on'
11-
' 02/03/2026 and will be removed in the future.')
10+
message='The --min-tls-version argument values TLS1_0 and TLS1_1 have been retired on'
11+
' 2026/02/03 and will be removed on 2026/03/03.')
1212
register_other_breaking_change('storage account update',
13-
message='The --min-tls-version argument values TLS1_0 and TLS1_1 have been deprecated on'
14-
' 02/03/2026 and will be removed in the future.')
13+
message='The --min-tls-version argument values TLS1_0 and TLS1_1 have been retired on'
14+
' 2026/02/03 and will be removed on 2026/03/03.')

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
390390
'public access setting for a container is required to enable anonymous access.')
391391
c.argument('min_tls_version', arg_type=get_enum_type(t_tls_version),
392392
help='The minimum TLS version to be permitted on requests to storage. '
393-
'Values TLS1_0 and TLS1_1 have been deprecated on 02/03/2026 and will be removed in the future.'
393+
' Values TLS1_0 and TLS1_1 have been retired on 2026/02/03 and will be removed on 2026/03/03.'
394394
' 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)
@@ -509,7 +509,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
509509
'public access setting for a container is required to enable anonymous access.')
510510
c.argument('min_tls_version', arg_type=get_enum_type(t_tls_version),
511511
help='The minimum TLS version to be permitted on requests to storage. '
512-
'Values TLS1_0 and TLS1_1 have been deprecated on 02/03/2026 and will be removed in the future.'
512+
' Values TLS1_0 and TLS1_1 have been retired on 2026/02/03 and will be removed on 2026/03/03.'
513513
' 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',

src/azure-cli/azure/cli/command_modules/storage/operations/account.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def create_storage_account(cmd, resource_group_name, account_name, sku=None, loc
262262

263263
if min_tls_version:
264264
if min_tls_version in ['TLS1_0','TLS1_1']:
265-
logger.warning('TLS 1.0 and TLS 1.1 has been deprecated by 02/03/2026, will use TLS 1.2 instead.')
265+
logger.warning('TLS 1.0 and TLS 1.1 have been retired on 2026/02/03, will use TLS 1.2 instead.')
266266
min_tls_version = 'TLS1_2'
267267
params.minimum_tls_version = min_tls_version
268268

@@ -686,7 +686,7 @@ def update_storage_account(cmd, instance, sku=None, tags=None, custom_domain=Non
686686

687687
if min_tls_version:
688688
if min_tls_version in ['TLS1_0','TLS1_1']:
689-
logger.warning('TLS 1.0 and TLS 1.1 has been deprecated by 02/03/2026, will use TLS 1.2 instead.')
689+
logger.warning('TLS 1.0 and TLS 1.1 have been retired on 2026/02/03, will use TLS 1.2 instead.')
690690
min_tls_version = 'TLS1_2'
691691
params.minimum_tls_version = min_tls_version
692692

0 commit comments

Comments
 (0)