File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
src/Storage/Storage.Management Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 18
18
- Additional information about change #1
19
19
-->
20
20
## Upcoming Release
21
+ * Supported TLS1_3 when creating and updating a storage account
22
+ - ` New-AzStorageAccount `
23
+ - ` Set-AzStorageAccount `
21
24
* Fixed sync copy blob issue with -AsJob is specified [ #25105 ]
22
25
- ` Copy-AzStorageBlob `
23
26
* Updated Storage.Management.Sdk to support API version 2023-05-01
Original file line number Diff line number Diff line change @@ -496,6 +496,7 @@ public bool AllowBlobPublicAccess
496
496
[ ValidateSet ( StorageModels . MinimumTlsVersion . TLS10 ,
497
497
StorageModels . MinimumTlsVersion . TLS11 ,
498
498
StorageModels . MinimumTlsVersion . TLS12 ,
499
+ StorageModels . MinimumTlsVersion . TLS13 ,
499
500
IgnoreCase = true ) ]
500
501
public string MinimumTlsVersion
501
502
{
Original file line number Diff line number Diff line change @@ -415,6 +415,7 @@ public bool AllowBlobPublicAccess
415
415
[ ValidateSet ( StorageModels . MinimumTlsVersion . TLS10 ,
416
416
StorageModels . MinimumTlsVersion . TLS11 ,
417
417
StorageModels . MinimumTlsVersion . TLS12 ,
418
+ StorageModels . MinimumTlsVersion . TLS13 ,
418
419
IgnoreCase = true ) ]
419
420
public string MinimumTlsVersion
420
421
{
You can’t perform that action at this time.
0 commit comments