Skip to content

Commit ba668dd

Browse files
Add new value to AllowedCopyScope Enum - manusrao
1 parent 3cfca30 commit ba668dd

2 files changed

Lines changed: 17 additions & 8 deletions

File tree

  • specification/storage

specification/storage/Storage.Management/models.tsp

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,10 @@ union AllowedCopyScope {
351351
PrivateLink: "PrivateLink",
352352
#suppress "@azure-tools/typespec-azure-core/documentation-required" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details"
353353
AAD: "AAD",
354+
355+
#suppress "@azure-tools/typespec-azure-core/documentation-required" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details"
356+
@added(Versions.v2025_08_01)
357+
All: "All",
354358
}
355359

356360
/**
@@ -499,15 +503,15 @@ union RoutingChoice {
499503
*/
500504
union MinimumTlsVersion {
501505
string,
502-
506+
503507
#suppress "@azure-tools/typespec-azure-core/documentation-required" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details"
504508
@removed(Versions.v2025_08_01)
505509
TLS1_0: "TLS1_0",
506-
510+
507511
#suppress "@azure-tools/typespec-azure-core/documentation-required" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details"
508512
@removed(Versions.v2025_08_01)
509513
TLS1_1: "TLS1_1",
510-
514+
511515
#suppress "@azure-tools/typespec-azure-core/documentation-required" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details"
512516
TLS1_2: "TLS1_2",
513517
#suppress "@azure-tools/typespec-azure-core/documentation-required" "FIXME: Update justification, follow aka.ms/tsp/conversion-fix for details"
@@ -1240,7 +1244,7 @@ model BlobServicePropertiesProperties {
12401244
/**
12411245
* The static website properties for blob storage.
12421246
*/
1243-
@added(Versions.v2025_08_01)
1247+
@added(Versions.v2025_08_01)
12441248
staticWebsite?: StaticWebsite;
12451249

12461250
/**
@@ -3574,7 +3578,7 @@ model AccountImmutabilityPolicyProperties {
35743578
/**
35753579
* Defines shared key access settings for an individual storage service.
35763580
*/
3577-
@added(Versions.v2025_08_01)
3581+
@added(Versions.v2025_08_01)
35783582
model ServiceSharedKeyAccessProperties {
35793583
/**
35803584
* Indicates whether shared key access is enabled for the service.
@@ -3585,7 +3589,7 @@ model ServiceSharedKeyAccessProperties {
35853589
/**
35863590
* Defines shared key access properties for a storage account.
35873591
*/
3588-
@added(Versions.v2025_08_01)
3592+
@added(Versions.v2025_08_01)
35893593
model StorageAccountSharedKeyAccessProperties {
35903594
/**
35913595
* Shared key access settings for Blob service.
@@ -3855,7 +3859,7 @@ model StorageAccountProperties {
38553859
/**
38563860
* Indicate shared key access properties at service level
38573861
*/
3858-
@added(Versions.v2025_08_01)
3862+
@added(Versions.v2025_08_01)
38593863
allowSharedKeyAccessForServices?: StorageAccountSharedKeyAccessProperties;
38603864
}
38613865

specification/storage/resource-manager/Microsoft.Storage/stable/2025-08-01/openapi.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7911,7 +7911,8 @@
79117911
"description": "Restrict copy to and from Storage Accounts within an AAD tenant or with Private Links to the same VNet.",
79127912
"enum": [
79137913
"PrivateLink",
7914-
"AAD"
7914+
"AAD",
7915+
"All"
79157916
],
79167917
"x-ms-enum": {
79177918
"name": "AllowedCopyScope",
@@ -7924,6 +7925,10 @@
79247925
{
79257926
"name": "AAD",
79267927
"value": "AAD"
7928+
},
7929+
{
7930+
"name": "All",
7931+
"value": "All"
79277932
}
79287933
]
79297934
}

0 commit comments

Comments
 (0)