File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
src/Storage/Storage.Management Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 20
20
## Upcoming Release
21
21
* Return ListBlobProperties in blob list result
22
22
- ` Get-AzStorageBlob `
23
+ * Output AllowedCopyScope in get account result
24
+ - ` Get-AzStorageAccount `
23
25
24
26
## Version 5.2.0
25
27
* Supported MaxPageSize, Include, and Filter parameters for listing encryption scopes
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ public PSStorageAccount(StorageModels.StorageAccount storageAccount)
72
72
this . StorageAccountSkuConversionStatus = storageAccount . StorageAccountSkuConversionStatus is null ? null : new PSStorageAccountSkuConversionStatus ( storageAccount . StorageAccountSkuConversionStatus ) ;
73
73
this . EnableSftp = storageAccount . IsSftpEnabled ;
74
74
this . EnableLocalUser = storageAccount . IsLocalUserEnabled ;
75
+ this . AllowedCopyScope = storageAccount . AllowedCopyScope ;
75
76
}
76
77
public bool ? AllowCrossTenantReplication { get ; set ; }
77
78
@@ -161,6 +162,8 @@ public PSStorageAccount(StorageModels.StorageAccount storageAccount)
161
162
162
163
public string PublicNetworkAccess { get ; set ; }
163
164
165
+ public string AllowedCopyScope { get ; set ; }
166
+
164
167
public PSImmutableStorageAccount ImmutableStorageWithVersioning { get ; set ; }
165
168
public PSStorageAccountSkuConversionStatus StorageAccountSkuConversionStatus { get ; set ; }
166
169
You can’t perform that action at this time.
0 commit comments