diff --git a/lib/services/storageManagement2/lib/models/index.d.ts b/lib/services/storageManagement2/lib/models/index.d.ts index a66c7ad431..e346d22de5 100644 --- a/lib/services/storageManagement2/lib/models/index.d.ts +++ b/lib/services/storageManagement2/lib/models/index.d.ts @@ -182,13 +182,14 @@ export interface Restriction { * @member {string} name Gets or sets the sku name. Required for account * creation; optional for update. Note that in older versions, sku name was * called accountType. Possible values include: 'Standard_LRS', 'Standard_GRS', - * 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', 'Premium_ZRS' * @member {string} [tier] Gets the sku tier. This is based on the SKU name. * Possible values include: 'Standard', 'Premium' * @member {string} [resourceType] The type of the resource, usually it is * 'storageAccounts'. * @member {string} [kind] Indicates the type of storage account. Possible - * values include: 'Storage', 'StorageV2', 'BlobStorage' + * values include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * @member {array} [locations] The set of locations that the SKU is available. * This will be supported and registered Azure Geo Regions (e.g. West US, East * US, Southeast Asia, etc.). @@ -464,13 +465,14 @@ export interface Identity { * @member {string} [sku.name] Gets or sets the sku name. Required for account * creation; optional for update. Note that in older versions, sku name was * called accountType. Possible values include: 'Standard_LRS', 'Standard_GRS', - * 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', 'Premium_ZRS' * @member {string} [sku.tier] Gets the sku tier. This is based on the SKU * name. Possible values include: 'Standard', 'Premium' * @member {string} [sku.resourceType] The type of the resource, usually it is * 'storageAccounts'. * @member {string} [sku.kind] Indicates the type of storage account. Possible - * values include: 'Storage', 'StorageV2', 'BlobStorage' + * values include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * @member {array} [sku.locations] The set of locations that the SKU is * available. This will be supported and registered Azure Geo Regions (e.g. * West US, East US, Southeast Asia, etc.). @@ -480,7 +482,8 @@ export interface Identity { * @member {array} [sku.restrictions] The restrictions because of which SKU * cannot be used. This is empty if there are no restrictions. * @member {string} kind Required. Indicates the type of storage account. - * Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * @member {string} location Required. Gets or sets the location of the * resource. This will be one of the supported and registered Azure Geo Regions * (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource @@ -567,10 +570,12 @@ export interface Identity { * @member {string} [accessTier] Required for storage accounts where kind = * BlobStorage. The access tier used for billing. Possible values include: * 'Hot', 'Cool' + * @member {boolean} [enableAzureFilesAadIntegration] Enables Azure Files AAD + * Integration for SMB if sets to true. * @member {boolean} [enableHttpsTrafficOnly] Allows https traffic only to - * storage service if sets to true. Default value: false . + * storage service if sets to true. * @member {boolean} [isHnsEnabled] Account HierarchicalNamespace enabled if - * sets to true. Default value: false . + * sets to true. */ export interface StorageAccountCreateParameters { sku: Sku; @@ -582,6 +587,7 @@ export interface StorageAccountCreateParameters { encryption?: Encryption; networkRuleSet?: NetworkRuleSet; accessTier?: string; + enableAzureFilesAadIntegration?: boolean; enableHttpsTrafficOnly?: boolean; isHnsEnabled?: boolean; } @@ -649,13 +655,14 @@ export interface TrackedResource extends Resource { * @member {string} [sku.name] Gets or sets the sku name. Required for account * creation; optional for update. Note that in older versions, sku name was * called accountType. Possible values include: 'Standard_LRS', 'Standard_GRS', - * 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', 'Premium_ZRS' * @member {string} [sku.tier] Gets the sku tier. This is based on the SKU * name. Possible values include: 'Standard', 'Premium' * @member {string} [sku.resourceType] The type of the resource, usually it is * 'storageAccounts'. * @member {string} [sku.kind] Indicates the type of storage account. Possible - * values include: 'Storage', 'StorageV2', 'BlobStorage' + * values include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * @member {array} [sku.locations] The set of locations that the SKU is * available. This will be supported and registered Azure Geo Regions (e.g. * West US, East US, Southeast Asia, etc.). @@ -665,7 +672,7 @@ export interface TrackedResource extends Resource { * @member {array} [sku.restrictions] The restrictions because of which SKU * cannot be used. This is empty if there are no restrictions. * @member {string} [kind] Gets the Kind. Possible values include: 'Storage', - * 'StorageV2', 'BlobStorage' + * 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage' * @member {object} [identity] The identity of the resource. * @member {string} [identity.principalId] The principal ID of resource * identity. @@ -768,8 +775,10 @@ export interface TrackedResource extends Resource { * @member {string} [accessTier] Required for storage accounts where kind = * BlobStorage. The access tier used for billing. Possible values include: * 'Hot', 'Cool' + * @member {boolean} [enableAzureFilesAadIntegration] Enables Azure Files AAD + * Integration for SMB if sets to true. * @member {boolean} [enableHttpsTrafficOnly] Allows https traffic only to - * storage service if sets to true. Default value: false . + * storage service if sets to true. * @member {object} [networkRuleSet] Network rule set * @member {string} [networkRuleSet.bypass] Specifies whether traffic is * bypassed for Logging/Metrics/AzureServices. Possible values are any @@ -783,7 +792,7 @@ export interface TrackedResource extends Resource { * of allow or deny when no other rules match. Possible values include: * 'Allow', 'Deny' * @member {boolean} [isHnsEnabled] Account HierarchicalNamespace enabled if - * sets to true. Default value: false . + * sets to true. */ export interface StorageAccount extends TrackedResource { readonly sku?: Sku; @@ -801,6 +810,7 @@ export interface StorageAccount extends TrackedResource { readonly secondaryEndpoints?: Endpoints; readonly encryption?: Encryption; readonly accessTier?: string; + enableAzureFilesAadIntegration?: boolean; enableHttpsTrafficOnly?: boolean; readonly networkRuleSet?: NetworkRuleSet; isHnsEnabled?: boolean; @@ -857,18 +867,19 @@ export interface StorageAccountRegenerateKeyParameters { * properties. * * @member {object} [sku] Gets or sets the SKU name. Note that the SKU name - * cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts of those - * sku names be updated to any other value. + * cannot be updated to Standard_ZRS, Premium_LRS or Premium_ZRS, nor can + * accounts of those sku names be updated to any other value. * @member {string} [sku.name] Gets or sets the sku name. Required for account * creation; optional for update. Note that in older versions, sku name was * called accountType. Possible values include: 'Standard_LRS', 'Standard_GRS', - * 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', 'Premium_ZRS' * @member {string} [sku.tier] Gets the sku tier. This is based on the SKU * name. Possible values include: 'Standard', 'Premium' * @member {string} [sku.resourceType] The type of the resource, usually it is * 'storageAccounts'. * @member {string} [sku.kind] Indicates the type of storage account. Possible - * values include: 'Storage', 'StorageV2', 'BlobStorage' + * values include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * @member {array} [sku.locations] The set of locations that the SKU is * available. This will be supported and registered Azure Geo Regions (e.g. * West US, East US, Southeast Asia, etc.). @@ -945,8 +956,10 @@ export interface StorageAccountRegenerateKeyParameters { * @member {string} [accessTier] Required for storage accounts where kind = * BlobStorage. The access tier used for billing. Possible values include: * 'Hot', 'Cool' + * @member {boolean} [enableAzureFilesAadIntegration] Enables Azure Files AAD + * Integration for SMB if sets to true. * @member {boolean} [enableHttpsTrafficOnly] Allows https traffic only to - * storage service if sets to true. Default value: false . + * storage service if sets to true. * @member {object} [networkRuleSet] Network rule set * @member {string} [networkRuleSet.bypass] Specifies whether traffic is * bypassed for Logging/Metrics/AzureServices. Possible values are any @@ -961,7 +974,7 @@ export interface StorageAccountRegenerateKeyParameters { * 'Allow', 'Deny' * @member {string} [kind] Optional. Indicates the type of storage account. * Currently only StorageV2 value supported by server. Possible values include: - * 'Storage', 'StorageV2', 'BlobStorage' + * 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage' */ export interface StorageAccountUpdateParameters { sku?: Sku; @@ -970,6 +983,7 @@ export interface StorageAccountUpdateParameters { customDomain?: CustomDomain; encryption?: Encryption; accessTier?: string; + enableAzureFilesAadIntegration?: boolean; enableHttpsTrafficOnly?: boolean; networkRuleSet?: NetworkRuleSet; kind?: string; @@ -1142,39 +1156,6 @@ export interface ListServiceSasResponse { readonly serviceSasToken?: string; } -/** - * @class - * Initializes a new instance of the StorageAccountManagementPolicies class. - * @constructor - * The Get Storage Account ManagementPolicies operation response. - * - * @member {object} [policy] The Storage Account ManagementPolicies Rules, in - * JSON format. See more details in: - * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. - * @member {date} [lastModifiedTime] Returns the date and time the - * ManagementPolicies was last modified. - */ -export interface StorageAccountManagementPolicies extends Resource { - policy?: any; - readonly lastModifiedTime?: Date; -} - -/** - * @class - * Initializes a new instance of the ManagementPoliciesRulesSetParameter class. - * @constructor - * The Storage Account ManagementPolicies Rules, in JSON format. See more - * details in: - * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. - * - * @member {object} [policy] The Storage Account ManagementPolicies Rules, in - * JSON format. See more details in: - * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. - */ -export interface ManagementPoliciesRulesSetParameter { - policy?: any; -} - /** * @class * Initializes a new instance of the ProxyResource class. @@ -1465,6 +1446,39 @@ export interface ListContainerItems { value?: ListContainerItem[]; } +/** + * @class + * Initializes a new instance of the StorageAccountManagementPolicies class. + * @constructor + * The Get Storage Account ManagementPolicies operation response. + * + * @member {object} [policy] The Storage Account ManagementPolicies Rules, in + * JSON format. See more details in: + * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + * @member {date} [lastModifiedTime] Returns the date and time the + * ManagementPolicies was last modified. + */ +export interface StorageAccountManagementPolicies extends Resource { + policy?: any; + readonly lastModifiedTime?: Date; +} + +/** + * @class + * Initializes a new instance of the ManagementPoliciesRulesSetParameter class. + * @constructor + * The Storage Account ManagementPolicies Rules, in JSON format. See more + * details in: + * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + * + * @member {object} [policy] The Storage Account ManagementPolicies Rules, in + * JSON format. See more details in: + * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + */ +export interface ManagementPoliciesRulesSetParameter { + policy?: any; +} + /** * @class diff --git a/lib/services/storageManagement2/lib/models/index.js b/lib/services/storageManagement2/lib/models/index.js index a1981fb725..4d2443cbe9 100644 --- a/lib/services/storageManagement2/lib/models/index.js +++ b/lib/services/storageManagement2/lib/models/index.js @@ -52,8 +52,6 @@ exports.AccountSasParameters = require('./accountSasParameters'); exports.ListAccountSasResponse = require('./listAccountSasResponse'); exports.ServiceSasParameters = require('./serviceSasParameters'); exports.ListServiceSasResponse = require('./listServiceSasResponse'); -exports.StorageAccountManagementPolicies = require('./storageAccountManagementPolicies'); -exports.ManagementPoliciesRulesSetParameter = require('./managementPoliciesRulesSetParameter'); exports.ProxyResource = require('./proxyResource'); exports.AzureEntityResource = require('./azureEntityResource'); exports.UpdateHistoryProperty = require('./updateHistoryProperty'); @@ -65,6 +63,8 @@ exports.ImmutabilityPolicy = require('./immutabilityPolicy'); exports.LegalHold = require('./legalHold'); exports.ListContainerItem = require('./listContainerItem'); exports.ListContainerItems = require('./listContainerItems'); +exports.StorageAccountManagementPolicies = require('./storageAccountManagementPolicies'); +exports.ManagementPoliciesRulesSetParameter = require('./managementPoliciesRulesSetParameter'); exports.OperationListResult = require('./operationListResult'); exports.StorageSkuListResult = require('./storageSkuListResult'); exports.StorageAccountListResult = require('./storageAccountListResult'); diff --git a/lib/services/storageManagement2/lib/models/sku.js b/lib/services/storageManagement2/lib/models/sku.js index 3ea6a3e4d1..2e54115162 100644 --- a/lib/services/storageManagement2/lib/models/sku.js +++ b/lib/services/storageManagement2/lib/models/sku.js @@ -20,13 +20,15 @@ class Sku { * @member {string} name Gets or sets the sku name. Required for account * creation; optional for update. Note that in older versions, sku name was * called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * @member {string} [tier] Gets the sku tier. This is based on the SKU name. * Possible values include: 'Standard', 'Premium' * @member {string} [resourceType] The type of the resource, usually it is * 'storageAccounts'. * @member {string} [kind] Indicates the type of storage account. Possible - * values include: 'Storage', 'StorageV2', 'BlobStorage' + * values include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * @member {array} [locations] The set of locations that the SKU is * available. This will be supported and registered Azure Geo Regions (e.g. * West US, East US, Southeast Asia, etc.). @@ -57,7 +59,7 @@ class Sku { serializedName: 'name', type: { name: 'Enum', - allowedValues: [ 'Standard_LRS', 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' ] + allowedValues: [ 'Standard_LRS', 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', 'Premium_ZRS' ] } }, tier: { @@ -83,7 +85,7 @@ class Sku { serializedName: 'kind', type: { name: 'Enum', - allowedValues: [ 'Storage', 'StorageV2', 'BlobStorage' ] + allowedValues: [ 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage' ] } }, locations: { diff --git a/lib/services/storageManagement2/lib/models/storageAccount.js b/lib/services/storageManagement2/lib/models/storageAccount.js index 536c440ce9..8ff0c24b3a 100644 --- a/lib/services/storageManagement2/lib/models/storageAccount.js +++ b/lib/services/storageManagement2/lib/models/storageAccount.js @@ -24,13 +24,15 @@ class StorageAccount extends models['TrackedResource'] { * @member {string} [sku.name] Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku * name was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * @member {string} [sku.tier] Gets the sku tier. This is based on the SKU * name. Possible values include: 'Standard', 'Premium' * @member {string} [sku.resourceType] The type of the resource, usually it * is 'storageAccounts'. * @member {string} [sku.kind] Indicates the type of storage account. - * Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * @member {array} [sku.locations] The set of locations that the SKU is * available. This will be supported and registered Azure Geo Regions (e.g. * West US, East US, Southeast Asia, etc.). @@ -40,7 +42,7 @@ class StorageAccount extends models['TrackedResource'] { * @member {array} [sku.restrictions] The restrictions because of which SKU * cannot be used. This is empty if there are no restrictions. * @member {string} [kind] Gets the Kind. Possible values include: 'Storage', - * 'StorageV2', 'BlobStorage' + * 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage' * @member {object} [identity] The identity of the resource. * @member {string} [identity.principalId] The principal ID of resource * identity. @@ -148,8 +150,10 @@ class StorageAccount extends models['TrackedResource'] { * @member {string} [accessTier] Required for storage accounts where kind = * BlobStorage. The access tier used for billing. Possible values include: * 'Hot', 'Cool' + * @member {boolean} [enableAzureFilesAadIntegration] Enables Azure Files AAD + * Integration for SMB if sets to true. * @member {boolean} [enableHttpsTrafficOnly] Allows https traffic only to - * storage service if sets to true. Default value: false . + * storage service if sets to true. * @member {object} [networkRuleSet] Network rule set * @member {string} [networkRuleSet.bypass] Specifies whether traffic is * bypassed for Logging/Metrics/AzureServices. Possible values are any @@ -163,7 +167,7 @@ class StorageAccount extends models['TrackedResource'] { * action of allow or deny when no other rules match. Possible values * include: 'Allow', 'Deny' * @member {boolean} [isHnsEnabled] Account HierarchicalNamespace enabled if - * sets to true. Default value: false . + * sets to true. */ constructor() { super(); @@ -243,7 +247,7 @@ class StorageAccount extends models['TrackedResource'] { serializedName: 'kind', type: { name: 'Enum', - allowedValues: [ 'Storage', 'StorageV2', 'BlobStorage' ] + allowedValues: [ 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage' ] } }, identity: { @@ -358,10 +362,16 @@ class StorageAccount extends models['TrackedResource'] { allowedValues: [ 'Hot', 'Cool' ] } }, + enableAzureFilesAadIntegration: { + required: false, + serializedName: 'properties.azureFilesAadIntegration', + type: { + name: 'Boolean' + } + }, enableHttpsTrafficOnly: { required: false, serializedName: 'properties.supportsHttpsTrafficOnly', - defaultValue: false, type: { name: 'Boolean' } @@ -378,7 +388,6 @@ class StorageAccount extends models['TrackedResource'] { isHnsEnabled: { required: false, serializedName: 'properties.isHnsEnabled', - defaultValue: false, type: { name: 'Boolean' } diff --git a/lib/services/storageManagement2/lib/models/storageAccountCreateParameters.js b/lib/services/storageManagement2/lib/models/storageAccountCreateParameters.js index 33b41a1c51..9d8a800575 100644 --- a/lib/services/storageManagement2/lib/models/storageAccountCreateParameters.js +++ b/lib/services/storageManagement2/lib/models/storageAccountCreateParameters.js @@ -21,13 +21,15 @@ class StorageAccountCreateParameters { * @member {string} [sku.name] Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku * name was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * @member {string} [sku.tier] Gets the sku tier. This is based on the SKU * name. Possible values include: 'Standard', 'Premium' * @member {string} [sku.resourceType] The type of the resource, usually it * is 'storageAccounts'. * @member {string} [sku.kind] Indicates the type of storage account. - * Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * @member {array} [sku.locations] The set of locations that the SKU is * available. This will be supported and registered Azure Geo Regions (e.g. * West US, East US, Southeast Asia, etc.). @@ -37,7 +39,8 @@ class StorageAccountCreateParameters { * @member {array} [sku.restrictions] The restrictions because of which SKU * cannot be used. This is empty if there are no restrictions. * @member {string} kind Required. Indicates the type of storage account. - * Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * @member {string} location Required. Gets or sets the location of the * resource. This will be one of the supported and registered Azure Geo * Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a @@ -130,10 +133,12 @@ class StorageAccountCreateParameters { * @member {string} [accessTier] Required for storage accounts where kind = * BlobStorage. The access tier used for billing. Possible values include: * 'Hot', 'Cool' + * @member {boolean} [enableAzureFilesAadIntegration] Enables Azure Files AAD + * Integration for SMB if sets to true. * @member {boolean} [enableHttpsTrafficOnly] Allows https traffic only to - * storage service if sets to true. Default value: false . + * storage service if sets to true. * @member {boolean} [isHnsEnabled] Account HierarchicalNamespace enabled if - * sets to true. Default value: false . + * sets to true. */ constructor() { } @@ -165,7 +170,7 @@ class StorageAccountCreateParameters { serializedName: 'kind', type: { name: 'Enum', - allowedValues: [ 'Storage', 'StorageV2', 'BlobStorage' ] + allowedValues: [ 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage' ] } }, location: { @@ -229,10 +234,16 @@ class StorageAccountCreateParameters { allowedValues: [ 'Hot', 'Cool' ] } }, + enableAzureFilesAadIntegration: { + required: false, + serializedName: 'properties.azureFilesAadIntegration', + type: { + name: 'Boolean' + } + }, enableHttpsTrafficOnly: { required: false, serializedName: 'properties.supportsHttpsTrafficOnly', - defaultValue: false, type: { name: 'Boolean' } @@ -240,7 +251,6 @@ class StorageAccountCreateParameters { isHnsEnabled: { required: false, serializedName: 'properties.isHnsEnabled', - defaultValue: false, type: { name: 'Boolean' } diff --git a/lib/services/storageManagement2/lib/models/storageAccountUpdateParameters.js b/lib/services/storageManagement2/lib/models/storageAccountUpdateParameters.js index 95db7d57f7..cb8a4ac56e 100644 --- a/lib/services/storageManagement2/lib/models/storageAccountUpdateParameters.js +++ b/lib/services/storageManagement2/lib/models/storageAccountUpdateParameters.js @@ -19,18 +19,20 @@ class StorageAccountUpdateParameters { /** * Create a StorageAccountUpdateParameters. * @member {object} [sku] Gets or sets the SKU name. Note that the SKU name - * cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts of - * those sku names be updated to any other value. + * cannot be updated to Standard_ZRS, Premium_LRS or Premium_ZRS, nor can + * accounts of those sku names be updated to any other value. * @member {string} [sku.name] Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku * name was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * @member {string} [sku.tier] Gets the sku tier. This is based on the SKU * name. Possible values include: 'Standard', 'Premium' * @member {string} [sku.resourceType] The type of the resource, usually it * is 'storageAccounts'. * @member {string} [sku.kind] Indicates the type of storage account. - * Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * @member {array} [sku.locations] The set of locations that the SKU is * available. This will be supported and registered Azure Geo Regions (e.g. * West US, East US, Southeast Asia, etc.). @@ -112,8 +114,10 @@ class StorageAccountUpdateParameters { * @member {string} [accessTier] Required for storage accounts where kind = * BlobStorage. The access tier used for billing. Possible values include: * 'Hot', 'Cool' + * @member {boolean} [enableAzureFilesAadIntegration] Enables Azure Files AAD + * Integration for SMB if sets to true. * @member {boolean} [enableHttpsTrafficOnly] Allows https traffic only to - * storage service if sets to true. Default value: false . + * storage service if sets to true. * @member {object} [networkRuleSet] Network rule set * @member {string} [networkRuleSet.bypass] Specifies whether traffic is * bypassed for Logging/Metrics/AzureServices. Possible values are any @@ -128,7 +132,8 @@ class StorageAccountUpdateParameters { * include: 'Allow', 'Deny' * @member {string} [kind] Optional. Indicates the type of storage account. * Currently only StorageV2 value supported by server. Possible values - * include: 'Storage', 'StorageV2', 'BlobStorage' + * include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' */ constructor() { } @@ -201,10 +206,16 @@ class StorageAccountUpdateParameters { allowedValues: [ 'Hot', 'Cool' ] } }, + enableAzureFilesAadIntegration: { + required: false, + serializedName: 'properties.azureFilesAadIntegration', + type: { + name: 'Boolean' + } + }, enableHttpsTrafficOnly: { required: false, serializedName: 'properties.supportsHttpsTrafficOnly', - defaultValue: false, type: { name: 'Boolean' } @@ -222,7 +233,7 @@ class StorageAccountUpdateParameters { serializedName: 'kind', type: { name: 'Enum', - allowedValues: [ 'Storage', 'StorageV2', 'BlobStorage' ] + allowedValues: [ 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage' ] } } } diff --git a/lib/services/storageManagement2/lib/operations/blobContainers.js b/lib/services/storageManagement2/lib/operations/blobContainers.js index ed994ad15f..0476f9c62f 100644 --- a/lib/services/storageManagement2/lib/operations/blobContainers.js +++ b/lib/services/storageManagement2/lib/operations/blobContainers.js @@ -53,6 +53,7 @@ function _list(resourceGroupName, accountName, options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -85,15 +86,6 @@ function _list(resourceGroupName, accountName, options, callback) { throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -117,7 +109,7 @@ function _list(resourceGroupName, accountName, options, callback) { requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -255,6 +247,7 @@ function _create(resourceGroupName, accountName, containerName, options, callbac } let publicAccess = (options && options.publicAccess !== undefined) ? options.publicAccess : undefined; let metadata = (options && options.metadata !== undefined) ? options.metadata : undefined; + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -300,15 +293,6 @@ function _create(resourceGroupName, accountName, containerName, options, callbac throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -356,7 +340,7 @@ function _create(resourceGroupName, accountName, containerName, options, callbac requestUrl = requestUrl.replace('{containerName}', encodeURIComponent(containerName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -507,6 +491,7 @@ function _update(resourceGroupName, accountName, containerName, options, callbac } let publicAccess = (options && options.publicAccess !== undefined) ? options.publicAccess : undefined; let metadata = (options && options.metadata !== undefined) ? options.metadata : undefined; + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -552,15 +537,6 @@ function _update(resourceGroupName, accountName, containerName, options, callbac throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -608,7 +584,7 @@ function _update(resourceGroupName, accountName, containerName, options, callbac requestUrl = requestUrl.replace('{containerName}', encodeURIComponent(containerName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -748,6 +724,7 @@ function _get(resourceGroupName, accountName, containerName, options, callback) if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -793,15 +770,6 @@ function _get(resourceGroupName, accountName, containerName, options, callback) throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -826,7 +794,7 @@ function _get(resourceGroupName, accountName, containerName, options, callback) requestUrl = requestUrl.replace('{containerName}', encodeURIComponent(containerName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -951,6 +919,7 @@ function _deleteMethod(resourceGroupName, accountName, containerName, options, c if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -996,15 +965,6 @@ function _deleteMethod(resourceGroupName, accountName, containerName, options, c throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1029,7 +989,7 @@ function _deleteMethod(resourceGroupName, accountName, containerName, options, c requestUrl = requestUrl.replace('{containerName}', encodeURIComponent(containerName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1143,6 +1103,7 @@ function _setLegalHold(resourceGroupName, accountName, containerName, tags, opti if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -1188,15 +1149,6 @@ function _setLegalHold(resourceGroupName, accountName, containerName, tags, opti throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1238,7 +1190,7 @@ function _setLegalHold(resourceGroupName, accountName, containerName, tags, opti requestUrl = requestUrl.replace('{containerName}', encodeURIComponent(containerName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1383,6 +1335,7 @@ function _clearLegalHold(resourceGroupName, accountName, containerName, tags, op if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -1428,15 +1381,6 @@ function _clearLegalHold(resourceGroupName, accountName, containerName, tags, op throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1478,7 +1422,7 @@ function _clearLegalHold(resourceGroupName, accountName, containerName, tags, op requestUrl = requestUrl.replace('{containerName}', encodeURIComponent(containerName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1629,6 +1573,7 @@ function _createOrUpdateImmutabilityPolicy(resourceGroupName, accountName, conta } let ifMatch = (options && options.ifMatch !== undefined) ? options.ifMatch : undefined; let immutabilityPolicyName = 'default'; + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -1674,15 +1619,6 @@ function _createOrUpdateImmutabilityPolicy(resourceGroupName, accountName, conta throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1724,7 +1660,7 @@ function _createOrUpdateImmutabilityPolicy(resourceGroupName, accountName, conta requestUrl = requestUrl.replace('{immutabilityPolicyName}', encodeURIComponent(immutabilityPolicyName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1875,6 +1811,7 @@ function _getImmutabilityPolicy(resourceGroupName, accountName, containerName, o } let ifMatch = (options && options.ifMatch !== undefined) ? options.ifMatch : undefined; let immutabilityPolicyName = 'default'; + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -1920,15 +1857,6 @@ function _getImmutabilityPolicy(resourceGroupName, accountName, containerName, o throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1957,7 +1885,7 @@ function _getImmutabilityPolicy(resourceGroupName, accountName, containerName, o requestUrl = requestUrl.replace('{immutabilityPolicyName}', encodeURIComponent(immutabilityPolicyName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -2096,6 +2024,7 @@ function _deleteImmutabilityPolicy(resourceGroupName, accountName, containerName throw new Error('callback cannot be null.'); } let immutabilityPolicyName = 'default'; + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -2141,15 +2070,6 @@ function _deleteImmutabilityPolicy(resourceGroupName, accountName, containerName throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -2178,7 +2098,7 @@ function _deleteImmutabilityPolicy(resourceGroupName, accountName, containerName requestUrl = requestUrl.replace('{immutabilityPolicyName}', encodeURIComponent(immutabilityPolicyName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -2314,6 +2234,7 @@ function _lockImmutabilityPolicy(resourceGroupName, accountName, containerName, if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -2359,15 +2280,6 @@ function _lockImmutabilityPolicy(resourceGroupName, accountName, containerName, throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -2395,7 +2307,7 @@ function _lockImmutabilityPolicy(resourceGroupName, accountName, containerName, requestUrl = requestUrl.replace('{containerName}', encodeURIComponent(containerName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -2534,6 +2446,7 @@ function _extendImmutabilityPolicy(resourceGroupName, accountName, containerName if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -2579,15 +2492,6 @@ function _extendImmutabilityPolicy(resourceGroupName, accountName, containerName throw new Error('"containerName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -2628,7 +2532,7 @@ function _extendImmutabilityPolicy(resourceGroupName, accountName, containerName requestUrl = requestUrl.replace('{containerName}', encodeURIComponent(containerName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } diff --git a/lib/services/storageManagement2/lib/operations/index.d.ts b/lib/services/storageManagement2/lib/operations/index.d.ts index 765a314eec..b6a3c984b4 100644 --- a/lib/services/storageManagement2/lib/operations/index.d.ts +++ b/lib/services/storageManagement2/lib/operations/index.d.ts @@ -221,13 +221,15 @@ export interface StorageAccounts { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -309,6 +311,9 @@ export interface StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -350,13 +355,15 @@ export interface StorageAccounts { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -438,6 +445,9 @@ export interface StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -631,13 +641,14 @@ export interface StorageAccounts { * account. * * @param {object} [parameters.sku] Gets or sets the SKU name. Note that the - * SKU name cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts - * of those sku names be updated to any other value. + * SKU name cannot be updated to Standard_ZRS, Premium_LRS or Premium_ZRS, nor + * can accounts of those sku names be updated to any other value. * * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. @@ -698,6 +709,9 @@ export interface StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -720,7 +734,8 @@ export interface StorageAccounts { * * @param {string} [parameters.kind] Optional. Indicates the type of storage * account. Currently only StorageV2 value supported by server. Possible values - * include: 'Storage', 'StorageV2', 'BlobStorage' + * include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * * @param {object} [options] Optional Parameters. * @@ -757,13 +772,14 @@ export interface StorageAccounts { * account. * * @param {object} [parameters.sku] Gets or sets the SKU name. Note that the - * SKU name cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts - * of those sku names be updated to any other value. + * SKU name cannot be updated to Standard_ZRS, Premium_LRS or Premium_ZRS, nor + * can accounts of those sku names be updated to any other value. * * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. @@ -824,6 +840,9 @@ export interface StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -846,7 +865,8 @@ export interface StorageAccounts { * * @param {string} [parameters.kind] Optional. Indicates the type of storage * account. Currently only StorageV2 value supported by server. Possible values - * include: 'Storage', 'StorageV2', 'BlobStorage' + * include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * * @param {object} [options] Optional Parameters. * @@ -1446,210 +1466,6 @@ export interface StorageAccounts { listServiceSAS(resourceGroupName: string, accountName: string, parameters: models.ServiceSasParameters, options: { customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; - /** - * Gets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error|ServiceError} - The error object. - */ - getManagementPoliciesWithHttpOperationResponse(resourceGroupName: string, accountName: string, options?: { customHeaders? : { [headerName: string]: string; } }): Promise>; - - /** - * Gets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {ServiceCallback} [optionalCallback] - The optional callback. - * - * @returns {ServiceCallback|Promise} If a callback was passed as the last - * parameter then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned. - * - * @resolve {StorageAccountManagementPolicies} - The deserialized result object. - * - * @reject {Error|ServiceError} - The error object. - * - * {ServiceCallback} optionalCallback(err, result, request, response) - * - * {Error|ServiceError} err - The Error object if an error occurred, null otherwise. - * - * {StorageAccountManagementPolicies} [result] - The deserialized result object if an error did not occur. - * See {@link StorageAccountManagementPolicies} for more - * information. - * - * {WebResource} [request] - The HTTP Request object if an error did not occur. - * - * {http.IncomingMessage} [response] - The HTTP Response stream if an error did not occur. - */ - getManagementPolicies(resourceGroupName: string, accountName: string, options?: { customHeaders? : { [headerName: string]: string; } }): Promise; - getManagementPolicies(resourceGroupName: string, accountName: string, callback: ServiceCallback): void; - getManagementPolicies(resourceGroupName: string, accountName: string, options: { customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; - - - /** - * Sets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.policy] The Storage Account ManagementPolicies - * Rules, in JSON format. See more details in: - * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error|ServiceError} - The error object. - */ - createOrUpdateManagementPoliciesWithHttpOperationResponse(resourceGroupName: string, accountName: string, options?: { policy? : any, customHeaders? : { [headerName: string]: string; } }): Promise>; - - /** - * Sets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.policy] The Storage Account ManagementPolicies - * Rules, in JSON format. See more details in: - * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {ServiceCallback} [optionalCallback] - The optional callback. - * - * @returns {ServiceCallback|Promise} If a callback was passed as the last - * parameter then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned. - * - * @resolve {StorageAccountManagementPolicies} - The deserialized result object. - * - * @reject {Error|ServiceError} - The error object. - * - * {ServiceCallback} optionalCallback(err, result, request, response) - * - * {Error|ServiceError} err - The Error object if an error occurred, null otherwise. - * - * {StorageAccountManagementPolicies} [result] - The deserialized result object if an error did not occur. - * See {@link StorageAccountManagementPolicies} for more - * information. - * - * {WebResource} [request] - The HTTP Request object if an error did not occur. - * - * {http.IncomingMessage} [response] - The HTTP Response stream if an error did not occur. - */ - createOrUpdateManagementPolicies(resourceGroupName: string, accountName: string, options?: { policy? : any, customHeaders? : { [headerName: string]: string; } }): Promise; - createOrUpdateManagementPolicies(resourceGroupName: string, accountName: string, callback: ServiceCallback): void; - createOrUpdateManagementPolicies(resourceGroupName: string, accountName: string, options: { policy? : any, customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; - - - /** - * Deletes the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error|ServiceError} - The error object. - */ - deleteManagementPoliciesWithHttpOperationResponse(resourceGroupName: string, accountName: string, options?: { customHeaders? : { [headerName: string]: string; } }): Promise>; - - /** - * Deletes the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {ServiceCallback} [optionalCallback] - The optional callback. - * - * @returns {ServiceCallback|Promise} If a callback was passed as the last - * parameter then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned. - * - * @resolve {null} - The deserialized result object. - * - * @reject {Error|ServiceError} - The error object. - * - * {ServiceCallback} optionalCallback(err, result, request, response) - * - * {Error|ServiceError} err - The Error object if an error occurred, null otherwise. - * - * {null} [result] - The deserialized result object if an error did not occur. - * - * {WebResource} [request] - The HTTP Request object if an error did not occur. - * - * {http.IncomingMessage} [response] - The HTTP Response stream if an error did not occur. - */ - deleteManagementPolicies(resourceGroupName: string, accountName: string, options?: { customHeaders? : { [headerName: string]: string; } }): Promise; - deleteManagementPolicies(resourceGroupName: string, accountName: string, callback: ServiceCallback): void; - deleteManagementPolicies(resourceGroupName: string, accountName: string, options: { customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; - - /** * Asynchronously creates a new storage account with the specified parameters. * If an account is already created and a subsequent create request is issued @@ -1672,13 +1488,15 @@ export interface StorageAccounts { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -1760,6 +1578,9 @@ export interface StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -1801,13 +1622,15 @@ export interface StorageAccounts { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -1889,6 +1712,9 @@ export interface StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -1936,59 +1762,6 @@ export interface StorageAccounts { export interface Usages { - /** - * Gets the current usage count and the limit for the resources under the - * subscription. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error|ServiceError} - The error object. - */ - listWithHttpOperationResponse(options?: { customHeaders? : { [headerName: string]: string; } }): Promise>; - - /** - * Gets the current usage count and the limit for the resources under the - * subscription. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {ServiceCallback} [optionalCallback] - The optional callback. - * - * @returns {ServiceCallback|Promise} If a callback was passed as the last - * parameter then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned. - * - * @resolve {UsageListResult} - The deserialized result object. - * - * @reject {Error|ServiceError} - The error object. - * - * {ServiceCallback} optionalCallback(err, result, request, response) - * - * {Error|ServiceError} err - The Error object if an error occurred, null otherwise. - * - * {UsageListResult} [result] - The deserialized result object if an error did not occur. - * See {@link UsageListResult} for more information. - * - * {WebResource} [request] - The HTTP Request object if an error did not occur. - * - * {http.IncomingMessage} [response] - The HTTP Response stream if an error did not occur. - */ - list(options?: { customHeaders? : { [headerName: string]: string; } }): Promise; - list(callback: ServiceCallback): void; - list(options: { customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; - - /** * Gets the current usage count and the limit for the resources of the location * under the subscription. @@ -3107,3 +2880,216 @@ export interface BlobContainers { extendImmutabilityPolicy(resourceGroupName: string, accountName: string, containerName: string, ifMatch: string, immutabilityPeriodSinceCreationInDays: number, callback: ServiceCallback): void; extendImmutabilityPolicy(resourceGroupName: string, accountName: string, containerName: string, ifMatch: string, immutabilityPeriodSinceCreationInDays: number, options: { customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; } + +/** + * @class + * ManagementPolicies + * __NOTE__: An instance of this class is automatically created for an + * instance of the StorageManagementClient. + */ +export interface ManagementPolicies { + + + /** + * Gets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @returns {Promise} A promise is returned + * + * @resolve {HttpOperationResponse} - The deserialized result object. + * + * @reject {Error|ServiceError} - The error object. + */ + getWithHttpOperationResponse(resourceGroupName: string, accountName: string, options?: { customHeaders? : { [headerName: string]: string; } }): Promise>; + + /** + * Gets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {ServiceCallback} [optionalCallback] - The optional callback. + * + * @returns {ServiceCallback|Promise} If a callback was passed as the last + * parameter then it returns the callback else returns a Promise. + * + * {Promise} A promise is returned. + * + * @resolve {StorageAccountManagementPolicies} - The deserialized result object. + * + * @reject {Error|ServiceError} - The error object. + * + * {ServiceCallback} optionalCallback(err, result, request, response) + * + * {Error|ServiceError} err - The Error object if an error occurred, null otherwise. + * + * {StorageAccountManagementPolicies} [result] - The deserialized result object if an error did not occur. + * See {@link StorageAccountManagementPolicies} for more + * information. + * + * {WebResource} [request] - The HTTP Request object if an error did not occur. + * + * {http.IncomingMessage} [response] - The HTTP Response stream if an error did not occur. + */ + get(resourceGroupName: string, accountName: string, options?: { customHeaders? : { [headerName: string]: string; } }): Promise; + get(resourceGroupName: string, accountName: string, callback: ServiceCallback): void; + get(resourceGroupName: string, accountName: string, options: { customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; + + + /** + * Sets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.policy] The Storage Account ManagementPolicies + * Rules, in JSON format. See more details in: + * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @returns {Promise} A promise is returned + * + * @resolve {HttpOperationResponse} - The deserialized result object. + * + * @reject {Error|ServiceError} - The error object. + */ + createOrUpdateWithHttpOperationResponse(resourceGroupName: string, accountName: string, options?: { policy? : any, customHeaders? : { [headerName: string]: string; } }): Promise>; + + /** + * Sets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.policy] The Storage Account ManagementPolicies + * Rules, in JSON format. See more details in: + * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {ServiceCallback} [optionalCallback] - The optional callback. + * + * @returns {ServiceCallback|Promise} If a callback was passed as the last + * parameter then it returns the callback else returns a Promise. + * + * {Promise} A promise is returned. + * + * @resolve {StorageAccountManagementPolicies} - The deserialized result object. + * + * @reject {Error|ServiceError} - The error object. + * + * {ServiceCallback} optionalCallback(err, result, request, response) + * + * {Error|ServiceError} err - The Error object if an error occurred, null otherwise. + * + * {StorageAccountManagementPolicies} [result] - The deserialized result object if an error did not occur. + * See {@link StorageAccountManagementPolicies} for more + * information. + * + * {WebResource} [request] - The HTTP Request object if an error did not occur. + * + * {http.IncomingMessage} [response] - The HTTP Response stream if an error did not occur. + */ + createOrUpdate(resourceGroupName: string, accountName: string, options?: { policy? : any, customHeaders? : { [headerName: string]: string; } }): Promise; + createOrUpdate(resourceGroupName: string, accountName: string, callback: ServiceCallback): void; + createOrUpdate(resourceGroupName: string, accountName: string, options: { policy? : any, customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; + + + /** + * Deletes the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @returns {Promise} A promise is returned + * + * @resolve {HttpOperationResponse} - The deserialized result object. + * + * @reject {Error|ServiceError} - The error object. + */ + deleteMethodWithHttpOperationResponse(resourceGroupName: string, accountName: string, options?: { customHeaders? : { [headerName: string]: string; } }): Promise>; + + /** + * Deletes the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {ServiceCallback} [optionalCallback] - The optional callback. + * + * @returns {ServiceCallback|Promise} If a callback was passed as the last + * parameter then it returns the callback else returns a Promise. + * + * {Promise} A promise is returned. + * + * @resolve {null} - The deserialized result object. + * + * @reject {Error|ServiceError} - The error object. + * + * {ServiceCallback} optionalCallback(err, result, request, response) + * + * {Error|ServiceError} err - The Error object if an error occurred, null otherwise. + * + * {null} [result] - The deserialized result object if an error did not occur. + * + * {WebResource} [request] - The HTTP Request object if an error did not occur. + * + * {http.IncomingMessage} [response] - The HTTP Response stream if an error did not occur. + */ + deleteMethod(resourceGroupName: string, accountName: string, options?: { customHeaders? : { [headerName: string]: string; } }): Promise; + deleteMethod(resourceGroupName: string, accountName: string, callback: ServiceCallback): void; + deleteMethod(resourceGroupName: string, accountName: string, options: { customHeaders? : { [headerName: string]: string; } }, callback: ServiceCallback): void; +} diff --git a/lib/services/storageManagement2/lib/operations/index.js b/lib/services/storageManagement2/lib/operations/index.js index 700065779f..f5f4b468a1 100644 --- a/lib/services/storageManagement2/lib/operations/index.js +++ b/lib/services/storageManagement2/lib/operations/index.js @@ -19,3 +19,4 @@ exports.Skus = require('./skus'); exports.StorageAccounts = require('./storageAccounts'); exports.Usages = require('./usages'); exports.BlobContainers = require('./blobContainers'); +exports.ManagementPolicies = require('./managementPolicies'); diff --git a/lib/services/storageManagement2/lib/operations/managementPolicies.js b/lib/services/storageManagement2/lib/operations/managementPolicies.js new file mode 100644 index 0000000000..875da78523 --- /dev/null +++ b/lib/services/storageManagement2/lib/operations/managementPolicies.js @@ -0,0 +1,862 @@ +/* + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is + * regenerated. + */ + +'use strict'; + +const msRest = require('ms-rest'); +const msRestAzure = require('ms-rest-azure'); +const WebResource = msRest.WebResource; + +/** + * Gets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {function} callback - The callback. + * + * @returns {function} callback(err, result, request, response) + * + * {Error} err - The Error object if an error occurred, null otherwise. + * + * {object} [result] - The deserialized result object if an error did not occur. + * See {@link StorageAccountManagementPolicies} for more + * information. + * + * {object} [request] - The HTTP Request object if an error did not occur. + * + * {stream} [response] - The HTTP Response stream if an error did not occur. + */ +function _get(resourceGroupName, accountName, options, callback) { + /* jshint validthis: true */ + let client = this.client; + if(!callback && typeof options === 'function') { + callback = options; + options = null; + } + if (!callback) { + throw new Error('callback cannot be null.'); + } + let apiVersion = '2018-03-01-preview'; + let managementPolicyName = 'default'; + // Validate + try { + if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { + throw new Error('resourceGroupName cannot be null or undefined and it must be of type string.'); + } + if (resourceGroupName !== null && resourceGroupName !== undefined) { + if (resourceGroupName.length > 90) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "MaxLength": 90'); + } + if (resourceGroupName.length < 1) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "MinLength": 1'); + } + if (resourceGroupName.match(/^[-\w\._\(\)]+$/) === null) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "Pattern": /^[-\w\._\(\)]+$/'); + } + } + if (accountName === null || accountName === undefined || typeof accountName.valueOf() !== 'string') { + throw new Error('accountName cannot be null or undefined and it must be of type string.'); + } + if (accountName !== null && accountName !== undefined) { + if (accountName.length > 24) + { + throw new Error('"accountName" should satisfy the constraint - "MaxLength": 24'); + } + if (accountName.length < 3) + { + throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); + } + } + if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { + throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); + } + if (this.client.subscriptionId !== null && this.client.subscriptionId !== undefined) { + if (this.client.subscriptionId.length < 1) + { + throw new Error('"this.client.subscriptionId" should satisfy the constraint - "MinLength": 1'); + } + } + if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { + throw new Error('this.client.acceptLanguage must be of type string.'); + } + } catch (error) { + return callback(error); + } + + // Construct URL + let baseUrl = this.client.baseUri; + let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'; + requestUrl = requestUrl.replace('{resourceGroupName}', encodeURIComponent(resourceGroupName)); + requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); + requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); + requestUrl = requestUrl.replace('{managementPolicyName}', encodeURIComponent(managementPolicyName)); + let queryParameters = []; + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); + if (queryParameters.length > 0) { + requestUrl += '?' + queryParameters.join('&'); + } + + // Create HTTP transport objects + let httpRequest = new WebResource(); + httpRequest.method = 'GET'; + httpRequest.url = requestUrl; + httpRequest.headers = {}; + // Set Headers + httpRequest.headers['Content-Type'] = 'application/json; charset=utf-8'; + if (this.client.generateClientRequestId) { + httpRequest.headers['x-ms-client-request-id'] = msRestAzure.generateUuid(); + } + if (this.client.acceptLanguage !== undefined && this.client.acceptLanguage !== null) { + httpRequest.headers['accept-language'] = this.client.acceptLanguage; + } + if(options) { + for(let headerName in options['customHeaders']) { + if (options['customHeaders'].hasOwnProperty(headerName)) { + httpRequest.headers[headerName] = options['customHeaders'][headerName]; + } + } + } + httpRequest.body = null; + // Send Request + return client.pipeline(httpRequest, (err, response, responseBody) => { + if (err) { + return callback(err); + } + let statusCode = response.statusCode; + if (statusCode !== 200) { + let error = new Error(responseBody); + error.statusCode = response.statusCode; + error.request = msRest.stripRequest(httpRequest); + error.response = msRest.stripResponse(response); + if (responseBody === '') responseBody = null; + let parsedErrorResponse; + try { + parsedErrorResponse = JSON.parse(responseBody); + if (parsedErrorResponse) { + if (parsedErrorResponse.error) parsedErrorResponse = parsedErrorResponse.error; + if (parsedErrorResponse.code) error.code = parsedErrorResponse.code; + if (parsedErrorResponse.message) error.message = parsedErrorResponse.message; + } + if (parsedErrorResponse !== null && parsedErrorResponse !== undefined) { + let resultMapper = new client.models['CloudError']().mapper(); + error.body = client.deserialize(resultMapper, parsedErrorResponse, 'error.body'); + } + } catch (defaultError) { + error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody ` + + `- "${responseBody}" for the default response.`; + return callback(error); + } + return callback(error); + } + // Create Result + let result = null; + if (responseBody === '') responseBody = null; + // Deserialize Response + if (statusCode === 200) { + let parsedResponse = null; + try { + parsedResponse = JSON.parse(responseBody); + result = JSON.parse(responseBody); + if (parsedResponse !== null && parsedResponse !== undefined) { + let resultMapper = new client.models['StorageAccountManagementPolicies']().mapper(); + result = client.deserialize(resultMapper, parsedResponse, 'result'); + } + } catch (error) { + let deserializationError = new Error(`Error ${error} occurred in deserializing the responseBody - ${responseBody}`); + deserializationError.request = msRest.stripRequest(httpRequest); + deserializationError.response = msRest.stripResponse(response); + return callback(deserializationError); + } + } + + return callback(null, result, httpRequest, response); + }); +} + +/** + * Sets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.policy] The Storage Account ManagementPolicies + * Rules, in JSON format. See more details in: + * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {function} callback - The callback. + * + * @returns {function} callback(err, result, request, response) + * + * {Error} err - The Error object if an error occurred, null otherwise. + * + * {object} [result] - The deserialized result object if an error did not occur. + * See {@link StorageAccountManagementPolicies} for more + * information. + * + * {object} [request] - The HTTP Request object if an error did not occur. + * + * {stream} [response] - The HTTP Response stream if an error did not occur. + */ +function _createOrUpdate(resourceGroupName, accountName, options, callback) { + /* jshint validthis: true */ + let client = this.client; + if(!callback && typeof options === 'function') { + callback = options; + options = null; + } + if (!callback) { + throw new Error('callback cannot be null.'); + } + let policy = (options && options.policy !== undefined) ? options.policy : undefined; + let apiVersion = '2018-03-01-preview'; + let managementPolicyName = 'default'; + // Validate + try { + if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { + throw new Error('resourceGroupName cannot be null or undefined and it must be of type string.'); + } + if (resourceGroupName !== null && resourceGroupName !== undefined) { + if (resourceGroupName.length > 90) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "MaxLength": 90'); + } + if (resourceGroupName.length < 1) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "MinLength": 1'); + } + if (resourceGroupName.match(/^[-\w\._\(\)]+$/) === null) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "Pattern": /^[-\w\._\(\)]+$/'); + } + } + if (accountName === null || accountName === undefined || typeof accountName.valueOf() !== 'string') { + throw new Error('accountName cannot be null or undefined and it must be of type string.'); + } + if (accountName !== null && accountName !== undefined) { + if (accountName.length > 24) + { + throw new Error('"accountName" should satisfy the constraint - "MaxLength": 24'); + } + if (accountName.length < 3) + { + throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); + } + } + if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { + throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); + } + if (this.client.subscriptionId !== null && this.client.subscriptionId !== undefined) { + if (this.client.subscriptionId.length < 1) + { + throw new Error('"this.client.subscriptionId" should satisfy the constraint - "MinLength": 1'); + } + } + if (policy !== null && policy !== undefined && typeof policy !== 'object') { + throw new Error('policy must be of type object.'); + } + if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { + throw new Error('this.client.acceptLanguage must be of type string.'); + } + } catch (error) { + return callback(error); + } + let properties; + if (policy !== null && policy !== undefined) { + properties = new client.models['ManagementPoliciesRulesSetParameter'](); + properties.policy = policy; + } + + // Construct URL + let baseUrl = this.client.baseUri; + let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'; + requestUrl = requestUrl.replace('{resourceGroupName}', encodeURIComponent(resourceGroupName)); + requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); + requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); + requestUrl = requestUrl.replace('{managementPolicyName}', encodeURIComponent(managementPolicyName)); + let queryParameters = []; + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); + if (queryParameters.length > 0) { + requestUrl += '?' + queryParameters.join('&'); + } + + // Create HTTP transport objects + let httpRequest = new WebResource(); + httpRequest.method = 'PUT'; + httpRequest.url = requestUrl; + httpRequest.headers = {}; + // Set Headers + httpRequest.headers['Content-Type'] = 'application/json; charset=utf-8'; + if (this.client.generateClientRequestId) { + httpRequest.headers['x-ms-client-request-id'] = msRestAzure.generateUuid(); + } + if (this.client.acceptLanguage !== undefined && this.client.acceptLanguage !== null) { + httpRequest.headers['accept-language'] = this.client.acceptLanguage; + } + if(options) { + for(let headerName in options['customHeaders']) { + if (options['customHeaders'].hasOwnProperty(headerName)) { + httpRequest.headers[headerName] = options['customHeaders'][headerName]; + } + } + } + // Serialize Request + let requestContent = null; + let requestModel = null; + try { + if (properties !== null && properties !== undefined) { + let requestModelMapper = new client.models['ManagementPoliciesRulesSetParameter']().mapper(); + requestModel = client.serialize(requestModelMapper, properties, 'properties'); + requestContent = JSON.stringify(requestModel); + } + } catch (error) { + let serializationError = new Error(`Error "${error.message}" occurred in serializing the ` + + `payload - ${JSON.stringify(properties, null, 2)}.`); + return callback(serializationError); + } + httpRequest.body = requestContent; + // Send Request + return client.pipeline(httpRequest, (err, response, responseBody) => { + if (err) { + return callback(err); + } + let statusCode = response.statusCode; + if (statusCode !== 200) { + let error = new Error(responseBody); + error.statusCode = response.statusCode; + error.request = msRest.stripRequest(httpRequest); + error.response = msRest.stripResponse(response); + if (responseBody === '') responseBody = null; + let parsedErrorResponse; + try { + parsedErrorResponse = JSON.parse(responseBody); + if (parsedErrorResponse) { + if (parsedErrorResponse.error) parsedErrorResponse = parsedErrorResponse.error; + if (parsedErrorResponse.code) error.code = parsedErrorResponse.code; + if (parsedErrorResponse.message) error.message = parsedErrorResponse.message; + } + if (parsedErrorResponse !== null && parsedErrorResponse !== undefined) { + let resultMapper = new client.models['CloudError']().mapper(); + error.body = client.deserialize(resultMapper, parsedErrorResponse, 'error.body'); + } + } catch (defaultError) { + error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody ` + + `- "${responseBody}" for the default response.`; + return callback(error); + } + return callback(error); + } + // Create Result + let result = null; + if (responseBody === '') responseBody = null; + // Deserialize Response + if (statusCode === 200) { + let parsedResponse = null; + try { + parsedResponse = JSON.parse(responseBody); + result = JSON.parse(responseBody); + if (parsedResponse !== null && parsedResponse !== undefined) { + let resultMapper = new client.models['StorageAccountManagementPolicies']().mapper(); + result = client.deserialize(resultMapper, parsedResponse, 'result'); + } + } catch (error) { + let deserializationError = new Error(`Error ${error} occurred in deserializing the responseBody - ${responseBody}`); + deserializationError.request = msRest.stripRequest(httpRequest); + deserializationError.response = msRest.stripResponse(response); + return callback(deserializationError); + } + } + + return callback(null, result, httpRequest, response); + }); +} + +/** + * Deletes the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {function} callback - The callback. + * + * @returns {function} callback(err, result, request, response) + * + * {Error} err - The Error object if an error occurred, null otherwise. + * + * {null} [result] - The deserialized result object if an error did not occur. + * + * {object} [request] - The HTTP Request object if an error did not occur. + * + * {stream} [response] - The HTTP Response stream if an error did not occur. + */ +function _deleteMethod(resourceGroupName, accountName, options, callback) { + /* jshint validthis: true */ + let client = this.client; + if(!callback && typeof options === 'function') { + callback = options; + options = null; + } + if (!callback) { + throw new Error('callback cannot be null.'); + } + let apiVersion = '2018-03-01-preview'; + let managementPolicyName = 'default'; + // Validate + try { + if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { + throw new Error('resourceGroupName cannot be null or undefined and it must be of type string.'); + } + if (resourceGroupName !== null && resourceGroupName !== undefined) { + if (resourceGroupName.length > 90) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "MaxLength": 90'); + } + if (resourceGroupName.length < 1) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "MinLength": 1'); + } + if (resourceGroupName.match(/^[-\w\._\(\)]+$/) === null) + { + throw new Error('"resourceGroupName" should satisfy the constraint - "Pattern": /^[-\w\._\(\)]+$/'); + } + } + if (accountName === null || accountName === undefined || typeof accountName.valueOf() !== 'string') { + throw new Error('accountName cannot be null or undefined and it must be of type string.'); + } + if (accountName !== null && accountName !== undefined) { + if (accountName.length > 24) + { + throw new Error('"accountName" should satisfy the constraint - "MaxLength": 24'); + } + if (accountName.length < 3) + { + throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); + } + } + if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { + throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); + } + if (this.client.subscriptionId !== null && this.client.subscriptionId !== undefined) { + if (this.client.subscriptionId.length < 1) + { + throw new Error('"this.client.subscriptionId" should satisfy the constraint - "MinLength": 1'); + } + } + if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { + throw new Error('this.client.acceptLanguage must be of type string.'); + } + } catch (error) { + return callback(error); + } + + // Construct URL + let baseUrl = this.client.baseUri; + let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'; + requestUrl = requestUrl.replace('{resourceGroupName}', encodeURIComponent(resourceGroupName)); + requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); + requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); + requestUrl = requestUrl.replace('{managementPolicyName}', encodeURIComponent(managementPolicyName)); + let queryParameters = []; + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); + if (queryParameters.length > 0) { + requestUrl += '?' + queryParameters.join('&'); + } + + // Create HTTP transport objects + let httpRequest = new WebResource(); + httpRequest.method = 'DELETE'; + httpRequest.url = requestUrl; + httpRequest.headers = {}; + // Set Headers + httpRequest.headers['Content-Type'] = 'application/json; charset=utf-8'; + if (this.client.generateClientRequestId) { + httpRequest.headers['x-ms-client-request-id'] = msRestAzure.generateUuid(); + } + if (this.client.acceptLanguage !== undefined && this.client.acceptLanguage !== null) { + httpRequest.headers['accept-language'] = this.client.acceptLanguage; + } + if(options) { + for(let headerName in options['customHeaders']) { + if (options['customHeaders'].hasOwnProperty(headerName)) { + httpRequest.headers[headerName] = options['customHeaders'][headerName]; + } + } + } + httpRequest.body = null; + // Send Request + return client.pipeline(httpRequest, (err, response, responseBody) => { + if (err) { + return callback(err); + } + let statusCode = response.statusCode; + if (statusCode !== 200 && statusCode !== 204) { + let error = new Error(responseBody); + error.statusCode = response.statusCode; + error.request = msRest.stripRequest(httpRequest); + error.response = msRest.stripResponse(response); + if (responseBody === '') responseBody = null; + let parsedErrorResponse; + try { + parsedErrorResponse = JSON.parse(responseBody); + if (parsedErrorResponse) { + if (parsedErrorResponse.error) parsedErrorResponse = parsedErrorResponse.error; + if (parsedErrorResponse.code) error.code = parsedErrorResponse.code; + if (parsedErrorResponse.message) error.message = parsedErrorResponse.message; + } + if (parsedErrorResponse !== null && parsedErrorResponse !== undefined) { + let resultMapper = new client.models['CloudError']().mapper(); + error.body = client.deserialize(resultMapper, parsedErrorResponse, 'error.body'); + } + } catch (defaultError) { + error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody ` + + `- "${responseBody}" for the default response.`; + return callback(error); + } + return callback(error); + } + // Create Result + let result = null; + if (responseBody === '') responseBody = null; + + return callback(null, result, httpRequest, response); + }); +} + +/** Class representing a ManagementPolicies. */ +class ManagementPolicies { + /** + * Create a ManagementPolicies. + * @param {StorageManagementClient} client Reference to the service client. + */ + constructor(client) { + this.client = client; + this._get = _get; + this._createOrUpdate = _createOrUpdate; + this._deleteMethod = _deleteMethod; + } + + /** + * Gets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @returns {Promise} A promise is returned + * + * @resolve {HttpOperationResponse} - The deserialized result object. + * + * @reject {Error} - The error object. + */ + getWithHttpOperationResponse(resourceGroupName, accountName, options) { + let client = this.client; + let self = this; + return new Promise((resolve, reject) => { + self._get(resourceGroupName, accountName, options, (err, result, request, response) => { + let httpOperationResponse = new msRest.HttpOperationResponse(request, response); + httpOperationResponse.body = result; + if (err) { reject(err); } + else { resolve(httpOperationResponse); } + return; + }); + }); + } + + /** + * Gets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {function} [optionalCallback] - The optional callback. + * + * @returns {function|Promise} If a callback was passed as the last parameter + * then it returns the callback else returns a Promise. + * + * {Promise} A promise is returned + * + * @resolve {StorageAccountManagementPolicies} - The deserialized result object. + * + * @reject {Error} - The error object. + * + * {function} optionalCallback(err, result, request, response) + * + * {Error} err - The Error object if an error occurred, null otherwise. + * + * {object} [result] - The deserialized result object if an error did not occur. + * See {@link StorageAccountManagementPolicies} for more + * information. + * + * {object} [request] - The HTTP Request object if an error did not occur. + * + * {stream} [response] - The HTTP Response stream if an error did not occur. + */ + get(resourceGroupName, accountName, options, optionalCallback) { + let client = this.client; + let self = this; + if (!optionalCallback && typeof options === 'function') { + optionalCallback = options; + options = null; + } + if (!optionalCallback) { + return new Promise((resolve, reject) => { + self._get(resourceGroupName, accountName, options, (err, result, request, response) => { + if (err) { reject(err); } + else { resolve(result); } + return; + }); + }); + } else { + return self._get(resourceGroupName, accountName, options, optionalCallback); + } + } + + /** + * Sets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.policy] The Storage Account ManagementPolicies + * Rules, in JSON format. See more details in: + * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @returns {Promise} A promise is returned + * + * @resolve {HttpOperationResponse} - The deserialized result object. + * + * @reject {Error} - The error object. + */ + createOrUpdateWithHttpOperationResponse(resourceGroupName, accountName, options) { + let client = this.client; + let self = this; + return new Promise((resolve, reject) => { + self._createOrUpdate(resourceGroupName, accountName, options, (err, result, request, response) => { + let httpOperationResponse = new msRest.HttpOperationResponse(request, response); + httpOperationResponse.body = result; + if (err) { reject(err); } + else { resolve(httpOperationResponse); } + return; + }); + }); + } + + /** + * Sets the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.policy] The Storage Account ManagementPolicies + * Rules, in JSON format. See more details in: + * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {function} [optionalCallback] - The optional callback. + * + * @returns {function|Promise} If a callback was passed as the last parameter + * then it returns the callback else returns a Promise. + * + * {Promise} A promise is returned + * + * @resolve {StorageAccountManagementPolicies} - The deserialized result object. + * + * @reject {Error} - The error object. + * + * {function} optionalCallback(err, result, request, response) + * + * {Error} err - The Error object if an error occurred, null otherwise. + * + * {object} [result] - The deserialized result object if an error did not occur. + * See {@link StorageAccountManagementPolicies} for more + * information. + * + * {object} [request] - The HTTP Request object if an error did not occur. + * + * {stream} [response] - The HTTP Response stream if an error did not occur. + */ + createOrUpdate(resourceGroupName, accountName, options, optionalCallback) { + let client = this.client; + let self = this; + if (!optionalCallback && typeof options === 'function') { + optionalCallback = options; + options = null; + } + if (!optionalCallback) { + return new Promise((resolve, reject) => { + self._createOrUpdate(resourceGroupName, accountName, options, (err, result, request, response) => { + if (err) { reject(err); } + else { resolve(result); } + return; + }); + }); + } else { + return self._createOrUpdate(resourceGroupName, accountName, options, optionalCallback); + } + } + + /** + * Deletes the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @returns {Promise} A promise is returned + * + * @resolve {HttpOperationResponse} - The deserialized result object. + * + * @reject {Error} - The error object. + */ + deleteMethodWithHttpOperationResponse(resourceGroupName, accountName, options) { + let client = this.client; + let self = this; + return new Promise((resolve, reject) => { + self._deleteMethod(resourceGroupName, accountName, options, (err, result, request, response) => { + let httpOperationResponse = new msRest.HttpOperationResponse(request, response); + httpOperationResponse.body = result; + if (err) { reject(err); } + else { resolve(httpOperationResponse); } + return; + }); + }); + } + + /** + * Deletes the data policy rules associated with the specified storage account. + * + * @param {string} resourceGroupName The name of the resource group within the + * user's subscription. The name is case insensitive. + * + * @param {string} accountName The name of the storage account within the + * specified resource group. Storage account names must be between 3 and 24 + * characters in length and use numbers and lower-case letters only. + * + * @param {object} [options] Optional Parameters. + * + * @param {object} [options.customHeaders] Headers that will be added to the + * request + * + * @param {function} [optionalCallback] - The optional callback. + * + * @returns {function|Promise} If a callback was passed as the last parameter + * then it returns the callback else returns a Promise. + * + * {Promise} A promise is returned + * + * @resolve {null} - The deserialized result object. + * + * @reject {Error} - The error object. + * + * {function} optionalCallback(err, result, request, response) + * + * {Error} err - The Error object if an error occurred, null otherwise. + * + * {null} [result] - The deserialized result object if an error did not occur. + * + * {object} [request] - The HTTP Request object if an error did not occur. + * + * {stream} [response] - The HTTP Response stream if an error did not occur. + */ + deleteMethod(resourceGroupName, accountName, options, optionalCallback) { + let client = this.client; + let self = this; + if (!optionalCallback && typeof options === 'function') { + optionalCallback = options; + options = null; + } + if (!optionalCallback) { + return new Promise((resolve, reject) => { + self._deleteMethod(resourceGroupName, accountName, options, (err, result, request, response) => { + if (err) { reject(err); } + else { resolve(result); } + return; + }); + }); + } else { + return self._deleteMethod(resourceGroupName, accountName, options, optionalCallback); + } + } + +} + +module.exports = ManagementPolicies; diff --git a/lib/services/storageManagement2/lib/operations/operations.js b/lib/services/storageManagement2/lib/operations/operations.js index b88d253ec5..5c94afdf5d 100644 --- a/lib/services/storageManagement2/lib/operations/operations.js +++ b/lib/services/storageManagement2/lib/operations/operations.js @@ -45,17 +45,9 @@ function _list(options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { throw new Error('this.client.acceptLanguage must be of type string.'); } @@ -67,7 +59,7 @@ function _list(options, callback) { let baseUrl = this.client.baseUri; let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'providers/Microsoft.Storage/operations'; let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } diff --git a/lib/services/storageManagement2/lib/operations/skus.js b/lib/services/storageManagement2/lib/operations/skus.js index 3bc96c9d5c..921e4e3c16 100644 --- a/lib/services/storageManagement2/lib/operations/skus.js +++ b/lib/services/storageManagement2/lib/operations/skus.js @@ -46,17 +46,9 @@ function _list(options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -78,7 +70,7 @@ function _list(options, callback) { let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/providers/Microsoft.Storage/skus'; requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } diff --git a/lib/services/storageManagement2/lib/operations/storageAccounts.js b/lib/services/storageManagement2/lib/operations/storageAccounts.js index b50f9a056c..176c3f95b9 100644 --- a/lib/services/storageManagement2/lib/operations/storageAccounts.js +++ b/lib/services/storageManagement2/lib/operations/storageAccounts.js @@ -48,17 +48,9 @@ function _checkNameAvailability(name, options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -92,7 +84,7 @@ function _checkNameAvailability(name, options, callback) { let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/providers/Microsoft.Storage/checkNameAvailability'; requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -211,13 +203,15 @@ function _checkNameAvailability(name, options, callback) { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -299,6 +293,9 @@ function _checkNameAvailability(name, options, callback) { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -412,6 +409,7 @@ function _deleteMethod(resourceGroupName, accountName, options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -444,15 +442,6 @@ function _deleteMethod(resourceGroupName, accountName, options, callback) { throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -476,7 +465,7 @@ function _deleteMethod(resourceGroupName, accountName, options, callback) { requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -581,6 +570,7 @@ function _getProperties(resourceGroupName, accountName, options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -613,15 +603,6 @@ function _getProperties(resourceGroupName, accountName, options, callback) { throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -645,7 +626,7 @@ function _getProperties(resourceGroupName, accountName, options, callback) { requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -749,13 +730,14 @@ function _getProperties(resourceGroupName, accountName, options, callback) { * account. * * @param {object} [parameters.sku] Gets or sets the SKU name. Note that the - * SKU name cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts - * of those sku names be updated to any other value. + * SKU name cannot be updated to Standard_ZRS, Premium_LRS or Premium_ZRS, nor + * can accounts of those sku names be updated to any other value. * * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. @@ -816,6 +798,9 @@ function _getProperties(resourceGroupName, accountName, options, callback) { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -838,7 +823,8 @@ function _getProperties(resourceGroupName, accountName, options, callback) { * * @param {string} [parameters.kind] Optional. Indicates the type of storage * account. Currently only StorageV2 value supported by server. Possible values - * include: 'Storage', 'StorageV2', 'BlobStorage' + * include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * * @param {object} [options] Optional Parameters. * @@ -872,6 +858,7 @@ function _update(resourceGroupName, accountName, parameters, options, callback) { parameters = {}; } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -907,15 +894,6 @@ function _update(resourceGroupName, accountName, parameters, options, callback) if (parameters === null || parameters === undefined) { throw new Error('parameters cannot be null or undefined.'); } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -939,7 +917,7 @@ function _update(resourceGroupName, accountName, parameters, options, callback) requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1068,17 +1046,9 @@ function _list(options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1100,7 +1070,7 @@ function _list(options, callback) { let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/providers/Microsoft.Storage/storageAccounts'; requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1219,6 +1189,7 @@ function _listByResourceGroup(resourceGroupName, options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -1238,15 +1209,6 @@ function _listByResourceGroup(resourceGroupName, options, callback) { throw new Error('"resourceGroupName" should satisfy the constraint - "Pattern": /^[-\w\._\(\)]+$/'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1269,7 +1231,7 @@ function _listByResourceGroup(resourceGroupName, options, callback) { requestUrl = requestUrl.replace('{resourceGroupName}', encodeURIComponent(resourceGroupName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1390,6 +1352,7 @@ function _listKeys(resourceGroupName, accountName, options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -1422,15 +1385,6 @@ function _listKeys(resourceGroupName, accountName, options, callback) { throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1454,7 +1408,7 @@ function _listKeys(resourceGroupName, accountName, options, callback) { requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1578,6 +1532,7 @@ function _regenerateKey(resourceGroupName, accountName, keyName, options, callba if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -1610,15 +1565,6 @@ function _regenerateKey(resourceGroupName, accountName, keyName, options, callba throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1650,7 +1596,7 @@ function _regenerateKey(resourceGroupName, accountName, keyName, options, callba requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -1818,6 +1764,7 @@ function _listAccountSAS(resourceGroupName, accountName, parameters, options, ca if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -1853,15 +1800,6 @@ function _listAccountSAS(resourceGroupName, accountName, parameters, options, ca if (parameters === null || parameters === undefined) { throw new Error('parameters cannot be null or undefined.'); } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -1885,7 +1823,7 @@ function _listAccountSAS(resourceGroupName, accountName, parameters, options, ca requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -2077,6 +2015,7 @@ function _listServiceSAS(resourceGroupName, accountName, parameters, options, ca if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -2112,15 +2051,6 @@ function _listServiceSAS(resourceGroupName, accountName, parameters, options, ca if (parameters === null || parameters === undefined) { throw new Error('parameters cannot be null or undefined.'); } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -2144,7 +2074,7 @@ function _listServiceSAS(resourceGroupName, accountName, parameters, options, ca requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -2241,7 +2171,11 @@ function _listServiceSAS(resourceGroupName, accountName, parameters, options, ca } /** - * Gets the data policy rules associated with the specified storage account. + * Asynchronously creates a new storage account with the specified parameters. + * If an account is already created and a subsequent create request is issued + * with different properties, the account properties will be updated. If an + * account is already created and a subsequent create or update request is + * issued with the exact same set of properties, the request will succeed. * * @param {string} resourceGroupName The name of the resource group within the * user's subscription. The name is case insensitive. @@ -2250,6 +2184,113 @@ function _listServiceSAS(resourceGroupName, accountName, parameters, options, ca * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. * + * @param {object} parameters The parameters to provide for the created + * account. + * + * @param {object} parameters.sku Required. Gets or sets the sku name. + * + * @param {string} parameters.sku.name Gets or sets the sku name. Required for + * account creation; optional for update. Note that in older versions, sku name + * was called accountType. Possible values include: 'Standard_LRS', + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' + * + * @param {array} [parameters.sku.restrictions] The restrictions because of + * which SKU cannot be used. This is empty if there are no restrictions. + * + * @param {string} parameters.kind Required. Indicates the type of storage + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' + * + * @param {string} parameters.location Required. Gets or sets the location of + * the resource. This will be one of the supported and registered Azure Geo + * Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a + * resource cannot be changed once it is created, but if an identical geo + * region is specified on update, the request will succeed. + * + * @param {object} [parameters.tags] Gets or sets a list of key value pairs + * that describe the resource. These tags can be used for viewing and grouping + * this resource (across resource groups). A maximum of 15 tags can be provided + * for a resource. Each tag must have a key with a length no greater than 128 + * characters and a value with a length no greater than 256 characters. + * + * @param {object} [parameters.identity] The identity of the resource. + * + * @param {object} [parameters.customDomain] User domain assigned to the + * storage account. Name is the CNAME source. Only one custom domain is + * supported per storage account at this time. To clear the existing custom + * domain, use an empty string for the custom domain name property. + * + * @param {string} parameters.customDomain.name Gets or sets the custom domain + * name assigned to the storage account. Name is the CNAME source. + * + * @param {boolean} [parameters.customDomain.useSubDomain] Indicates whether + * indirect CName validation is enabled. Default value is false. This should + * only be set on updates. + * + * @param {object} [parameters.encryption] Provides the encryption settings on + * the account. If left unspecified the account encryption settings will remain + * the same. The default setting is unencrypted. + * + * @param {object} [parameters.encryption.services] List of services which + * support encryption. + * + * @param {object} [parameters.encryption.services.blob] The encryption + * function of the blob storage service. + * + * @param {object} [parameters.encryption.services.file] The encryption + * function of the file storage service. + * + * @param {boolean} [parameters.encryption.services.file.enabled] A boolean + * indicating whether or not the service encrypts the data as it is stored. + * + * @param {string} parameters.encryption.keySource The encryption keySource + * (provider). Possible values (case-insensitive): Microsoft.Storage, + * Microsoft.Keyvault. Possible values include: 'Microsoft.Storage', + * 'Microsoft.Keyvault' + * + * @param {object} [parameters.encryption.keyVaultProperties] Properties + * provided by key vault. + * + * @param {string} [parameters.encryption.keyVaultProperties.keyName] The name + * of KeyVault key. + * + * @param {string} [parameters.encryption.keyVaultProperties.keyVersion] The + * version of KeyVault key. + * + * @param {string} [parameters.encryption.keyVaultProperties.keyVaultUri] The + * Uri of KeyVault. + * + * @param {object} [parameters.networkRuleSet] Network rule set + * + * @param {string} [parameters.networkRuleSet.bypass] Specifies whether traffic + * is bypassed for Logging/Metrics/AzureServices. Possible values are any + * combination of Logging|Metrics|AzureServices (For example, "Logging, + * Metrics"), or None to bypass none of those traffics. Possible values + * include: 'None', 'Logging', 'Metrics', 'AzureServices' + * + * @param {array} [parameters.networkRuleSet.virtualNetworkRules] Sets the + * virtual network rules + * + * @param {array} [parameters.networkRuleSet.ipRules] Sets the IP ACL rules + * + * @param {string} parameters.networkRuleSet.defaultAction Specifies the + * default action of allow or deny when no other rules match. Possible values + * include: 'Allow', 'Deny' + * + * @param {string} [parameters.accessTier] Required for storage accounts where + * kind = BlobStorage. The access tier used for billing. Possible values + * include: 'Hot', 'Cool' + * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * + * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic + * only to storage service if sets to true. + * + * @param {boolean} [parameters.isHnsEnabled] Account HierarchicalNamespace + * enabled if sets to true. + * * @param {object} [options] Optional Parameters. * * @param {object} [options.customHeaders] Headers that will be added to the @@ -2262,14 +2303,13 @@ function _listServiceSAS(resourceGroupName, accountName, parameters, options, ca * {Error} err - The Error object if an error occurred, null otherwise. * * {object} [result] - The deserialized result object if an error did not occur. - * See {@link StorageAccountManagementPolicies} for more - * information. + * See {@link StorageAccount} for more information. * * {object} [request] - The HTTP Request object if an error did not occur. * * {stream} [response] - The HTTP Response stream if an error did not occur. */ -function _getManagementPolicies(resourceGroupName, accountName, options, callback) { +function _beginCreate(resourceGroupName, accountName, parameters, options, callback) { /* jshint validthis: true */ let client = this.client; if(!callback && typeof options === 'function') { @@ -2279,7 +2319,11 @@ function _getManagementPolicies(resourceGroupName, accountName, options, callbac if (!callback) { throw new Error('callback cannot be null.'); } - let managementPolicyName = 'default'; + if (parameters === null || parameters === undefined) + { + parameters = {}; + } + let apiVersion = '2018-07-01'; // Validate try { if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { @@ -2312,14 +2356,8 @@ function _getManagementPolicies(resourceGroupName, accountName, options, callbac throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); } } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } + if (parameters === null || parameters === undefined) { + throw new Error('parameters cannot be null or undefined.'); } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); @@ -2339,20 +2377,19 @@ function _getManagementPolicies(resourceGroupName, accountName, options, callbac // Construct URL let baseUrl = this.client.baseUri; - let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'; + let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}'; requestUrl = requestUrl.replace('{resourceGroupName}', encodeURIComponent(resourceGroupName)); requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); - requestUrl = requestUrl.replace('{managementPolicyName}', encodeURIComponent(managementPolicyName)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } // Create HTTP transport objects let httpRequest = new WebResource(); - httpRequest.method = 'GET'; + httpRequest.method = 'PUT'; httpRequest.url = requestUrl; httpRequest.headers = {}; // Set Headers @@ -2370,14 +2407,28 @@ function _getManagementPolicies(resourceGroupName, accountName, options, callbac } } } - httpRequest.body = null; + // Serialize Request + let requestContent = null; + let requestModel = null; + try { + if (parameters !== null && parameters !== undefined) { + let requestModelMapper = new client.models['StorageAccountCreateParameters']().mapper(); + requestModel = client.serialize(requestModelMapper, parameters, 'parameters'); + requestContent = JSON.stringify(requestModel); + } + } catch (error) { + let serializationError = new Error(`Error "${error.message}" occurred in serializing the ` + + `payload - ${JSON.stringify(parameters, null, 2)}.`); + return callback(serializationError); + } + httpRequest.body = requestContent; // Send Request return client.pipeline(httpRequest, (err, response, responseBody) => { if (err) { return callback(err); } let statusCode = response.statusCode; - if (statusCode !== 200) { + if (statusCode !== 200 && statusCode !== 202) { let error = new Error(responseBody); error.statusCode = response.statusCode; error.request = msRest.stripRequest(httpRequest); @@ -2412,7 +2463,7 @@ function _getManagementPolicies(resourceGroupName, accountName, options, callbac parsedResponse = JSON.parse(responseBody); result = JSON.parse(responseBody); if (parsedResponse !== null && parsedResponse !== undefined) { - let resultMapper = new client.models['StorageAccountManagementPolicies']().mapper(); + let resultMapper = new client.models['StorageAccount']().mapper(); result = client.deserialize(resultMapper, parsedResponse, 'result'); } } catch (error) { @@ -2427,722 +2478,26 @@ function _getManagementPolicies(resourceGroupName, accountName, options, callbac }); } -/** - * Sets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.policy] The Storage Account ManagementPolicies - * Rules, in JSON format. See more details in: - * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} callback - The callback. - * - * @returns {function} callback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {object} [result] - The deserialized result object if an error did not occur. - * See {@link StorageAccountManagementPolicies} for more - * information. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ -function _createOrUpdateManagementPolicies(resourceGroupName, accountName, options, callback) { - /* jshint validthis: true */ - let client = this.client; - if(!callback && typeof options === 'function') { - callback = options; - options = null; - } - if (!callback) { - throw new Error('callback cannot be null.'); - } - let policy = (options && options.policy !== undefined) ? options.policy : undefined; - let managementPolicyName = 'default'; - // Validate - try { - if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { - throw new Error('resourceGroupName cannot be null or undefined and it must be of type string.'); - } - if (resourceGroupName !== null && resourceGroupName !== undefined) { - if (resourceGroupName.length > 90) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "MaxLength": 90'); - } - if (resourceGroupName.length < 1) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "MinLength": 1'); - } - if (resourceGroupName.match(/^[-\w\._\(\)]+$/) === null) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "Pattern": /^[-\w\._\(\)]+$/'); - } - } - if (accountName === null || accountName === undefined || typeof accountName.valueOf() !== 'string') { - throw new Error('accountName cannot be null or undefined and it must be of type string.'); - } - if (accountName !== null && accountName !== undefined) { - if (accountName.length > 24) - { - throw new Error('"accountName" should satisfy the constraint - "MaxLength": 24'); - } - if (accountName.length < 3) - { - throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); - } - } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { - throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); - } - if (this.client.subscriptionId !== null && this.client.subscriptionId !== undefined) { - if (this.client.subscriptionId.length < 1) - { - throw new Error('"this.client.subscriptionId" should satisfy the constraint - "MinLength": 1'); - } - } - if (policy !== null && policy !== undefined && typeof policy !== 'object') { - throw new Error('policy must be of type object.'); - } - if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { - throw new Error('this.client.acceptLanguage must be of type string.'); - } - } catch (error) { - return callback(error); - } - let properties; - if (policy !== null && policy !== undefined) { - properties = new client.models['ManagementPoliciesRulesSetParameter'](); - properties.policy = policy; - } - - // Construct URL - let baseUrl = this.client.baseUri; - let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'; - requestUrl = requestUrl.replace('{resourceGroupName}', encodeURIComponent(resourceGroupName)); - requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); - requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); - requestUrl = requestUrl.replace('{managementPolicyName}', encodeURIComponent(managementPolicyName)); - let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); - if (queryParameters.length > 0) { - requestUrl += '?' + queryParameters.join('&'); - } - - // Create HTTP transport objects - let httpRequest = new WebResource(); - httpRequest.method = 'PUT'; - httpRequest.url = requestUrl; - httpRequest.headers = {}; - // Set Headers - httpRequest.headers['Content-Type'] = 'application/json; charset=utf-8'; - if (this.client.generateClientRequestId) { - httpRequest.headers['x-ms-client-request-id'] = msRestAzure.generateUuid(); - } - if (this.client.acceptLanguage !== undefined && this.client.acceptLanguage !== null) { - httpRequest.headers['accept-language'] = this.client.acceptLanguage; - } - if(options) { - for(let headerName in options['customHeaders']) { - if (options['customHeaders'].hasOwnProperty(headerName)) { - httpRequest.headers[headerName] = options['customHeaders'][headerName]; - } - } - } - // Serialize Request - let requestContent = null; - let requestModel = null; - try { - if (properties !== null && properties !== undefined) { - let requestModelMapper = new client.models['ManagementPoliciesRulesSetParameter']().mapper(); - requestModel = client.serialize(requestModelMapper, properties, 'properties'); - requestContent = JSON.stringify(requestModel); - } - } catch (error) { - let serializationError = new Error(`Error "${error.message}" occurred in serializing the ` + - `payload - ${JSON.stringify(properties, null, 2)}.`); - return callback(serializationError); - } - httpRequest.body = requestContent; - // Send Request - return client.pipeline(httpRequest, (err, response, responseBody) => { - if (err) { - return callback(err); - } - let statusCode = response.statusCode; - if (statusCode !== 200) { - let error = new Error(responseBody); - error.statusCode = response.statusCode; - error.request = msRest.stripRequest(httpRequest); - error.response = msRest.stripResponse(response); - if (responseBody === '') responseBody = null; - let parsedErrorResponse; - try { - parsedErrorResponse = JSON.parse(responseBody); - if (parsedErrorResponse) { - if (parsedErrorResponse.error) parsedErrorResponse = parsedErrorResponse.error; - if (parsedErrorResponse.code) error.code = parsedErrorResponse.code; - if (parsedErrorResponse.message) error.message = parsedErrorResponse.message; - } - if (parsedErrorResponse !== null && parsedErrorResponse !== undefined) { - let resultMapper = new client.models['CloudError']().mapper(); - error.body = client.deserialize(resultMapper, parsedErrorResponse, 'error.body'); - } - } catch (defaultError) { - error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody ` + - `- "${responseBody}" for the default response.`; - return callback(error); - } - return callback(error); - } - // Create Result - let result = null; - if (responseBody === '') responseBody = null; - // Deserialize Response - if (statusCode === 200) { - let parsedResponse = null; - try { - parsedResponse = JSON.parse(responseBody); - result = JSON.parse(responseBody); - if (parsedResponse !== null && parsedResponse !== undefined) { - let resultMapper = new client.models['StorageAccountManagementPolicies']().mapper(); - result = client.deserialize(resultMapper, parsedResponse, 'result'); - } - } catch (error) { - let deserializationError = new Error(`Error ${error} occurred in deserializing the responseBody - ${responseBody}`); - deserializationError.request = msRest.stripRequest(httpRequest); - deserializationError.response = msRest.stripResponse(response); - return callback(deserializationError); - } - } - - return callback(null, result, httpRequest, response); - }); -} - -/** - * Deletes the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} callback - The callback. - * - * @returns {function} callback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {null} [result] - The deserialized result object if an error did not occur. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ -function _deleteManagementPolicies(resourceGroupName, accountName, options, callback) { - /* jshint validthis: true */ - let client = this.client; - if(!callback && typeof options === 'function') { - callback = options; - options = null; - } - if (!callback) { - throw new Error('callback cannot be null.'); - } - let managementPolicyName = 'default'; - // Validate - try { - if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { - throw new Error('resourceGroupName cannot be null or undefined and it must be of type string.'); - } - if (resourceGroupName !== null && resourceGroupName !== undefined) { - if (resourceGroupName.length > 90) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "MaxLength": 90'); - } - if (resourceGroupName.length < 1) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "MinLength": 1'); - } - if (resourceGroupName.match(/^[-\w\._\(\)]+$/) === null) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "Pattern": /^[-\w\._\(\)]+$/'); - } - } - if (accountName === null || accountName === undefined || typeof accountName.valueOf() !== 'string') { - throw new Error('accountName cannot be null or undefined and it must be of type string.'); - } - if (accountName !== null && accountName !== undefined) { - if (accountName.length > 24) - { - throw new Error('"accountName" should satisfy the constraint - "MaxLength": 24'); - } - if (accountName.length < 3) - { - throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); - } - } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { - throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); - } - if (this.client.subscriptionId !== null && this.client.subscriptionId !== undefined) { - if (this.client.subscriptionId.length < 1) - { - throw new Error('"this.client.subscriptionId" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { - throw new Error('this.client.acceptLanguage must be of type string.'); - } - } catch (error) { - return callback(error); - } - - // Construct URL - let baseUrl = this.client.baseUri; - let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'; - requestUrl = requestUrl.replace('{resourceGroupName}', encodeURIComponent(resourceGroupName)); - requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); - requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); - requestUrl = requestUrl.replace('{managementPolicyName}', encodeURIComponent(managementPolicyName)); - let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); - if (queryParameters.length > 0) { - requestUrl += '?' + queryParameters.join('&'); - } - - // Create HTTP transport objects - let httpRequest = new WebResource(); - httpRequest.method = 'DELETE'; - httpRequest.url = requestUrl; - httpRequest.headers = {}; - // Set Headers - httpRequest.headers['Content-Type'] = 'application/json; charset=utf-8'; - if (this.client.generateClientRequestId) { - httpRequest.headers['x-ms-client-request-id'] = msRestAzure.generateUuid(); - } - if (this.client.acceptLanguage !== undefined && this.client.acceptLanguage !== null) { - httpRequest.headers['accept-language'] = this.client.acceptLanguage; - } - if(options) { - for(let headerName in options['customHeaders']) { - if (options['customHeaders'].hasOwnProperty(headerName)) { - httpRequest.headers[headerName] = options['customHeaders'][headerName]; - } - } - } - httpRequest.body = null; - // Send Request - return client.pipeline(httpRequest, (err, response, responseBody) => { - if (err) { - return callback(err); - } - let statusCode = response.statusCode; - if (statusCode !== 200 && statusCode !== 204) { - let error = new Error(responseBody); - error.statusCode = response.statusCode; - error.request = msRest.stripRequest(httpRequest); - error.response = msRest.stripResponse(response); - if (responseBody === '') responseBody = null; - let parsedErrorResponse; - try { - parsedErrorResponse = JSON.parse(responseBody); - if (parsedErrorResponse) { - if (parsedErrorResponse.error) parsedErrorResponse = parsedErrorResponse.error; - if (parsedErrorResponse.code) error.code = parsedErrorResponse.code; - if (parsedErrorResponse.message) error.message = parsedErrorResponse.message; - } - if (parsedErrorResponse !== null && parsedErrorResponse !== undefined) { - let resultMapper = new client.models['CloudError']().mapper(); - error.body = client.deserialize(resultMapper, parsedErrorResponse, 'error.body'); - } - } catch (defaultError) { - error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody ` + - `- "${responseBody}" for the default response.`; - return callback(error); - } - return callback(error); - } - // Create Result - let result = null; - if (responseBody === '') responseBody = null; - - return callback(null, result, httpRequest, response); - }); -} - -/** - * Asynchronously creates a new storage account with the specified parameters. - * If an account is already created and a subsequent create request is issued - * with different properties, the account properties will be updated. If an - * account is already created and a subsequent create or update request is - * issued with the exact same set of properties, the request will succeed. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} parameters The parameters to provide for the created - * account. - * - * @param {object} parameters.sku Required. Gets or sets the sku name. - * - * @param {string} parameters.sku.name Gets or sets the sku name. Required for - * account creation; optional for update. Note that in older versions, sku name - * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' - * - * @param {array} [parameters.sku.restrictions] The restrictions because of - * which SKU cannot be used. This is empty if there are no restrictions. - * - * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - * - * @param {string} parameters.location Required. Gets or sets the location of - * the resource. This will be one of the supported and registered Azure Geo - * Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a - * resource cannot be changed once it is created, but if an identical geo - * region is specified on update, the request will succeed. - * - * @param {object} [parameters.tags] Gets or sets a list of key value pairs - * that describe the resource. These tags can be used for viewing and grouping - * this resource (across resource groups). A maximum of 15 tags can be provided - * for a resource. Each tag must have a key with a length no greater than 128 - * characters and a value with a length no greater than 256 characters. - * - * @param {object} [parameters.identity] The identity of the resource. - * - * @param {object} [parameters.customDomain] User domain assigned to the - * storage account. Name is the CNAME source. Only one custom domain is - * supported per storage account at this time. To clear the existing custom - * domain, use an empty string for the custom domain name property. - * - * @param {string} parameters.customDomain.name Gets or sets the custom domain - * name assigned to the storage account. Name is the CNAME source. - * - * @param {boolean} [parameters.customDomain.useSubDomain] Indicates whether - * indirect CName validation is enabled. Default value is false. This should - * only be set on updates. - * - * @param {object} [parameters.encryption] Provides the encryption settings on - * the account. If left unspecified the account encryption settings will remain - * the same. The default setting is unencrypted. - * - * @param {object} [parameters.encryption.services] List of services which - * support encryption. - * - * @param {object} [parameters.encryption.services.blob] The encryption - * function of the blob storage service. - * - * @param {object} [parameters.encryption.services.file] The encryption - * function of the file storage service. - * - * @param {boolean} [parameters.encryption.services.file.enabled] A boolean - * indicating whether or not the service encrypts the data as it is stored. - * - * @param {string} parameters.encryption.keySource The encryption keySource - * (provider). Possible values (case-insensitive): Microsoft.Storage, - * Microsoft.Keyvault. Possible values include: 'Microsoft.Storage', - * 'Microsoft.Keyvault' - * - * @param {object} [parameters.encryption.keyVaultProperties] Properties - * provided by key vault. - * - * @param {string} [parameters.encryption.keyVaultProperties.keyName] The name - * of KeyVault key. - * - * @param {string} [parameters.encryption.keyVaultProperties.keyVersion] The - * version of KeyVault key. - * - * @param {string} [parameters.encryption.keyVaultProperties.keyVaultUri] The - * Uri of KeyVault. - * - * @param {object} [parameters.networkRuleSet] Network rule set - * - * @param {string} [parameters.networkRuleSet.bypass] Specifies whether traffic - * is bypassed for Logging/Metrics/AzureServices. Possible values are any - * combination of Logging|Metrics|AzureServices (For example, "Logging, - * Metrics"), or None to bypass none of those traffics. Possible values - * include: 'None', 'Logging', 'Metrics', 'AzureServices' - * - * @param {array} [parameters.networkRuleSet.virtualNetworkRules] Sets the - * virtual network rules - * - * @param {array} [parameters.networkRuleSet.ipRules] Sets the IP ACL rules - * - * @param {string} parameters.networkRuleSet.defaultAction Specifies the - * default action of allow or deny when no other rules match. Possible values - * include: 'Allow', 'Deny' - * - * @param {string} [parameters.accessTier] Required for storage accounts where - * kind = BlobStorage. The access tier used for billing. Possible values - * include: 'Hot', 'Cool' - * - * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic - * only to storage service if sets to true. - * - * @param {boolean} [parameters.isHnsEnabled] Account HierarchicalNamespace - * enabled if sets to true. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} callback - The callback. - * - * @returns {function} callback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {object} [result] - The deserialized result object if an error did not occur. - * See {@link StorageAccount} for more information. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ -function _beginCreate(resourceGroupName, accountName, parameters, options, callback) { - /* jshint validthis: true */ - let client = this.client; - if(!callback && typeof options === 'function') { - callback = options; - options = null; - } - if (!callback) { - throw new Error('callback cannot be null.'); - } - if (parameters === null || parameters === undefined) - { - parameters = {}; - } - // Validate - try { - if (resourceGroupName === null || resourceGroupName === undefined || typeof resourceGroupName.valueOf() !== 'string') { - throw new Error('resourceGroupName cannot be null or undefined and it must be of type string.'); - } - if (resourceGroupName !== null && resourceGroupName !== undefined) { - if (resourceGroupName.length > 90) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "MaxLength": 90'); - } - if (resourceGroupName.length < 1) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "MinLength": 1'); - } - if (resourceGroupName.match(/^[-\w\._\(\)]+$/) === null) - { - throw new Error('"resourceGroupName" should satisfy the constraint - "Pattern": /^[-\w\._\(\)]+$/'); - } - } - if (accountName === null || accountName === undefined || typeof accountName.valueOf() !== 'string') { - throw new Error('accountName cannot be null or undefined and it must be of type string.'); - } - if (accountName !== null && accountName !== undefined) { - if (accountName.length > 24) - { - throw new Error('"accountName" should satisfy the constraint - "MaxLength": 24'); - } - if (accountName.length < 3) - { - throw new Error('"accountName" should satisfy the constraint - "MinLength": 3'); - } - } - if (parameters === null || parameters === undefined) { - throw new Error('parameters cannot be null or undefined.'); - } - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { - throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); - } - if (this.client.subscriptionId !== null && this.client.subscriptionId !== undefined) { - if (this.client.subscriptionId.length < 1) - { - throw new Error('"this.client.subscriptionId" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { - throw new Error('this.client.acceptLanguage must be of type string.'); - } - } catch (error) { - return callback(error); - } - - // Construct URL - let baseUrl = this.client.baseUri; - let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}'; - requestUrl = requestUrl.replace('{resourceGroupName}', encodeURIComponent(resourceGroupName)); - requestUrl = requestUrl.replace('{accountName}', encodeURIComponent(accountName)); - requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); - let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); - if (queryParameters.length > 0) { - requestUrl += '?' + queryParameters.join('&'); - } - - // Create HTTP transport objects - let httpRequest = new WebResource(); - httpRequest.method = 'PUT'; - httpRequest.url = requestUrl; - httpRequest.headers = {}; - // Set Headers - httpRequest.headers['Content-Type'] = 'application/json; charset=utf-8'; - if (this.client.generateClientRequestId) { - httpRequest.headers['x-ms-client-request-id'] = msRestAzure.generateUuid(); - } - if (this.client.acceptLanguage !== undefined && this.client.acceptLanguage !== null) { - httpRequest.headers['accept-language'] = this.client.acceptLanguage; - } - if(options) { - for(let headerName in options['customHeaders']) { - if (options['customHeaders'].hasOwnProperty(headerName)) { - httpRequest.headers[headerName] = options['customHeaders'][headerName]; - } - } - } - // Serialize Request - let requestContent = null; - let requestModel = null; - try { - if (parameters !== null && parameters !== undefined) { - let requestModelMapper = new client.models['StorageAccountCreateParameters']().mapper(); - requestModel = client.serialize(requestModelMapper, parameters, 'parameters'); - requestContent = JSON.stringify(requestModel); - } - } catch (error) { - let serializationError = new Error(`Error "${error.message}" occurred in serializing the ` + - `payload - ${JSON.stringify(parameters, null, 2)}.`); - return callback(serializationError); - } - httpRequest.body = requestContent; - // Send Request - return client.pipeline(httpRequest, (err, response, responseBody) => { - if (err) { - return callback(err); - } - let statusCode = response.statusCode; - if (statusCode !== 200 && statusCode !== 202) { - let error = new Error(responseBody); - error.statusCode = response.statusCode; - error.request = msRest.stripRequest(httpRequest); - error.response = msRest.stripResponse(response); - if (responseBody === '') responseBody = null; - let parsedErrorResponse; - try { - parsedErrorResponse = JSON.parse(responseBody); - if (parsedErrorResponse) { - if (parsedErrorResponse.error) parsedErrorResponse = parsedErrorResponse.error; - if (parsedErrorResponse.code) error.code = parsedErrorResponse.code; - if (parsedErrorResponse.message) error.message = parsedErrorResponse.message; - } - if (parsedErrorResponse !== null && parsedErrorResponse !== undefined) { - let resultMapper = new client.models['CloudError']().mapper(); - error.body = client.deserialize(resultMapper, parsedErrorResponse, 'error.body'); - } - } catch (defaultError) { - error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody ` + - `- "${responseBody}" for the default response.`; - return callback(error); - } - return callback(error); - } - // Create Result - let result = null; - if (responseBody === '') responseBody = null; - // Deserialize Response - if (statusCode === 200) { - let parsedResponse = null; - try { - parsedResponse = JSON.parse(responseBody); - result = JSON.parse(responseBody); - if (parsedResponse !== null && parsedResponse !== undefined) { - let resultMapper = new client.models['StorageAccount']().mapper(); - result = client.deserialize(resultMapper, parsedResponse, 'result'); - } - } catch (error) { - let deserializationError = new Error(`Error ${error} occurred in deserializing the responseBody - ${responseBody}`); - deserializationError.request = msRest.stripRequest(httpRequest); - deserializationError.response = msRest.stripResponse(response); - return callback(deserializationError); - } - } - - return callback(null, result, httpRequest, response); - }); -} - -/** Class representing a StorageAccounts. */ -class StorageAccounts { - /** - * Create a StorageAccounts. - * @param {StorageManagementClient} client Reference to the service client. - */ - constructor(client) { - this.client = client; - this._checkNameAvailability = _checkNameAvailability; - this._create = _create; - this._deleteMethod = _deleteMethod; - this._getProperties = _getProperties; - this._update = _update; - this._list = _list; - this._listByResourceGroup = _listByResourceGroup; - this._listKeys = _listKeys; - this._regenerateKey = _regenerateKey; - this._listAccountSAS = _listAccountSAS; - this._listServiceSAS = _listServiceSAS; - this._getManagementPolicies = _getManagementPolicies; - this._createOrUpdateManagementPolicies = _createOrUpdateManagementPolicies; - this._deleteManagementPolicies = _deleteManagementPolicies; - this._beginCreate = _beginCreate; +/** Class representing a StorageAccounts. */ +class StorageAccounts { + /** + * Create a StorageAccounts. + * @param {StorageManagementClient} client Reference to the service client. + */ + constructor(client) { + this.client = client; + this._checkNameAvailability = _checkNameAvailability; + this._create = _create; + this._deleteMethod = _deleteMethod; + this._getProperties = _getProperties; + this._update = _update; + this._list = _list; + this._listByResourceGroup = _listByResourceGroup; + this._listKeys = _listKeys; + this._regenerateKey = _regenerateKey; + this._listAccountSAS = _listAccountSAS; + this._listServiceSAS = _listServiceSAS; + this._beginCreate = _beginCreate; } /** @@ -3250,13 +2605,15 @@ class StorageAccounts { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -3338,6 +2695,9 @@ class StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -3391,13 +2751,15 @@ class StorageAccounts { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -3479,6 +2841,9 @@ class StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -3741,13 +3106,14 @@ class StorageAccounts { * account. * * @param {object} [parameters.sku] Gets or sets the SKU name. Note that the - * SKU name cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts - * of those sku names be updated to any other value. + * SKU name cannot be updated to Standard_ZRS, Premium_LRS or Premium_ZRS, nor + * can accounts of those sku names be updated to any other value. * * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. @@ -3808,6 +3174,9 @@ class StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -3830,7 +3199,8 @@ class StorageAccounts { * * @param {string} [parameters.kind] Optional. Indicates the type of storage * account. Currently only StorageV2 value supported by server. Possible values - * include: 'Storage', 'StorageV2', 'BlobStorage' + * include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * * @param {object} [options] Optional Parameters. * @@ -3879,13 +3249,14 @@ class StorageAccounts { * account. * * @param {object} [parameters.sku] Gets or sets the SKU name. Note that the - * SKU name cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts - * of those sku names be updated to any other value. + * SKU name cannot be updated to Standard_ZRS, Premium_LRS or Premium_ZRS, nor + * can accounts of those sku names be updated to any other value. * * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. @@ -3946,6 +3317,9 @@ class StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -3968,7 +3342,8 @@ class StorageAccounts { * * @param {string} [parameters.kind] Optional. Indicates the type of storage * account. Currently only StorageV2 value supported by server. Possible values - * include: 'Storage', 'StorageV2', 'BlobStorage' + * include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', + * 'BlockBlobStorage' * * @param {object} [options] Optional Parameters. * @@ -4745,291 +4120,6 @@ class StorageAccounts { } } - /** - * Gets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error} - The error object. - */ - getManagementPoliciesWithHttpOperationResponse(resourceGroupName, accountName, options) { - let client = this.client; - let self = this; - return new Promise((resolve, reject) => { - self._getManagementPolicies(resourceGroupName, accountName, options, (err, result, request, response) => { - let httpOperationResponse = new msRest.HttpOperationResponse(request, response); - httpOperationResponse.body = result; - if (err) { reject(err); } - else { resolve(httpOperationResponse); } - return; - }); - }); - } - - /** - * Gets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} [optionalCallback] - The optional callback. - * - * @returns {function|Promise} If a callback was passed as the last parameter - * then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned - * - * @resolve {StorageAccountManagementPolicies} - The deserialized result object. - * - * @reject {Error} - The error object. - * - * {function} optionalCallback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {object} [result] - The deserialized result object if an error did not occur. - * See {@link StorageAccountManagementPolicies} for more - * information. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ - getManagementPolicies(resourceGroupName, accountName, options, optionalCallback) { - let client = this.client; - let self = this; - if (!optionalCallback && typeof options === 'function') { - optionalCallback = options; - options = null; - } - if (!optionalCallback) { - return new Promise((resolve, reject) => { - self._getManagementPolicies(resourceGroupName, accountName, options, (err, result, request, response) => { - if (err) { reject(err); } - else { resolve(result); } - return; - }); - }); - } else { - return self._getManagementPolicies(resourceGroupName, accountName, options, optionalCallback); - } - } - - /** - * Sets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.policy] The Storage Account ManagementPolicies - * Rules, in JSON format. See more details in: - * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error} - The error object. - */ - createOrUpdateManagementPoliciesWithHttpOperationResponse(resourceGroupName, accountName, options) { - let client = this.client; - let self = this; - return new Promise((resolve, reject) => { - self._createOrUpdateManagementPolicies(resourceGroupName, accountName, options, (err, result, request, response) => { - let httpOperationResponse = new msRest.HttpOperationResponse(request, response); - httpOperationResponse.body = result; - if (err) { reject(err); } - else { resolve(httpOperationResponse); } - return; - }); - }); - } - - /** - * Sets the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.policy] The Storage Account ManagementPolicies - * Rules, in JSON format. See more details in: - * https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} [optionalCallback] - The optional callback. - * - * @returns {function|Promise} If a callback was passed as the last parameter - * then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned - * - * @resolve {StorageAccountManagementPolicies} - The deserialized result object. - * - * @reject {Error} - The error object. - * - * {function} optionalCallback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {object} [result] - The deserialized result object if an error did not occur. - * See {@link StorageAccountManagementPolicies} for more - * information. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ - createOrUpdateManagementPolicies(resourceGroupName, accountName, options, optionalCallback) { - let client = this.client; - let self = this; - if (!optionalCallback && typeof options === 'function') { - optionalCallback = options; - options = null; - } - if (!optionalCallback) { - return new Promise((resolve, reject) => { - self._createOrUpdateManagementPolicies(resourceGroupName, accountName, options, (err, result, request, response) => { - if (err) { reject(err); } - else { resolve(result); } - return; - }); - }); - } else { - return self._createOrUpdateManagementPolicies(resourceGroupName, accountName, options, optionalCallback); - } - } - - /** - * Deletes the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error} - The error object. - */ - deleteManagementPoliciesWithHttpOperationResponse(resourceGroupName, accountName, options) { - let client = this.client; - let self = this; - return new Promise((resolve, reject) => { - self._deleteManagementPolicies(resourceGroupName, accountName, options, (err, result, request, response) => { - let httpOperationResponse = new msRest.HttpOperationResponse(request, response); - httpOperationResponse.body = result; - if (err) { reject(err); } - else { resolve(httpOperationResponse); } - return; - }); - }); - } - - /** - * Deletes the data policy rules associated with the specified storage account. - * - * @param {string} resourceGroupName The name of the resource group within the - * user's subscription. The name is case insensitive. - * - * @param {string} accountName The name of the storage account within the - * specified resource group. Storage account names must be between 3 and 24 - * characters in length and use numbers and lower-case letters only. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} [optionalCallback] - The optional callback. - * - * @returns {function|Promise} If a callback was passed as the last parameter - * then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned - * - * @resolve {null} - The deserialized result object. - * - * @reject {Error} - The error object. - * - * {function} optionalCallback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {null} [result] - The deserialized result object if an error did not occur. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ - deleteManagementPolicies(resourceGroupName, accountName, options, optionalCallback) { - let client = this.client; - let self = this; - if (!optionalCallback && typeof options === 'function') { - optionalCallback = options; - options = null; - } - if (!optionalCallback) { - return new Promise((resolve, reject) => { - self._deleteManagementPolicies(resourceGroupName, accountName, options, (err, result, request, response) => { - if (err) { reject(err); } - else { resolve(result); } - return; - }); - }); - } else { - return self._deleteManagementPolicies(resourceGroupName, accountName, options, optionalCallback); - } - } - /** * Asynchronously creates a new storage account with the specified parameters. * If an account is already created and a subsequent create request is issued @@ -5052,13 +4142,15 @@ class StorageAccounts { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -5140,6 +4232,9 @@ class StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * @@ -5193,13 +4288,15 @@ class StorageAccounts { * @param {string} parameters.sku.name Gets or sets the sku name. Required for * account creation; optional for update. Note that in older versions, sku name * was called accountType. Possible values include: 'Standard_LRS', - * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' + * 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', + * 'Premium_ZRS' * * @param {array} [parameters.sku.restrictions] The restrictions because of * which SKU cannot be used. This is empty if there are no restrictions. * * @param {string} parameters.kind Required. Indicates the type of storage - * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' + * account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', + * 'FileStorage', 'BlockBlobStorage' * * @param {string} parameters.location Required. Gets or sets the location of * the resource. This will be one of the supported and registered Azure Geo @@ -5281,6 +4378,9 @@ class StorageAccounts { * kind = BlobStorage. The access tier used for billing. Possible values * include: 'Hot', 'Cool' * + * @param {boolean} [parameters.enableAzureFilesAadIntegration] Enables Azure + * Files AAD Integration for SMB if sets to true. + * * @param {boolean} [parameters.enableHttpsTrafficOnly] Allows https traffic * only to storage service if sets to true. * diff --git a/lib/services/storageManagement2/lib/operations/usageOperations.js b/lib/services/storageManagement2/lib/operations/usageOperations.js index 093a239cdd..ae8dda5de5 100644 --- a/lib/services/storageManagement2/lib/operations/usageOperations.js +++ b/lib/services/storageManagement2/lib/operations/usageOperations.js @@ -14,152 +14,6 @@ const msRest = require('ms-rest'); const msRestAzure = require('ms-rest-azure'); const WebResource = msRest.WebResource; -/** - * Gets the current usage count and the limit for the resources under the - * subscription. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} callback - The callback. - * - * @returns {function} callback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {object} [result] - The deserialized result object if an error did not occur. - * See {@link UsageListResult} for more information. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ -function _list(options, callback) { - /* jshint validthis: true */ - let client = this.client; - if(!callback && typeof options === 'function') { - callback = options; - options = null; - } - if (!callback) { - throw new Error('callback cannot be null.'); - } - // Validate - try { - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { - throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); - } - if (this.client.subscriptionId !== null && this.client.subscriptionId !== undefined) { - if (this.client.subscriptionId.length < 1) - { - throw new Error('"this.client.subscriptionId" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { - throw new Error('this.client.acceptLanguage must be of type string.'); - } - } catch (error) { - return callback(error); - } - - // Construct URL - let baseUrl = this.client.baseUri; - let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/providers/Microsoft.Storage/usages'; - requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); - let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); - if (queryParameters.length > 0) { - requestUrl += '?' + queryParameters.join('&'); - } - - // Create HTTP transport objects - let httpRequest = new WebResource(); - httpRequest.method = 'GET'; - httpRequest.url = requestUrl; - httpRequest.headers = {}; - // Set Headers - httpRequest.headers['Content-Type'] = 'application/json; charset=utf-8'; - if (this.client.generateClientRequestId) { - httpRequest.headers['x-ms-client-request-id'] = msRestAzure.generateUuid(); - } - if (this.client.acceptLanguage !== undefined && this.client.acceptLanguage !== null) { - httpRequest.headers['accept-language'] = this.client.acceptLanguage; - } - if(options) { - for(let headerName in options['customHeaders']) { - if (options['customHeaders'].hasOwnProperty(headerName)) { - httpRequest.headers[headerName] = options['customHeaders'][headerName]; - } - } - } - httpRequest.body = null; - // Send Request - return client.pipeline(httpRequest, (err, response, responseBody) => { - if (err) { - return callback(err); - } - let statusCode = response.statusCode; - if (statusCode !== 200) { - let error = new Error(responseBody); - error.statusCode = response.statusCode; - error.request = msRest.stripRequest(httpRequest); - error.response = msRest.stripResponse(response); - if (responseBody === '') responseBody = null; - let parsedErrorResponse; - try { - parsedErrorResponse = JSON.parse(responseBody); - if (parsedErrorResponse) { - if (parsedErrorResponse.error) parsedErrorResponse = parsedErrorResponse.error; - if (parsedErrorResponse.code) error.code = parsedErrorResponse.code; - if (parsedErrorResponse.message) error.message = parsedErrorResponse.message; - } - if (parsedErrorResponse !== null && parsedErrorResponse !== undefined) { - let resultMapper = new client.models['CloudError']().mapper(); - error.body = client.deserialize(resultMapper, parsedErrorResponse, 'error.body'); - } - } catch (defaultError) { - error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody ` + - `- "${responseBody}" for the default response.`; - return callback(error); - } - return callback(error); - } - // Create Result - let result = null; - if (responseBody === '') responseBody = null; - // Deserialize Response - if (statusCode === 200) { - let parsedResponse = null; - try { - parsedResponse = JSON.parse(responseBody); - result = JSON.parse(responseBody); - if (parsedResponse !== null && parsedResponse !== undefined) { - let resultMapper = new client.models['UsageListResult']().mapper(); - result = client.deserialize(resultMapper, parsedResponse, 'result'); - } - } catch (error) { - let deserializationError = new Error(`Error ${error} occurred in deserializing the responseBody - ${responseBody}`); - deserializationError.request = msRest.stripRequest(httpRequest); - deserializationError.response = msRest.stripResponse(response); - return callback(deserializationError); - } - } - - return callback(null, result, httpRequest, response); - }); -} - /** * Gets the current usage count and the limit for the resources of the location * under the subscription. @@ -320,90 +174,9 @@ class UsageOperations { */ constructor(client) { this.client = client; - this._list = _list; this._listByLocation = _listByLocation; } - /** - * Gets the current usage count and the limit for the resources under the - * subscription. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error} - The error object. - */ - listWithHttpOperationResponse(options) { - let client = this.client; - let self = this; - return new Promise((resolve, reject) => { - self._list(options, (err, result, request, response) => { - let httpOperationResponse = new msRest.HttpOperationResponse(request, response); - httpOperationResponse.body = result; - if (err) { reject(err); } - else { resolve(httpOperationResponse); } - return; - }); - }); - } - - /** - * Gets the current usage count and the limit for the resources under the - * subscription. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} [optionalCallback] - The optional callback. - * - * @returns {function|Promise} If a callback was passed as the last parameter - * then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned - * - * @resolve {UsageListResult} - The deserialized result object. - * - * @reject {Error} - The error object. - * - * {function} optionalCallback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {object} [result] - The deserialized result object if an error did not occur. - * See {@link UsageListResult} for more information. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ - list(options, optionalCallback) { - let client = this.client; - let self = this; - if (!optionalCallback && typeof options === 'function') { - optionalCallback = options; - options = null; - } - if (!optionalCallback) { - return new Promise((resolve, reject) => { - self._list(options, (err, result, request, response) => { - if (err) { reject(err); } - else { resolve(result); } - return; - }); - }); - } else { - return self._list(options, optionalCallback); - } - } - /** * Gets the current usage count and the limit for the resources of the location * under the subscription. diff --git a/lib/services/storageManagement2/lib/operations/usages.js b/lib/services/storageManagement2/lib/operations/usages.js index 8d3e0ea7d0..ff9e10f11f 100644 --- a/lib/services/storageManagement2/lib/operations/usages.js +++ b/lib/services/storageManagement2/lib/operations/usages.js @@ -14,152 +14,6 @@ const msRest = require('ms-rest'); const msRestAzure = require('ms-rest-azure'); const WebResource = msRest.WebResource; -/** - * Gets the current usage count and the limit for the resources under the - * subscription. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} callback - The callback. - * - * @returns {function} callback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {object} [result] - The deserialized result object if an error did not occur. - * See {@link UsageListResult} for more information. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ -function _list(options, callback) { - /* jshint validthis: true */ - let client = this.client; - if(!callback && typeof options === 'function') { - callback = options; - options = null; - } - if (!callback) { - throw new Error('callback cannot be null.'); - } - // Validate - try { - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { - throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); - } - if (this.client.subscriptionId !== null && this.client.subscriptionId !== undefined) { - if (this.client.subscriptionId.length < 1) - { - throw new Error('"this.client.subscriptionId" should satisfy the constraint - "MinLength": 1'); - } - } - if (this.client.acceptLanguage !== null && this.client.acceptLanguage !== undefined && typeof this.client.acceptLanguage.valueOf() !== 'string') { - throw new Error('this.client.acceptLanguage must be of type string.'); - } - } catch (error) { - return callback(error); - } - - // Construct URL - let baseUrl = this.client.baseUri; - let requestUrl = baseUrl + (baseUrl.endsWith('/') ? '' : '/') + 'subscriptions/{subscriptionId}/providers/Microsoft.Storage/usages'; - requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); - let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); - if (queryParameters.length > 0) { - requestUrl += '?' + queryParameters.join('&'); - } - - // Create HTTP transport objects - let httpRequest = new WebResource(); - httpRequest.method = 'GET'; - httpRequest.url = requestUrl; - httpRequest.headers = {}; - // Set Headers - httpRequest.headers['Content-Type'] = 'application/json; charset=utf-8'; - if (this.client.generateClientRequestId) { - httpRequest.headers['x-ms-client-request-id'] = msRestAzure.generateUuid(); - } - if (this.client.acceptLanguage !== undefined && this.client.acceptLanguage !== null) { - httpRequest.headers['accept-language'] = this.client.acceptLanguage; - } - if(options) { - for(let headerName in options['customHeaders']) { - if (options['customHeaders'].hasOwnProperty(headerName)) { - httpRequest.headers[headerName] = options['customHeaders'][headerName]; - } - } - } - httpRequest.body = null; - // Send Request - return client.pipeline(httpRequest, (err, response, responseBody) => { - if (err) { - return callback(err); - } - let statusCode = response.statusCode; - if (statusCode !== 200) { - let error = new Error(responseBody); - error.statusCode = response.statusCode; - error.request = msRest.stripRequest(httpRequest); - error.response = msRest.stripResponse(response); - if (responseBody === '') responseBody = null; - let parsedErrorResponse; - try { - parsedErrorResponse = JSON.parse(responseBody); - if (parsedErrorResponse) { - if (parsedErrorResponse.error) parsedErrorResponse = parsedErrorResponse.error; - if (parsedErrorResponse.code) error.code = parsedErrorResponse.code; - if (parsedErrorResponse.message) error.message = parsedErrorResponse.message; - } - if (parsedErrorResponse !== null && parsedErrorResponse !== undefined) { - let resultMapper = new client.models['CloudError']().mapper(); - error.body = client.deserialize(resultMapper, parsedErrorResponse, 'error.body'); - } - } catch (defaultError) { - error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody ` + - `- "${responseBody}" for the default response.`; - return callback(error); - } - return callback(error); - } - // Create Result - let result = null; - if (responseBody === '') responseBody = null; - // Deserialize Response - if (statusCode === 200) { - let parsedResponse = null; - try { - parsedResponse = JSON.parse(responseBody); - result = JSON.parse(responseBody); - if (parsedResponse !== null && parsedResponse !== undefined) { - let resultMapper = new client.models['UsageListResult']().mapper(); - result = client.deserialize(resultMapper, parsedResponse, 'result'); - } - } catch (error) { - let deserializationError = new Error(`Error ${error} occurred in deserializing the responseBody - ${responseBody}`); - deserializationError.request = msRest.stripRequest(httpRequest); - deserializationError.response = msRest.stripResponse(response); - return callback(deserializationError); - } - } - - return callback(null, result, httpRequest, response); - }); -} - /** * Gets the current usage count and the limit for the resources of the location * under the subscription. @@ -194,17 +48,9 @@ function _listByLocation(location, options, callback) { if (!callback) { throw new Error('callback cannot be null.'); } + let apiVersion = '2018-07-01'; // Validate try { - if (this.client.apiVersion === null || this.client.apiVersion === undefined || typeof this.client.apiVersion.valueOf() !== 'string') { - throw new Error('this.client.apiVersion cannot be null or undefined and it must be of type string.'); - } - if (this.client.apiVersion !== null && this.client.apiVersion !== undefined) { - if (this.client.apiVersion.length < 1) - { - throw new Error('"this.client.apiVersion" should satisfy the constraint - "MinLength": 1'); - } - } if (this.client.subscriptionId === null || this.client.subscriptionId === undefined || typeof this.client.subscriptionId.valueOf() !== 'string') { throw new Error('this.client.subscriptionId cannot be null or undefined and it must be of type string.'); } @@ -230,7 +76,7 @@ function _listByLocation(location, options, callback) { requestUrl = requestUrl.replace('{subscriptionId}', encodeURIComponent(this.client.subscriptionId)); requestUrl = requestUrl.replace('{location}', encodeURIComponent(location)); let queryParameters = []; - queryParameters.push('api-version=' + encodeURIComponent(this.client.apiVersion)); + queryParameters.push('api-version=' + encodeURIComponent(apiVersion)); if (queryParameters.length > 0) { requestUrl += '?' + queryParameters.join('&'); } @@ -320,90 +166,9 @@ class Usages { */ constructor(client) { this.client = client; - this._list = _list; this._listByLocation = _listByLocation; } - /** - * Gets the current usage count and the limit for the resources under the - * subscription. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @returns {Promise} A promise is returned - * - * @resolve {HttpOperationResponse} - The deserialized result object. - * - * @reject {Error} - The error object. - */ - listWithHttpOperationResponse(options) { - let client = this.client; - let self = this; - return new Promise((resolve, reject) => { - self._list(options, (err, result, request, response) => { - let httpOperationResponse = new msRest.HttpOperationResponse(request, response); - httpOperationResponse.body = result; - if (err) { reject(err); } - else { resolve(httpOperationResponse); } - return; - }); - }); - } - - /** - * Gets the current usage count and the limit for the resources under the - * subscription. - * - * @param {object} [options] Optional Parameters. - * - * @param {object} [options.customHeaders] Headers that will be added to the - * request - * - * @param {function} [optionalCallback] - The optional callback. - * - * @returns {function|Promise} If a callback was passed as the last parameter - * then it returns the callback else returns a Promise. - * - * {Promise} A promise is returned - * - * @resolve {UsageListResult} - The deserialized result object. - * - * @reject {Error} - The error object. - * - * {function} optionalCallback(err, result, request, response) - * - * {Error} err - The Error object if an error occurred, null otherwise. - * - * {object} [result] - The deserialized result object if an error did not occur. - * See {@link UsageListResult} for more information. - * - * {object} [request] - The HTTP Request object if an error did not occur. - * - * {stream} [response] - The HTTP Response stream if an error did not occur. - */ - list(options, optionalCallback) { - let client = this.client; - let self = this; - if (!optionalCallback && typeof options === 'function') { - optionalCallback = options; - options = null; - } - if (!optionalCallback) { - return new Promise((resolve, reject) => { - self._list(options, (err, result, request, response) => { - if (err) { reject(err); } - else { resolve(result); } - return; - }); - }); - } else { - return self._list(options, optionalCallback); - } - } - /** * Gets the current usage count and the limit for the resources of the location * under the subscription. diff --git a/lib/services/storageManagement2/lib/storageManagementClient.d.ts b/lib/services/storageManagement2/lib/storageManagementClient.d.ts index 3d12a541e2..d8ea060b72 100644 --- a/lib/services/storageManagement2/lib/storageManagementClient.d.ts +++ b/lib/services/storageManagement2/lib/storageManagementClient.d.ts @@ -47,8 +47,6 @@ export default class StorageManagementClient extends AzureServiceClient { subscriptionId: string; - apiVersion: string; - acceptLanguage: string; longRunningOperationRetryTimeout: number; @@ -61,6 +59,7 @@ export default class StorageManagementClient extends AzureServiceClient { storageAccounts: operations.StorageAccounts; usages: operations.Usages; blobContainers: operations.BlobContainers; + managementPolicies: operations.ManagementPolicies; } export { StorageManagementClient, models as StorageManagementModels }; diff --git a/lib/services/storageManagement2/lib/storageManagementClient.js b/lib/services/storageManagement2/lib/storageManagementClient.js index 9a3fda0a16..9529d5b9c2 100644 --- a/lib/services/storageManagement2/lib/storageManagementClient.js +++ b/lib/services/storageManagement2/lib/storageManagementClient.js @@ -50,7 +50,6 @@ class StorageManagementClient extends ServiceClient { super(credentials, options); - this.apiVersion = '2018-03-01-preview'; this.acceptLanguage = 'en-US'; this.longRunningOperationRetryTimeout = 30; this.generateClientRequestId = true; @@ -77,6 +76,7 @@ class StorageManagementClient extends ServiceClient { this.storageAccounts = new operations.StorageAccounts(this); this.usages = new operations.Usages(this); this.blobContainers = new operations.BlobContainers(this); + this.managementPolicies = new operations.ManagementPolicies(this); this.models = models; msRest.addSerializationMixin(this); } diff --git a/lib/services/storageManagement2/package.json b/lib/services/storageManagement2/package.json index dfd0def4d6..9e8aecb03d 100644 --- a/lib/services/storageManagement2/package.json +++ b/lib/services/storageManagement2/package.json @@ -2,7 +2,7 @@ "name": "azure-arm-storage", "author": "Microsoft Corporation", "description": "StorageManagementClient Library with typescript type definitions for node", - "version": "5.2.0", + "version": "6.0.0", "dependencies": { "ms-rest": "^2.3.3", "ms-rest-azure": "^2.5.5" diff --git a/test/recordings/datalakeAnalyticsManagement-tests/Data_Lake_Analytics_Clients_Account_Job_and_Catalog_Data_Lake_Analytics_Account_adding_and_removing_blob_storage_accounts_to_the_account_should_work.nock.js b/test/recordings/datalakeAnalyticsManagement-tests/Data_Lake_Analytics_Clients_Account_Job_and_Catalog_Data_Lake_Analytics_Account_adding_and_removing_blob_storage_accounts_to_the_account_should_work.nock.js index 7fed8f7109..4ce909f55a 100644 --- a/test/recordings/datalakeAnalyticsManagement-tests/Data_Lake_Analytics_Clients_Account_Job_and_Catalog_Data_Lake_Analytics_Account_adding_and_removing_blob_storage_accounts_to_the_account_should_work.nock.js +++ b/test/recordings/datalakeAnalyticsManagement-tests/Data_Lake_Analytics_Clients_Account_Job_and_Catalog_Data_Lake_Analytics_Account_adding_and_removing_blob_storage_accounts_to_the_account_should_work.nock.js @@ -9,7 +9,7 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattestadlarg05/providers/Microsoft.Storage/storageAccounts/xplattestadls2028/listKeys?api-version=2018-03-01-preview') + .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattestadlarg05/providers/Microsoft.Storage/storageAccounts/xplattestadls2028/listKeys?api-version=2018-07-01') .reply(200, "{\"keys\":[{\"keyName\":\"key1\",\"permissions\":\"Full\",\"value\":\"4WAzFpE/4uyA7bfXAffhAebyePQrNHchBxJY+fKIo8OvEj8wCBboBP2KQBDkoPiae96/RTGB7nhgQoNCGLa5YQ==\"},{\"keyName\":\"key2\",\"permissions\":\"Full\",\"value\":\"Gywy0lBILHByV9I3io/SvixzcxSIpL/BMSjqybITGElur2nHck4YreHRw48FVIMv+UZHDbf9BnbsdNDFA//BGA==\"}]}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '289', @@ -27,7 +27,7 @@ nock('http://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattestadlarg05/providers/Microsoft.Storage/storageAccounts/xplattestadls2028/listKeys?api-version=2018-03-01-preview') + .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattestadlarg05/providers/Microsoft.Storage/storageAccounts/xplattestadls2028/listKeys?api-version=2018-07-01') .reply(200, "{\"keys\":[{\"keyName\":\"key1\",\"permissions\":\"Full\",\"value\":\"4WAzFpE/4uyA7bfXAffhAebyePQrNHchBxJY+fKIo8OvEj8wCBboBP2KQBDkoPiae96/RTGB7nhgQoNCGLa5YQ==\"},{\"keyName\":\"key2\",\"permissions\":\"Full\",\"value\":\"Gywy0lBILHByV9I3io/SvixzcxSIpL/BMSjqybITGElur2nHck4YreHRw48FVIMv+UZHDbf9BnbsdNDFA//BGA==\"}]}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '289', diff --git a/test/recordings/keyvaultstorage-tests/Key_Vault_Storage_should_successfully_assign_Key_Vault_the_operator_role_on_a_storage_account.nock.js b/test/recordings/keyvaultstorage-tests/Key_Vault_Storage_should_successfully_assign_Key_Vault_the_operator_role_on_a_storage_account.nock.js index 064ba1cd97..0d22c8d4d3 100644 --- a/test/recordings/keyvaultstorage-tests/Key_Vault_Storage_should_successfully_assign_Key_Vault_the_operator_role_on_a_storage_account.nock.js +++ b/test/recordings/keyvaultstorage-tests/Key_Vault_Storage_should_successfully_assign_Key_Vault_the_operator_role_on_a_storage_account.nock.js @@ -73,12 +73,12 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/nodeTestGroup8988/providers/Microsoft.Storage/storageAccounts/testakvsa725?api-version=2018-03-01-preview', '*') +.put('/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/nodeTestGroup8988/providers/Microsoft.Storage/storageAccounts/testakvsa725?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'text/plain; charset=utf-8', expires: '-1', - location: 'https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.Storage/locations/westus/asyncoperations/13677821-d80a-4bae-92c0-e81a17ae32e0?monitor=true&api-version=2018-03-01-preview', + location: 'https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.Storage/locations/westus/asyncoperations/13677821-d80a-4bae-92c0-e81a17ae32e0?monitor=true&api-version=2018-07-01', 'retry-after': '17', 'x-ms-request-id': '13677821-d80a-4bae-92c0-e81a17ae32e0', 'strict-transport-security': 'max-age=31536000; includeSubDomains', @@ -94,7 +94,7 @@ nock('https://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.Storage/locations/westus/asyncoperations/13677821-d80a-4bae-92c0-e81a17ae32e0?monitor=true&api-version=2018-03-01-preview') + .get('/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.Storage/locations/westus/asyncoperations/13677821-d80a-4bae-92c0-e81a17ae32e0?monitor=true&api-version=2018-07-01') .reply(200, "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/nodeTestGroup8988/providers/Microsoft.Storage/storageAccounts/testakvsa725\",\"name\":\"testakvsa725\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2018-06-27T23:53:18.5429883Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2018-06-27T23:53:18.5429883Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-06-27T23:53:18.2617285Z\",\"primaryEndpoints\":{\"blob\":\"https://testakvsa725.blob.core.windows.net/\",\"queue\":\"https://testakvsa725.queue.core.windows.net/\",\"table\":\"https://testakvsa725.table.core.windows.net/\",\"file\":\"https://testakvsa725.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://testakvsa725-secondary.blob.core.windows.net/\",\"queue\":\"https://testakvsa725-secondary.queue.core.windows.net/\",\"table\":\"https://testakvsa725-secondary.table.core.windows.net/\"}}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '1380', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_check_the_name_availability_for_a_storage_account_that_already_exists.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_check_the_name_availability_for_a_storage_account_that_already_exists.nock.js index 150865a0ba..b17a55c430 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_check_the_name_availability_for_a_storage_account_that_already_exists.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_check_the_name_availability_for_a_storage_account_that_already_exists.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01', '*') .reply(200, "{\"message\":\"The storage account named testacc6023 is already taken.\",\"nameAvailable\":false,\"reason\":\"AlreadyExists\"}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '117', @@ -28,7 +28,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01', '*') .reply(200, "{\"message\":\"The storage account named testacc6023 is already taken.\",\"nameAvailable\":false,\"reason\":\"AlreadyExists\"}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '117', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_check_the_name_availability_for_a_storage_account_that_does_not_exist.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_check_the_name_availability_for_a_storage_account_that_does_not_exist.nock.js index 7bfe5f3cc2..3666990698 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_check_the_name_availability_for_a_storage_account_that_does_not_exist.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_check_the_name_availability_for_a_storage_account_that_does_not_exist.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01', '*') .reply(200, "{\"nameAvailable\":true}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '23', @@ -28,7 +28,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01', '*') .reply(200, "{\"nameAvailable\":true}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '23', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly.nock.js index 1421b10757..c7255b61de 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', @@ -29,7 +29,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_StorageV2.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_StorageV2.nock.js index e80b05e6a9..32e11e5255 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_StorageV2.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_StorageV2.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc3242?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc3242?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', @@ -29,7 +29,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc3242?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc3242?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_cool.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_cool.nock.js index 1bfea21e45..350b59ce8d 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_cool.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_cool.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc8405?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc8405?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', @@ -29,7 +29,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc8405?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc8405?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_encryption.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_encryption.nock.js index b5a0812b11..fc91a46d10 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_encryption.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_encryption.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc7701?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc7701?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', @@ -29,7 +29,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc7701?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc7701?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_https_only.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_https_only.nock.js index fbd6aa49a9..fe052fbbf2 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_https_only.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_correctly_with_https_only.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc9360?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc9360?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', @@ -29,7 +29,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc9360?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc9360?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_with_vnet_rule_set_correctly.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_with_vnet_rule_set_correctly.nock.js index cd23a35e22..6875a8272d 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_with_vnet_rule_set_correctly.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_create_an_account_with_vnet_rule_set_correctly.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc1852?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc1852?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', @@ -29,7 +29,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc1852?api-version=2018-03-01-preview', '*') +.put('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc1852?api-version=2018-07-01', '*') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_delete_the_specified_storage_account.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_delete_the_specified_storage_account.nock.js index e1b18ee746..949c688fdf 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_delete_the_specified_storage_account.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_delete_the_specified_storage_account.nock.js @@ -8,7 +8,7 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .delete('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-03-01-preview') + .delete('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-07-01') .reply(200, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', @@ -25,7 +25,7 @@ nock('http://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .delete('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-03-01-preview') + .delete('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-07-01') .reply(200, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_get_properties_of_the_specified_storage_account.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_get_properties_of_the_specified_storage_account.nock.js index 60d8624d86..290e092610 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_get_properties_of_the_specified_storage_account.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_get_properties_of_the_specified_storage_account.nock.js @@ -8,7 +8,7 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-03-01-preview') + .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-07-01') .reply(200, "{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc6023\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:13.4663391Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc6023.blob.core.windows.net/\",\"file\":\"https://testacc6023.file.core.windows.net/\",\"queue\":\"https://testacc6023.queue.core.windows.net/\",\"table\":\"https://testacc6023.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '1061', @@ -26,7 +26,7 @@ nock('http://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-03-01-preview') + .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023?api-version=2018-07-01') .reply(200, "{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc6023\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:13.4663391Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc6023.blob.core.windows.net/\",\"file\":\"https://testacc6023.file.core.windows.net/\",\"queue\":\"https://testacc6023.queue.core.windows.net/\",\"table\":\"https://testacc6023.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '1061', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_account_keys.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_account_keys.nock.js index 38e4a2c09d..136276adc8 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_account_keys.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_account_keys.nock.js @@ -8,7 +8,7 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/listKeys?api-version=2018-03-01-preview') + .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/listKeys?api-version=2018-07-01') .reply(200, "{\"keys\":[{\"keyName\":\"key1\",\"permissions\":\"Full\",\"value\":\"UzuTvc6A7g/Qvq68ZhWRIicHNlmAKtA6TqyiIf7YpouFLgWy+xityObt9qc5aVAPIMbGeqrEheydzM8826ngQw==\"},{\"keyName\":\"key2\",\"permissions\":\"Full\",\"value\":\"2aq4EMkVw0SD30Qz6tpkHwwN3+b4Dr4q062N8FHz8H6LmGrKPuTTghdT4/7nQCZTU2YNi5duvYNdtjlwgsa7cA==\"}]}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '289', @@ -26,7 +26,7 @@ nock('http://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/listKeys?api-version=2018-03-01-preview') + .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/listKeys?api-version=2018-07-01') .reply(200, "{\"keys\":[{\"keyName\":\"key1\",\"permissions\":\"Full\",\"value\":\"UzuTvc6A7g/Qvq68ZhWRIicHNlmAKtA6TqyiIf7YpouFLgWy+xityObt9qc5aVAPIMbGeqrEheydzM8826ngQw==\"},{\"keyName\":\"key2\",\"permissions\":\"Full\",\"value\":\"2aq4EMkVw0SD30Qz6tpkHwwN3+b4Dr4q062N8FHz8H6LmGrKPuTTghdT4/7nQCZTU2YNi5duvYNdtjlwgsa7cA==\"}]}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '289', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_accounts_in_the_resourcegroup.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_accounts_in_the_resourcegroup.nock.js index 300090e526..a1b38df2aa 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_accounts_in_the_resourcegroup.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_accounts_in_the_resourcegroup.nock.js @@ -8,7 +8,7 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview') + .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01') .reply(200, "{\"value\":[{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc6023\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:13.4663391Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc6023.blob.core.windows.net/\",\"file\":\"https://testacc6023.file.core.windows.net/\",\"queue\":\"https://testacc6023.queue.core.windows.net/\",\"table\":\"https://testacc6023.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc7701\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc7701\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:46.4390005Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:46.4530009Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:46.4530009Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc7701.blob.core.windows.net/\",\"file\":\"https://testacc7701.file.core.windows.net/\",\"queue\":\"https://testacc7701.queue.core.windows.net/\",\"table\":\"https://testacc7701.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc8405\",\"kind\":\"BlobStorage\",\"location\":\"westus\",\"name\":\"testacc8405\",\"properties\":{\"accessTier\":\"Cool\",\"creationTime\":\"2017-12-12T05:50:19.7116957Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:19.7516788Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:19.7516788Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc8405.blob.core.windows.net/\",\"table\":\"https://testacc8405.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc9360\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc9360\",\"properties\":{\"creationTime\":\"2017-12-12T05:50:53.0403515Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:53.0433575Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:53.0433575Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc9360.blob.core.windows.net/\",\"file\":\"https://testacc9360.file.core.windows.net/\",\"queue\":\"https://testacc9360.queue.core.windows.net/\",\"table\":\"https://testacc9360.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc1852\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"testacc1852\",\"properties\":{\"creationTime\":\"2017-12-12T05:48:39.8416479Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:48:39.8436478Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:48:39.8436478Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, AzureServices\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"23.45.67.90\"},{\"action\":\"Allow\",\"value\":\"23.45.67.91\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc1852.blob.core.windows.net/\",\"file\":\"https://testacc1852.file.core.windows.net/\",\"queue\":\"https://testacc1852.queue.core.windows.net/\",\"table\":\"https://testacc1852.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', @@ -26,7 +26,7 @@ nock('http://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview') + .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01') .reply(200, "{\"value\":[{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc6023\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:13.4663391Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc6023.blob.core.windows.net/\",\"file\":\"https://testacc6023.file.core.windows.net/\",\"queue\":\"https://testacc6023.queue.core.windows.net/\",\"table\":\"https://testacc6023.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc7701\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc7701\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:46.4390005Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:46.4530009Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:46.4530009Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc7701.blob.core.windows.net/\",\"file\":\"https://testacc7701.file.core.windows.net/\",\"queue\":\"https://testacc7701.queue.core.windows.net/\",\"table\":\"https://testacc7701.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc8405\",\"kind\":\"BlobStorage\",\"location\":\"westus\",\"name\":\"testacc8405\",\"properties\":{\"accessTier\":\"Cool\",\"creationTime\":\"2017-12-12T05:50:19.7116957Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:19.7516788Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:19.7516788Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc8405.blob.core.windows.net/\",\"table\":\"https://testacc8405.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc9360\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc9360\",\"properties\":{\"creationTime\":\"2017-12-12T05:50:53.0403515Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:53.0433575Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:53.0433575Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc9360.blob.core.windows.net/\",\"file\":\"https://testacc9360.file.core.windows.net/\",\"queue\":\"https://testacc9360.queue.core.windows.net/\",\"table\":\"https://testacc9360.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc1852\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"testacc1852\",\"properties\":{\"creationTime\":\"2017-12-12T05:48:39.8416479Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:48:39.8436478Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:48:39.8436478Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, AzureServices\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"23.45.67.90\"},{\"action\":\"Allow\",\"value\":\"23.45.67.91\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc1852.blob.core.windows.net/\",\"file\":\"https://testacc1852.file.core.windows.net/\",\"queue\":\"https://testacc1852.queue.core.windows.net/\",\"table\":\"https://testacc1852.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_accounts_in_the_subscription.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_accounts_in_the_subscription.nock.js index 4c6c446961..da0a352f6d 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_accounts_in_the_subscription.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_all_the_storage_accounts_in_the_subscription.nock.js @@ -8,7 +8,7 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview') + .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01') .reply(200, "{\"value\":[{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/jasoneu/providers/Microsoft.Storage/storageAccounts/jasoneudiag811\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"jasoneudiag811\",\"properties\":{\"creationTime\":\"2017-08-18T08:12:26.7069156Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-04T04:06:24.4456365Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-07T16:52:44.7120241Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://jasoneudiag811.blob.core.windows.net/\",\"file\":\"https://jasoneudiag811.file.core.windows.net/\",\"queue\":\"https://jasoneudiag811.queue.core.windows.net/\",\"table\":\"https://jasoneudiag811.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weieastus22/providers/Microsoft.Storage/storageAccounts/weitest1\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"weitest1\",\"properties\":{\"creationTime\":\"2016-04-29T06:12:58.6740041Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T05:52:51.2026219Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weitest1.blob.core.windows.net/\",\"file\":\"https://weitest1.file.core.windows.net/\",\"queue\":\"https://weitest1.queue.core.windows.net/\",\"table\":\"https://weitest1.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlistandardlrsus\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"xiaonlistandardlrsus\",\"properties\":{\"creationTime\":\"2017-08-21T12:25:25.7659792Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-21T12:25:25.7659792Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-21T12:25:25.7659792Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xiaonlistandardlrsus.blob.core.windows.net/\",\"file\":\"https://xiaonlistandardlrsus.file.core.windows.net/\",\"queue\":\"https://xiaonlistandardlrsus.queue.core.windows.net/\",\"table\":\"https://xiaonlistandardlrsus.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://xiaonlistandardlrsus-secondary.blob.core.windows.net/\",\"queue\":\"https://xiaonlistandardlrsus-secondary.queue.core.windows.net/\",\"table\":\"https://xiaonlistandardlrsus-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlistandardlrsus2\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"xiaonlistandardlrsus2\",\"properties\":{\"creationTime\":\"2017-08-21T13:06:05.8345342Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-21T13:06:05.8345342Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-21T13:06:05.8345342Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xiaonlistandardlrsus2.blob.core.windows.net/\",\"file\":\"https://xiaonlistandardlrsus2.file.core.windows.net/\",\"queue\":\"https://xiaonlistandardlrsus2.queue.core.windows.net/\",\"table\":\"https://xiaonlistandardlrsus2.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://xiaonlistandardlrsus2-secondary.blob.core.windows.net/\",\"queue\":\"https://xiaonlistandardlrsus2-secondary.queue.core.windows.net/\",\"table\":\"https://xiaonlistandardlrsus2-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dailyregressionrg706930/providers/Microsoft.Storage/storageAccounts/adailyregression27\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"adailyregression27\",\"properties\":{\"creationTime\":\"2017-07-13T02:37:32.5647634Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-29T03:38:42.5934901Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-02T07:41:10.8504562Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://adailyregression27.blob.core.windows.net/\",\"file\":\"https://adailyregression27.file.core.windows.net/\",\"queue\":\"https://adailyregression27.queue.core.windows.net/\",\"table\":\"https://adailyregression27.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"hidden-DevTestLabs-LabUId\":\"fab5930e-27e7-4d8c-82e4-62d3bf5ccdad\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitest1/providers/Microsoft.Storage/storageAccounts/azcopyperf4\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"azcopyperf4\",\"properties\":{\"creationTime\":\"2017-12-01T04:25:26.6093939Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T04:25:26.6173934Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T04:25:26.6173934Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://azcopyperf4.blob.core.windows.net/\",\"file\":\"https://azcopyperf4.file.core.windows.net/\",\"queue\":\"https://azcopyperf4.queue.core.windows.net/\",\"table\":\"https://azcopyperf4.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitest1/providers/Microsoft.Storage/storageAccounts/azcopyperf5\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"azcopyperf5\",\"properties\":{\"creationTime\":\"2017-12-01T04:26:09.9513739Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T04:26:09.9663748Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T04:26:09.9663748Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://azcopyperf5.blob.core.windows.net/\",\"file\":\"https://azcopyperf5.file.core.windows.net/\",\"queue\":\"https://azcopyperf5.queue.core.windows.net/\",\"table\":\"https://azcopyperf5.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/jasontest/providers/Microsoft.Storage/storageAccounts/jasontesteu2\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"jasontesteu2\",\"properties\":{\"creationTime\":\"2017-06-21T07:16:12.7126104Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T20:30:19.6842704Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T22:33:03.4976273Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://jasontesteu2.blob.core.windows.net/\",\"file\":\"https://jasontesteu2.file.core.windows.net/\",\"queue\":\"https://jasontesteu2.queue.core.windows.net/\",\"table\":\"https://jasontesteu2.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://jasontesteu2-secondary.blob.core.windows.net/\",\"queue\":\"https://jasontesteu2-secondary.queue.core.windows.net/\",\"table\":\"https://jasontesteu2-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/premiumstorageaccount2\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"premiumstorageaccount2\",\"properties\":{\"creationTime\":\"2017-07-19T08:10:50.9345446Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T19:20:33.8195190Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-04T18:07:43.7068437Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://premiumstorageaccount2.blob.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/sflogsps1cluster6677\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"sflogsps1cluster6677\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:42.9164744Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sflogsps1cluster6677.blob.core.windows.net/\",\"file\":\"https://sflogsps1cluster6677.file.core.windows.net/\",\"queue\":\"https://sflogsps1cluster6677.queue.core.windows.net/\",\"table\":\"https://sflogsps1cluster6677.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weilinux/providers/Microsoft.Storage/storageAccounts/weilinuxdisks499\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"weilinuxdisks499\",\"properties\":{\"creationTime\":\"2017-05-08T07:29:08.8470437Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weilinuxdisks499.blob.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/default-storage-eastasia/providers/Microsoft.Storage/storageAccounts/weitesttemp1\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"weitesttemp1\",\"properties\":{\"creationTime\":\"2017-10-23T06:59:51.9237553Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-23T06:59:51.9567592Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-23T06:59:51.9567592Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weitesttemp1.blob.core.windows.net/\",\"file\":\"https://weitesttemp1.file.core.windows.net/\",\"queue\":\"https://weitesttemp1.queue.core.windows.net/\",\"table\":\"https://weitesttemp1.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlinodejsdiag709\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"xiaonlinodejsdiag709\",\"properties\":{\"creationTime\":\"2017-06-12T10:41:28.2812197Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xiaonlinodejsdiag709.blob.core.windows.net/\",\"file\":\"https://xiaonlinodejsdiag709.file.core.windows.net/\",\"queue\":\"https://xiaonlinodejsdiag709.queue.core.windows.net/\",\"table\":\"https://xiaonlinodejsdiag709.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc100\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc100\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:42.0272620Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc100.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc100.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc100.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc100.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc101\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc101\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:41.4622003Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc101.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc101.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc101.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc101.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc102\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc102\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:41.4702018Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc102.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc102.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc102.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc102.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc103\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc103\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:41.1351732Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc103.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc103.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc103.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc103.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc104\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc104\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:41.1431742Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc104.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc104.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc104.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc104.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestxplattestarm02\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"dmtestxplattestarm02\",\"properties\":{\"creationTime\":\"2015-08-19T05:22:58.5226831Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-03T13:03:42.8722401Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-07T05:55:25.0572224Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://dmtestxplattestarm02.blob.core.windows.net/\",\"file\":\"https://dmtestxplattestarm02.file.core.windows.net/\",\"queue\":\"https://dmtestxplattestarm02.queue.core.windows.net/\",\"table\":\"https://dmtestxplattestarm02.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://dmtestxplattestarm02-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtestxplattestarm02-secondary.queue.core.windows.net/\",\"table\":\"https://dmtestxplattestarm02-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg1816/providers/Microsoft.Storage/storageAccounts/stopstestrg1816\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stopstestrg1816\",\"properties\":{\"creationTime\":\"2017-05-25T08:51:14.2824518Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-05T19:45:25.4890086Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://stopstestrg1816.blob.core.windows.net/\",\"file\":\"https://stopstestrg1816.file.core.windows.net/\",\"queue\":\"https://stopstestrg1816.queue.core.windows.net/\",\"table\":\"https://stopstestrg1816.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg5702/providers/Microsoft.Storage/storageAccounts/stopstestrg5702\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stopstestrg5702\",\"properties\":{\"creationTime\":\"2017-05-25T09:11:43.8237109Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-05-25T09:14:03.4010615Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://stopstestrg5702.blob.core.windows.net/\",\"file\":\"https://stopstestrg5702.file.core.windows.net/\",\"queue\":\"https://stopstestrg5702.queue.core.windows.net/\",\"table\":\"https://stopstestrg5702.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg6759/providers/Microsoft.Storage/storageAccounts/stopstestrg6759\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stopstestrg6759\",\"properties\":{\"creationTime\":\"2016-09-20T08:28:43.0167698Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-05T19:45:28.8733310Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://stopstestrg6759.blob.core.windows.net/\",\"file\":\"https://stopstestrg6759.file.core.windows.net/\",\"queue\":\"https://stopstestrg6759.queue.core.windows.net/\",\"table\":\"https://stopstestrg6759.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg9462/providers/Microsoft.Storage/storageAccounts/stopstestrg9462\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stopstestrg9462\",\"properties\":{\"creationTime\":\"2016-09-14T07:26:02.5078528Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-05T19:45:29.6084000Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://stopstestrg9462.blob.core.windows.net/\",\"file\":\"https://stopstestrg9462.file.core.windows.net/\",\"queue\":\"https://stopstestrg9462.queue.core.windows.net/\",\"table\":\"https://stopstestrg9462.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup2298/providers/Microsoft.Storage/storageAccounts/testacc1252\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc1252\",\"properties\":{\"creationTime\":\"2017-12-12T05:39:35.4642482Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:39:35.4662482Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:39:35.4662482Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc1252.blob.core.windows.net/\",\"file\":\"https://testacc1252.file.core.windows.net/\",\"queue\":\"https://testacc1252.queue.core.windows.net/\",\"table\":\"https://testacc1252.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup7451/providers/Microsoft.Storage/storageAccounts/testacc4986\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc4986\",\"properties\":{\"creationTime\":\"2017-12-12T05:47:26.6559638Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:47:26.9639792Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:47:26.9639792Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc4986.blob.core.windows.net/\",\"file\":\"https://testacc4986.file.core.windows.net/\",\"queue\":\"https://testacc4986.queue.core.windows.net/\",\"table\":\"https://testacc4986.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc6023\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:13.4663391Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc6023.blob.core.windows.net/\",\"file\":\"https://testacc6023.file.core.windows.net/\",\"queue\":\"https://testacc6023.queue.core.windows.net/\",\"table\":\"https://testacc6023.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc7701\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc7701\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:46.4390005Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:46.4530009Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:46.4530009Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc7701.blob.core.windows.net/\",\"file\":\"https://testacc7701.file.core.windows.net/\",\"queue\":\"https://testacc7701.queue.core.windows.net/\",\"table\":\"https://testacc7701.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc8405\",\"kind\":\"BlobStorage\",\"location\":\"westus\",\"name\":\"testacc8405\",\"properties\":{\"accessTier\":\"Cool\",\"creationTime\":\"2017-12-12T05:50:19.7116957Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:19.7516788Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:19.7516788Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc8405.blob.core.windows.net/\",\"table\":\"https://testacc8405.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc9360\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc9360\",\"properties\":{\"creationTime\":\"2017-12-12T05:50:53.0403515Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:53.0433575Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:53.0433575Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc9360.blob.core.windows.net/\",\"file\":\"https://testacc9360.file.core.windows.net/\",\"queue\":\"https://testacc9360.queue.core.windows.net/\",\"table\":\"https://testacc9360.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate3842/providers/Microsoft.Storage/storageAccounts/xplatteststorage12227\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage12227\",\"properties\":{\"creationTime\":\"2017-02-17T01:09:35.8131218Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-09-07T07:38:34.9812354Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-09-07T07:51:51.1667251Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage12227.blob.core.windows.net/\",\"file\":\"https://xplatteststorage12227.file.core.windows.net/\",\"queue\":\"https://xplatteststorage12227.queue.core.windows.net/\",\"table\":\"https://xplatteststorage12227.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate2923/providers/Microsoft.Storage/storageAccounts/xplatteststorage14808\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage14808\",\"properties\":{\"creationTime\":\"2017-02-17T01:25:34.0996543Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T07:35:34.3236931Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage14808.blob.core.windows.net/\",\"file\":\"https://xplatteststorage14808.file.core.windows.net/\",\"queue\":\"https://xplatteststorage14808.queue.core.windows.net/\",\"table\":\"https://xplatteststorage14808.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate630/providers/Microsoft.Storage/storageAccounts/xplatteststorage16015\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage16015\",\"properties\":{\"creationTime\":\"2017-02-17T02:47:54.3943263Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T07:35:34.9307510Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage16015.blob.core.windows.net/\",\"file\":\"https://xplatteststorage16015.file.core.windows.net/\",\"queue\":\"https://xplatteststorage16015.queue.core.windows.net/\",\"table\":\"https://xplatteststorage16015.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate5247/providers/Microsoft.Storage/storageAccounts/xplatteststorage17152\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage17152\",\"properties\":{\"creationTime\":\"2017-02-17T02:36:17.7886196Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T07:35:34.5427133Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage17152.blob.core.windows.net/\",\"file\":\"https://xplatteststorage17152.file.core.windows.net/\",\"queue\":\"https://xplatteststorage17152.queue.core.windows.net/\",\"table\":\"https://xplatteststorage17152.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate6294/providers/Microsoft.Storage/storageAccounts/xplatteststorage1816\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage1816\",\"properties\":{\"creationTime\":\"2017-02-17T01:50:24.9592860Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T07:35:35.2547813Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage1816.blob.core.windows.net/\",\"file\":\"https://xplatteststorage1816.file.core.windows.net/\",\"queue\":\"https://xplatteststorage1816.queue.core.windows.net/\",\"table\":\"https://xplatteststorage1816.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/armclistoragegroup659/providers/Microsoft.Storage/storageAccounts/armclistorageaccount3030\",\"kind\":\"BlobStorage\",\"location\":\"westeurope\",\"name\":\"armclistorageaccount3030\",\"properties\":{\"accessTier\":\"Cool\",\"creationTime\":\"2017-02-13T08:10:58.0157969Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-25T03:19:31.5840809Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://armclistorageaccount3030.blob.core.windows.net/\",\"table\":\"https://armclistorageaccount3030.table.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/armclistoragegroup8981/providers/Microsoft.Storage/storageAccounts/armclistorageaccount3440\",\"kind\":\"Storage\",\"location\":\"westeurope\",\"name\":\"armclistorageaccount3440\",\"properties\":{\"creationTime\":\"2017-02-13T08:13:38.0197768Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-25T03:19:30.2779446Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://armclistorageaccount3440.blob.core.windows.net/\",\"file\":\"https://armclistorageaccount3440.file.core.windows.net/\",\"queue\":\"https://armclistorageaccount3440.queue.core.windows.net/\",\"table\":\"https://armclistorageaccount3440.table.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/armclistoragegroup9568/providers/Microsoft.Storage/storageAccounts/armclistorageaccount9465\",\"kind\":\"Storage\",\"location\":\"westeurope\",\"name\":\"armclistorageaccount9465\",\"properties\":{\"creationTime\":\"2017-02-13T08:15:38.4896336Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-25T03:19:31.1490611Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://armclistorageaccount9465.blob.core.windows.net/\",\"file\":\"https://armclistorageaccount9465.file.core.windows.net/\",\"queue\":\"https://armclistorageaccount9465.queue.core.windows.net/\",\"table\":\"https://armclistorageaccount9465.table.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplat-test-nic/providers/Microsoft.Storage/storageAccounts/xplattemptestaccount\",\"kind\":\"Storage\",\"location\":\"westeurope\",\"name\":\"xplattemptestaccount\",\"properties\":{\"creationTime\":\"2017-02-17T03:21:37.5052448Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-30T08:47:18.6215382Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplattemptestaccount.blob.core.windows.net/\",\"file\":\"https://xplattemptestaccount.file.core.windows.net/\",\"queue\":\"https://xplattemptestaccount.queue.core.windows.net/\",\"table\":\"https://xplattemptestaccount.table.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/default-storage-eastasia/providers/Microsoft.Storage/storageAccounts/weixio\",\"name\":\"weixio\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.5470252Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.5470252Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-03T03:04:25.5166497Z\",\"primaryEndpoints\":{\"blob\":\"https://weixio.blob.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/hasontestnewsrp/providers/Microsoft.Storage/storageAccounts/haosntestnewsrp2\",\"name\":\"haosntestnewsrp2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.7030847Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-14T08:30:30.896398Z\",\"primaryEndpoints\":{\"blob\":\"https://haosntestnewsrp2.blob.core.windows.net/\",\"queue\":\"https://haosntestnewsrp2.queue.core.windows.net/\",\"table\":\"https://haosntestnewsrp2.table.core.windows.net/\",\"file\":\"https://haosntestnewsrp2.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlinodejsdiag931\",\"name\":\"xiaonlinodejsdiag931\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.7503809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.7503809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-06-30T09:53:09.1408508Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonlinodejsdiag931.blob.core.windows.net/\",\"queue\":\"https://xiaonlinodejsdiag931.queue.core.windows.net/\",\"table\":\"https://xiaonlinodejsdiag931.table.core.windows.net/\",\"file\":\"https://xiaonlinodejsdiag931.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/weieatest1\",\"name\":\"weieatest1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.0781837Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.0781837Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-09-20T09:14:34.6454817Z\",\"primaryEndpoints\":{\"blob\":\"https://weieatest1.blob.core.windows.net/\",\"queue\":\"https://weieatest1.queue.core.windows.net/\",\"table\":\"https://weieatest1.table.core.windows.net/\",\"file\":\"https://weieatest1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/default-storage-eastasia/providers/Microsoft.Storage/storageAccounts/weiweitestrm\",\"name\":\"weiweitestrm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.4219804Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.4219804Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2015-10-08T08:23:42.7095343Z\",\"primaryEndpoints\":{\"blob\":\"https://weiweitestrm.blob.core.windows.net/\",\"queue\":\"https://weiweitestrm.queue.core.windows.net/\",\"table\":\"https://weiweitestrm.table.core.windows.net/\",\"file\":\"https://weiweitestrm.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlinodeeastasia\",\"name\":\"xiaonlinodeeastasia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.6253812Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.6253812Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-21T05:02:09.183507Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonlinodeeastasia.blob.core.windows.net/\",\"queue\":\"https://xiaonlinodeeastasia.queue.core.windows.net/\",\"table\":\"https://xiaonlinodeeastasia.table.core.windows.net/\",\"file\":\"https://xiaonlinodeeastasia.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/hasontestnewsrp/providers/Microsoft.Storage/storageAccounts/haosntestnewsrp\",\"name\":\"haosntestnewsrp\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.5937168Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-14T08:29:18.126748Z\",\"primaryEndpoints\":{\"blob\":\"https://haosntestnewsrp.blob.core.windows.net/\",\"queue\":\"https://haosntestnewsrp.queue.core.windows.net/\",\"table\":\"https://haosntestnewsrp.table.core.windows.net/\",\"file\":\"https://haosntestnewsrp.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/hasontestfileer/providers/Microsoft.Storage/storageAccounts/hasontestfileer\",\"name\":\"hasontestfileer\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.8281337Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.8281337Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-13T08:19:15.2674907Z\",\"primaryEndpoints\":{\"blob\":\"https://hasontestfileer.blob.core.windows.net/\",\"queue\":\"https://hasontestfileer.queue.core.windows.net/\",\"table\":\"https://hasontestfileer.table.core.windows.net/\",\"file\":\"https://hasontestfileer.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"BlobStorage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/default-storage-eastasia/providers/Microsoft.Storage/storageAccounts/weiblobstorage\",\"name\":\"weiblobstorage\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.9531547Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.9531547Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-09T08:13:21.6856878Z\",\"primaryEndpoints\":{\"blob\":\"https://weiblobstorage.blob.core.windows.net/\",\"table\":\"https://weiblobstorage.table.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/armclistoragegroup3482/providers/Microsoft.Storage/storageAccounts/armclistorageaccount1329\",\"name\":\"armclistorageaccount1329\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.2026302Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.2026302Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-13T08:45:14.4423907Z\",\"primaryEndpoints\":{\"blob\":\"https://armclistorageaccount1329.blob.core.windows.net/\",\"queue\":\"https://armclistorageaccount1329.queue.core.windows.net/\",\"table\":\"https://armclistorageaccount1329.table.core.windows.net/\",\"file\":\"https://armclistorageaccount1329.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/xdmtestea01\",\"name\":\"xdmtestea01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.9846400Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.9846400Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-05-02T10:32:55.0022194Z\",\"primaryEndpoints\":{\"blob\":\"https://xdmtestea01.blob.core.windows.net/\",\"queue\":\"https://xdmtestea01.queue.core.windows.net/\",\"table\":\"https://xdmtestea01.table.core.windows.net/\",\"file\":\"https://xdmtestea01.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xdmtestea01-secondary.blob.core.windows.net/\",\"queue\":\"https://xdmtestea01-secondary.queue.core.windows.net/\",\"table\":\"https://xdmtestea01-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/xdmtestea02\",\"name\":\"xdmtestea02\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.3128009Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.3128009Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-05-02T10:34:57.9276556Z\",\"primaryEndpoints\":{\"blob\":\"https://xdmtestea02.blob.core.windows.net/\",\"queue\":\"https://xdmtestea02.queue.core.windows.net/\",\"table\":\"https://xdmtestea02.table.core.windows.net/\",\"file\":\"https://xdmtestea02.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xdmtestea02-secondary.blob.core.windows.net/\",\"queue\":\"https://xdmtestea02-secondary.queue.core.windows.net/\",\"table\":\"https://xdmtestea02-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_ZRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/weizrs\",\"name\":\"weizrs\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.6720417Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.6720417Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-09-20T02:40:43.6531498Z\",\"primaryEndpoints\":{\"blob\":\"https://weizrs.blob.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattestgvmcreate183/providers/Microsoft.Storage/storageAccounts/xplatteststorage15558\",\"name\":\"xplatteststorage15558\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.4618523Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.4618523Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-17T06:25:44.0489228Z\",\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage15558.blob.core.windows.net/\",\"queue\":\"https://xplatteststorage15558.queue.core.windows.net/\",\"table\":\"https://xplatteststorage15558.table.core.windows.net/\",\"file\":\"https://xplatteststorage15558.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpexample2\",\"name\":\"dmtpexample2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.2587572Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.2587572Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-23T09:31:22.5891512Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpexample2.blob.core.windows.net/\",\"queue\":\"https://dmtpexample2.queue.core.windows.net/\",\"table\":\"https://dmtpexample2.table.core.windows.net/\",\"file\":\"https://dmtpexample2.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpexample2-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpexample2-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpexample2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf7\",\"name\":\"dmtpperf7\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:42:45.7967978Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:42:45.7967978Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:42:45.7499201Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf7.blob.core.windows.net/\",\"queue\":\"https://dmtpperf7.queue.core.windows.net/\",\"table\":\"https://dmtpperf7.table.core.windows.net/\",\"file\":\"https://dmtpperf7.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf7-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf7-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf7-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf6\",\"name\":\"dmtpperf6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:42:11.3641099Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:42:11.3641099Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:42:11.3329203Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf6.blob.core.windows.net/\",\"queue\":\"https://dmtpperf6.queue.core.windows.net/\",\"table\":\"https://dmtpperf6.table.core.windows.net/\",\"file\":\"https://dmtpperf6.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf6-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf6-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf6-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf5\",\"name\":\"dmtpperf5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:41:30.6426179Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:41:30.6426179Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:41:30.6043872Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf5.blob.core.windows.net/\",\"queue\":\"https://dmtpperf5.queue.core.windows.net/\",\"table\":\"https://dmtpperf5.table.core.windows.net/\",\"file\":\"https://dmtpperf5.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf5-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf5-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf5-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf4\",\"name\":\"dmtpperf4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:20:27.5006435Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:20:27.5006435Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:20:27.4537645Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf4.blob.core.windows.net/\",\"queue\":\"https://dmtpperf4.queue.core.windows.net/\",\"table\":\"https://dmtpperf4.table.core.windows.net/\",\"file\":\"https://dmtpperf4.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf4-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf4-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf4-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf3\",\"name\":\"dmtpperf3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:19:32.7709496Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:19:32.7709496Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:19:32.7396995Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf3.blob.core.windows.net/\",\"queue\":\"https://dmtpperf3.queue.core.windows.net/\",\"table\":\"https://dmtpperf3.table.core.windows.net/\",\"file\":\"https://dmtpperf3.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf3-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf3-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf3-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf2\",\"name\":\"dmtpperf2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:18:53.9426881Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:18:53.9426881Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:18:53.9114586Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf2.blob.core.windows.net/\",\"queue\":\"https://dmtpperf2.queue.core.windows.net/\",\"table\":\"https://dmtpperf2.table.core.windows.net/\",\"file\":\"https://dmtpperf2.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf2-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf2-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf1\",\"name\":\"dmtpperf1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:18:11.5870039Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:18:11.5870039Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:18:11.5557549Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf1.blob.core.windows.net/\",\"queue\":\"https://dmtpperf1.queue.core.windows.net/\",\"table\":\"https://dmtpperf1.table.core.windows.net/\",\"file\":\"https://dmtpperf1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf1-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf1-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestxplattestarm01\",\"name\":\"dmtestxplattestarm01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:32.9619244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2015-08-19T05:21:45.7251846Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtestxplattestarm01.blob.core.windows.net/\",\"queue\":\"https://dmtestxplattestarm01.queue.core.windows.net/\",\"table\":\"https://dmtestxplattestarm01.table.core.windows.net/\",\"file\":\"https://dmtestxplattestarm01.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtestxplattestarm01-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtestxplattestarm01-secondary.queue.core.windows.net/\",\"table\":\"https://dmtestxplattestarm01-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf9\",\"name\":\"dmtpperf9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T02:22:47.1793303Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T02:22:47.1793303Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-12T02:22:47.1637557Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf9.blob.core.windows.net/\",\"queue\":\"https://dmtpperf9.queue.core.windows.net/\",\"table\":\"https://dmtpperf9.table.core.windows.net/\",\"file\":\"https://dmtpperf9.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf9-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf9-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf9-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf8\",\"name\":\"dmtpperf8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:43:49.5896695Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:43:49.5896695Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:43:49.5588493Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf8.blob.core.windows.net/\",\"queue\":\"https://dmtpperf8.queue.core.windows.net/\",\"table\":\"https://dmtpperf8.table.core.windows.net/\",\"file\":\"https://dmtpperf8.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf8-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf8-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf8-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf10\",\"name\":\"dmtpperf10\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T02:23:37.1567640Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T02:23:37.1567640Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-12T02:23:37.1411250Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf10.blob.core.windows.net/\",\"queue\":\"https://dmtpperf10.queue.core.windows.net/\",\"table\":\"https://dmtpperf10.table.core.windows.net/\",\"file\":\"https://dmtpperf10.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf10-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf10-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf10-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/xdmtestxio\",\"name\":\"xdmtestxio\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\",\"tag3\":\"value3\"},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.6649933Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.6649933Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-03-28T02:31:52.2539851Z\",\"primaryEndpoints\":{\"blob\":\"https://xdmtestxio.blob.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtp\",\"name\":\"dmtp\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.3681413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.3681413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-23T07:36:43.5854181Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtp.blob.core.windows.net/\",\"queue\":\"https://dmtp.queue.core.windows.net/\",\"table\":\"https://dmtp.table.core.windows.net/\",\"file\":\"https://dmtp.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtp-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtp-secondary.queue.core.windows.net/\",\"table\":\"https://dmtp-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpexample1\",\"name\":\"dmtpexample1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.8837697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.8837697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-23T09:30:46.6206238Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpexample1.blob.core.windows.net/\",\"queue\":\"https://dmtpexample1.queue.core.windows.net/\",\"table\":\"https://dmtpexample1.table.core.windows.net/\",\"file\":\"https://dmtpexample1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpexample1-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpexample1-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpexample1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlipresoutheastasia\",\"name\":\"xiaonlipresoutheastasia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.3212437Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.3212437Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-21T12:08:49.9437564Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonlipresoutheastasia.blob.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlinodeeastasia2\",\"name\":\"xiaonlinodeeastasia2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.8056183Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.8056183Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-21T13:10:33.2145446Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonlinodeeastasia2.blob.core.windows.net/\",\"queue\":\"https://xiaonlinodeeastasia2.queue.core.windows.net/\",\"table\":\"https://xiaonlinodeeastasia2.table.core.windows.net/\",\"file\":\"https://xiaonlinodeeastasia2.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xiaonlinodeeastasia2-secondary.blob.core.windows.net/\",\"queue\":\"https://xiaonlinodeeastasia2-secondary.queue.core.windows.net/\",\"table\":\"https://xiaonlinodeeastasia2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonliphp/providers/Microsoft.Storage/storageAccounts/xiaonliphputsoutheast\",\"name\":\"xiaonliphputsoutheast\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.1805891Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.1805891Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-15T09:01:07.9295463Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonliphputsoutheast.blob.core.windows.net/\",\"queue\":\"https://xiaonliphputsoutheast.queue.core.windows.net/\",\"table\":\"https://xiaonliphputsoutheast.table.core.windows.net/\",\"file\":\"https://xiaonliphputsoutheast.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/browserifytest5\",\"name\":\"browserifytest5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:32.3994134Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:32.3994134Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-06-13T03:08:39.2385895Z\",\"primaryEndpoints\":{\"blob\":\"https://browserifytest5.blob.core.windows.net/\",\"queue\":\"https://browserifytest5.queue.core.windows.net/\",\"table\":\"https://browserifytest5.table.core.windows.net/\",\"file\":\"https://browserifytest5.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://browserifytest5-secondary.blob.core.windows.net/\",\"queue\":\"https://browserifytest5-secondary.queue.core.windows.net/\",\"table\":\"https://browserifytest5-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpdiag674\",\"name\":\"dmtpdiag674\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.7431352Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.7431352Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-23T07:57:33.2111048Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpdiag674.blob.core.windows.net/\",\"queue\":\"https://dmtpdiag674.queue.core.windows.net/\",\"table\":\"https://dmtpdiag674.table.core.windows.net/\",\"file\":\"https://dmtpdiag674.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestpshtestarm01\",\"kind\":\"Storage\",\"location\":\"japaneast\",\"name\":\"dmtestpshtestarm01\",\"properties\":{\"creationTime\":\"2015-10-23T10:44:00.5486895Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T05:28:44.1722383Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T09:21:19.0916914Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm01.blob.core.windows.net/\",\"file\":\"https://dmtestpshtestarm01.file.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm01.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm01.table.core.windows.net/\"},\"primaryLocation\":\"japaneast\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm01-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm01-secondary.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm01-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"japanwest\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestpshtestarm05\",\"kind\":\"Storage\",\"location\":\"japaneast\",\"name\":\"dmtestpshtestarm05\",\"properties\":{\"creationTime\":\"2017-05-09T03:46:08.8528718Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T05:28:45.7933809Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T09:21:20.2357923Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm05.blob.core.windows.net/\",\"file\":\"https://dmtestpshtestarm05.file.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm05.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm05.table.core.windows.net/\"},\"primaryLocation\":\"japaneast\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"japanwest\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestpshtestarm02\",\"kind\":\"Storage\",\"location\":\"japanwest\",\"name\":\"dmtestpshtestarm02\",\"properties\":{\"creationTime\":\"2015-10-23T10:44:49.4760450Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T05:28:43.8572120Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T09:21:18.8496680Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm02.blob.core.windows.net/\",\"file\":\"https://dmtestpshtestarm02.file.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm02.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm02.table.core.windows.net/\"},\"primaryLocation\":\"japanwest\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm02-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm02-secondary.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm02-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"japaneast\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/ie11memoryleaka0c2\",\"kind\":\"Storage\",\"location\":\"southcentralus\",\"name\":\"ie11memoryleaka0c2\",\"properties\":{\"creationTime\":\"2017-06-28T06:29:29.7494852Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T18:19:16.5446760Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T20:29:28.1129399Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ie11memoryleaka0c2.blob.core.windows.net/\",\"file\":\"https://ie11memoryleaka0c2.file.core.windows.net/\",\"queue\":\"https://ie11memoryleaka0c2.queue.core.windows.net/\",\"table\":\"https://ie11memoryleaka0c2.table.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weistoragev24\",\"name\":\"weistoragev24\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-08T07:02:40.9121114Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-08T07:02:40.9121114Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-08T07:02:40.9121114Z\",\"primaryEndpoints\":{\"blob\":\"https://weistoragev24.blob.core.windows.net/\",\"queue\":\"https://weistoragev24.queue.core.windows.net/\",\"table\":\"https://weistoragev24.table.core.windows.net/\",\"file\":\"https://weistoragev24.file.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weistoragev2try\",\"name\":\"weistoragev2try\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-01T01:51:09.6863590Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-01T01:51:09.6863590Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-01T01:51:09.6238455Z\",\"primaryEndpoints\":{\"blob\":\"https://weistoragev2try.blob.core.windows.net/\",\"queue\":\"https://weistoragev2try.queue.core.windows.net/\",\"table\":\"https://weistoragev2try.table.core.windows.net/\",\"file\":\"https://weistoragev2try.file.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"BlobStorage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xarchivega\",\"name\":\"xarchivega\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T09:21:13.3282412Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T09:21:13.3282412Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-30T09:21:13.3125630Z\",\"primaryEndpoints\":{\"blob\":\"https://xarchivega.blob.core.windows.net/\",\"table\":\"https://xarchivega.table.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus(stage)\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xarchivega-secondary.blob.core.windows.net/\",\"table\":\"https://xarchivega-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weistoragetry\",\"name\":\"weistoragetry\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-03T08:12:36.1956216Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-03T08:12:36.1487384Z\",\"primaryEndpoints\":{\"blob\":\"https://weistoragetry.blob.core.windows.net/\",\"queue\":\"https://weistoragetry.queue.core.windows.net/\",\"table\":\"https://weistoragetry.table.core.windows.net/\",\"file\":\"https://weistoragetry.file.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/clitestfjhswmodscrpywrbr/providers/Microsoft.Storage/storageAccounts/dmtestsrp02\",\"name\":\"dmtestsrp02\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-20T09:50:24.5650105Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-20T09:50:24.5650105Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-20T09:50:24.5650105Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtestsrp02.blob.core.windows.net/\",\"queue\":\"https://dmtestsrp02.queue.core.windows.net/\",\"table\":\"https://dmtestsrp02.table.core.windows.net/\",\"file\":\"https://dmtestsrp02.file.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\",\"customDomain\":{\"name\":\"dmtestsrp02.sn3.azure-test.net\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"BlobStorage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonliarchivega\",\"name\":\"xiaonliarchivega\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T09:20:12.3876552Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T09:20:12.3876552Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-30T09:20:12.3407861Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonliarchivega.blob.core.windows.net/\",\"table\":\"https://xiaonliarchivega.table.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus(stage)\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xiaonliarchivega-secondary.blob.core.windows.net/\",\"table\":\"https://xiaonliarchivega-secondary.table.core.windows.net/\"}}},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/cmkdemo1/providers/Microsoft.Storage/storageAccounts/cmkdemo1\",\"identity\":{\"principalId\":\"c6a5a27c-c392-4896-8a5f-976acf299ea2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"cmkdemo1\",\"properties\":{\"creationTime\":\"2017-08-17T06:53:42.1177028Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-17T06:57:10.9678665Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T10:57:08.5216655Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://cmkdemo1.blob.core.windows.net/\",\"file\":\"https://cmkdemo1.file.core.windows.net/\",\"queue\":\"https://cmkdemo1.queue.core.windows.net/\",\"table\":\"https://cmkdemo1.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/cmkdemo/providers/Microsoft.Storage/storageAccounts/cmkdemoacc\",\"identity\":{\"principalId\":\"ed61ddbf-df50-4193-91db-3020be4fc83b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"cmkdemoacc\",\"properties\":{\"creationTime\":\"2017-08-17T08:10:28.5184106Z\",\"encryption\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaultproperties\":{\"keyname\":\"cmkdemokey\",\"keyvaulturi\":\"https://cmkdemokeyvault.vault.azure.net/\",\"keyversion\":\"4db380ac849d4dad8a62e31e5caa8e96\"},\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-17T08:17:47.9081544Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T10:57:08.4466617Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://cmkdemoacc.blob.core.windows.net/\",\"file\":\"https://cmkdemoacc.file.core.windows.net/\",\"queue\":\"https://cmkdemoacc.queue.core.windows.net/\",\"table\":\"https://cmkdemoacc.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1932/providers/Microsoft.Storage/storageAccounts/sto1226\",\"identity\":{\"principalId\":\"f2bee145-b5ad-41a8-9d55-eca5118c52a7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto1226\",\"properties\":{\"creationTime\":\"2017-05-27T04:48:30.2037785Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:39.1558186Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:29.9436713Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"20.11.0.0/16\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto1226.blob.core.windows.net/\",\"file\":\"https://sto1226.file.core.windows.net/\",\"queue\":\"https://sto1226.queue.core.windows.net/\",\"table\":\"https://sto1226.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res3770/providers/Microsoft.Storage/storageAccounts/sto1628\",\"identity\":{\"principalId\":\"e79db678-a18f-4309-a89e-79a79798f7a9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto1628\",\"properties\":{\"creationTime\":\"2017-05-27T04:38:10.0153883Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:40.0079401Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:31.1497575Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"20.11.0.0/16\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto1628.blob.core.windows.net/\",\"file\":\"https://sto1628.file.core.windows.net/\",\"queue\":\"https://sto1628.queue.core.windows.net/\",\"table\":\"https://sto1628.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res8135/providers/Microsoft.Storage/storageAccounts/sto1795\",\"identity\":{\"principalId\":\"252ba1b9-129c-44c9-a538-a1bbb63620c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto1795\",\"properties\":{\"creationTime\":\"2017-05-27T08:12:12.3787638Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:39.7528769Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:31.6447935Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto1795.blob.core.windows.net/\",\"file\":\"https://sto1795.file.core.windows.net/\",\"queue\":\"https://sto1795.queue.core.windows.net/\",\"table\":\"https://sto1795.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res3643/providers/Microsoft.Storage/storageAccounts/sto2322\",\"identity\":{\"principalId\":\"b000de10-d601-4237-be24-dddca855a265\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto2322\",\"properties\":{\"creationTime\":\"2017-05-27T08:25:16.7031053Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:40.4459451Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:31.8768143Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto2322.blob.core.windows.net/\",\"file\":\"https://sto2322.file.core.windows.net/\",\"queue\":\"https://sto2322.queue.core.windows.net/\",\"table\":\"https://sto2322.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res8711/providers/Microsoft.Storage/storageAccounts/sto2341\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto2341\",\"properties\":{\"creationTime\":\"2017-11-16T09:29:57.6657277Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:29:57.6677588Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:29:57.6677588Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto2341.blob.core.windows.net/\",\"file\":\"https://sto2341.file.core.windows.net/\",\"queue\":\"https://sto2341.queue.core.windows.net/\",\"table\":\"https://sto2341.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2290/providers/Microsoft.Storage/storageAccounts/sto2420\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto2420\",\"properties\":{\"creationTime\":\"2017-11-16T09:32:44.6578128Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:32:44.6638132Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:32:44.6638132Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto2420.blob.core.windows.net/\",\"file\":\"https://sto2420.file.core.windows.net/\",\"queue\":\"https://sto2420.queue.core.windows.net/\",\"table\":\"https://sto2420.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6085/providers/Microsoft.Storage/storageAccounts/sto2764\",\"identity\":{\"principalId\":\"e9a2517f-00f4-4b56-bb24-22875dac1cfd\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto2764\",\"properties\":{\"creationTime\":\"2017-05-27T07:43:59.8825067Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:06.9395784Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:32.3728489Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto2764.blob.core.windows.net/\",\"file\":\"https://sto2764.file.core.windows.net/\",\"queue\":\"https://sto2764.queue.core.windows.net/\",\"table\":\"https://sto2764.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res8297/providers/Microsoft.Storage/storageAccounts/sto3056\",\"identity\":{\"principalId\":\"f0894d88-5721-4384-8622-9976c611213d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3056\",\"properties\":{\"creationTime\":\"2017-05-27T03:48:33.4926786Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:06.9625946Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:32.6008614Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3056.blob.core.windows.net/\",\"file\":\"https://sto3056.file.core.windows.net/\",\"queue\":\"https://sto3056.queue.core.windows.net/\",\"table\":\"https://sto3056.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res7320/providers/Microsoft.Storage/storageAccounts/sto3061\",\"identity\":{\"principalId\":\"60020e7a-77ac-4a82-a651-f24a4127b541\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3061\",\"properties\":{\"creationTime\":\"2017-05-27T04:34:52.0693890Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:42.1301241Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:32.9988893Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3061.blob.core.windows.net/\",\"file\":\"https://sto3061.file.core.windows.net/\",\"queue\":\"https://sto3061.queue.core.windows.net/\",\"table\":\"https://sto3061.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6893/providers/Microsoft.Storage/storageAccounts/sto3442\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3442\",\"properties\":{\"creationTime\":\"2017-11-16T09:59:35.8675362Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:59:35.8695486Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:59:35.8695486Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3442.blob.core.windows.net/\",\"file\":\"https://sto3442.file.core.windows.net/\",\"queue\":\"https://sto3442.queue.core.windows.net/\",\"table\":\"https://sto3442.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res3657/providers/Microsoft.Storage/storageAccounts/sto3474\",\"identity\":{\"principalId\":\"4d7c47e6-3b06-4697-bb36-72858f634ead\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3474\",\"properties\":{\"creationTime\":\"2017-05-27T04:46:04.9595711Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:07.3706203Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:32.9588885Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3474.blob.core.windows.net/\",\"file\":\"https://sto3474.file.core.windows.net/\",\"queue\":\"https://sto3474.queue.core.windows.net/\",\"table\":\"https://sto3474.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2640/providers/Microsoft.Storage/storageAccounts/sto3593\",\"identity\":{\"principalId\":\"df95b8f9-bb60-4826-b2c1-6c7dd9f113f1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3593\",\"properties\":{\"creationTime\":\"2017-05-30T16:50:04.0004530Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:07.3046139Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:33.7119407Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3593.blob.core.windows.net/\",\"file\":\"https://sto3593.file.core.windows.net/\",\"queue\":\"https://sto3593.queue.core.windows.net/\",\"table\":\"https://sto3593.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/testcmk3/providers/Microsoft.Storage/storageAccounts/sto3699\",\"identity\":{\"principalId\":\"356d057d-cba5-44dd-8a30-b2e547bc416b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3699\",\"properties\":{\"creationTime\":\"2017-05-24T10:06:30.6093014Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:07.6356449Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.0829676Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3699.blob.core.windows.net/\",\"file\":\"https://sto3699.file.core.windows.net/\",\"queue\":\"https://sto3699.queue.core.windows.net/\",\"table\":\"https://sto3699.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res146/providers/Microsoft.Storage/storageAccounts/sto3758\",\"identity\":{\"principalId\":\"6f911142-fed9-4c20-bbeb-c38cb9c9390c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3758\",\"properties\":{\"creationTime\":\"2017-05-27T07:50:35.2096719Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:07.9246945Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.2409823Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3758.blob.core.windows.net/\",\"file\":\"https://sto3758.file.core.windows.net/\",\"queue\":\"https://sto3758.queue.core.windows.net/\",\"table\":\"https://sto3758.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1242/providers/Microsoft.Storage/storageAccounts/sto393\",\"identity\":{\"principalId\":\"82961471-55c3-471d-8a90-be9b2b5cdce2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto393\",\"properties\":{\"creationTime\":\"2017-05-27T09:45:30.7718539Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:08.0126831Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.3919886Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto393.blob.core.windows.net/\",\"file\":\"https://sto393.file.core.windows.net/\",\"queue\":\"https://sto393.queue.core.windows.net/\",\"table\":\"https://sto393.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6121/providers/Microsoft.Storage/storageAccounts/sto4475\",\"identity\":{\"principalId\":\"a692f3b8-80a3-47ff-abc2-552012155f7a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto4475\",\"properties\":{\"creationTime\":\"2017-11-16T08:04:12.5760709Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T08:04:12.5840719Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T08:04:12.5840719Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto4475.blob.core.windows.net/\",\"file\":\"https://sto4475.file.core.windows.net/\",\"queue\":\"https://sto4475.queue.core.windows.net/\",\"table\":\"https://sto4475.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2854/providers/Microsoft.Storage/storageAccounts/sto4832\",\"identity\":{\"principalId\":\"dd8fc0b6-c8f3-46b6-b184-1bbd1714813b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto4832\",\"properties\":{\"creationTime\":\"2017-05-27T03:10:23.4144941Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:08.2947235Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.8800233Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto4832.blob.core.windows.net/\",\"file\":\"https://sto4832.file.core.windows.net/\",\"queue\":\"https://sto4832.queue.core.windows.net/\",\"table\":\"https://sto4832.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res7712/providers/Microsoft.Storage/storageAccounts/sto5169\",\"identity\":{\"principalId\":\"424357ae-94eb-40d8-b95d-6276a4631fa4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto5169\",\"properties\":{\"creationTime\":\"2017-05-30T15:36:59.8942082Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:42.7411714Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.9340271Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto5169.blob.core.windows.net/\",\"file\":\"https://sto5169.file.core.windows.net/\",\"queue\":\"https://sto5169.queue.core.windows.net/\",\"table\":\"https://sto5169.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1317/providers/Microsoft.Storage/storageAccounts/sto5760\",\"identity\":{\"principalId\":\"621a6fb5-b591-4286-8cf7-07e98fd7605a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto5760\",\"properties\":{\"creationTime\":\"2017-05-27T03:18:00.4129729Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:08.9967937Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:35.5640720Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto5760.blob.core.windows.net/\",\"file\":\"https://sto5760.file.core.windows.net/\",\"queue\":\"https://sto5760.queue.core.windows.net/\",\"table\":\"https://sto5760.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res4930/providers/Microsoft.Storage/storageAccounts/sto6053\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto6053\",\"properties\":{\"creationTime\":\"2017-11-16T09:25:28.9450356Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:25:28.9470365Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:25:28.9470365Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto6053.blob.core.windows.net/\",\"file\":\"https://sto6053.file.core.windows.net/\",\"queue\":\"https://sto6053.queue.core.windows.net/\",\"table\":\"https://sto6053.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res4146/providers/Microsoft.Storage/storageAccounts/sto6416\",\"identity\":{\"principalId\":\"74d3d305-e248-4e1b-861e-9eaa4797fe4b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto6416\",\"properties\":{\"creationTime\":\"2017-05-27T15:59:35.2117470Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:09.4698254Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:36.2781240Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto6416.blob.core.windows.net/\",\"file\":\"https://sto6416.file.core.windows.net/\",\"queue\":\"https://sto6416.queue.core.windows.net/\",\"table\":\"https://sto6416.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/testcmk3/providers/Microsoft.Storage/storageAccounts/sto6637\",\"identity\":{\"principalId\":\"911871cc-ffd1-4fc4-ac11-7a316433ea66\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto6637\",\"properties\":{\"creationTime\":\"2017-05-24T10:09:39.5625175Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:42.5891543Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:36.9471724Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto6637.blob.core.windows.net/\",\"file\":\"https://sto6637.file.core.windows.net/\",\"queue\":\"https://sto6637.queue.core.windows.net/\",\"table\":\"https://sto6637.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res4063/providers/Microsoft.Storage/storageAccounts/sto6814\",\"identity\":{\"principalId\":\"d1c155b9-c90f-4715-952d-67d220267450\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto6814\",\"properties\":{\"creationTime\":\"2017-05-27T07:42:01.5213265Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:43.0632009Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:36.6701510Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto6814.blob.core.windows.net/\",\"file\":\"https://sto6814.file.core.windows.net/\",\"queue\":\"https://sto6814.queue.core.windows.net/\",\"table\":\"https://sto6814.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res7542/providers/Microsoft.Storage/storageAccounts/sto7466\",\"identity\":{\"principalId\":\"731ce13a-da8b-4fc6-a6e8-a3b36ce487b1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto7466\",\"properties\":{\"creationTime\":\"2017-05-27T03:26:11.4298464Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:09.8438923Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:37.3101976Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto7466.blob.core.windows.net/\",\"file\":\"https://sto7466.file.core.windows.net/\",\"queue\":\"https://sto7466.queue.core.windows.net/\",\"table\":\"https://sto7466.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res9816/providers/Microsoft.Storage/storageAccounts/sto7832\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto7832\",\"properties\":{\"creationTime\":\"2017-05-27T02:48:39.8125219Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:43.2912417Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:37.3381985Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto7832.blob.core.windows.net/\",\"file\":\"https://sto7832.file.core.windows.net/\",\"queue\":\"https://sto7832.queue.core.windows.net/\",\"table\":\"https://sto7832.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res5048/providers/Microsoft.Storage/storageAccounts/sto8345\",\"identity\":{\"principalId\":\"83ff0df9-7813-4bd6-9430-e2dc7f964a05\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto8345\",\"properties\":{\"creationTime\":\"2017-05-27T09:07:42.3027313Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:43.7332664Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:37.9652431Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto8345.blob.core.windows.net/\",\"file\":\"https://sto8345.file.core.windows.net/\",\"queue\":\"https://sto8345.queue.core.windows.net/\",\"table\":\"https://sto8345.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1153/providers/Microsoft.Storage/storageAccounts/sto8755\",\"identity\":{\"principalId\":\"3e9e2e24-27ac-4db1-aba3-ab15edf5c399\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto8755\",\"properties\":{\"creationTime\":\"2017-05-27T15:33:34.5655539Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:44.0613256Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:38.6432937Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto8755.blob.core.windows.net/\",\"file\":\"https://sto8755.file.core.windows.net/\",\"queue\":\"https://sto8755.queue.core.windows.net/\",\"table\":\"https://sto8755.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res3455/providers/Microsoft.Storage/storageAccounts/sto8818\",\"identity\":{\"principalId\":\"eafdef1e-74ec-47af-9b32-ca6c760067a5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto8818\",\"properties\":{\"creationTime\":\"2017-05-27T04:53:53.6535100Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:10.3149196Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:39.1973334Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto8818.blob.core.windows.net/\",\"file\":\"https://sto8818.file.core.windows.net/\",\"queue\":\"https://sto8818.queue.core.windows.net/\",\"table\":\"https://sto8818.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res5211/providers/Microsoft.Storage/storageAccounts/sto8964\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto8964\",\"properties\":{\"creationTime\":\"2017-11-17T02:24:17.4056988Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-17T02:24:17.4076988Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-17T02:24:17.4076988Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto8964.blob.core.windows.net/\",\"file\":\"https://sto8964.file.core.windows.net/\",\"queue\":\"https://sto8964.queue.core.windows.net/\",\"table\":\"https://sto8964.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/testcmk3/providers/Microsoft.Storage/storageAccounts/sto9174\",\"identity\":{\"principalId\":\"933e3ddf-1802-4a51-9469-18a33b576f88\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto9174\",\"properties\":{\"creationTime\":\"2017-05-24T09:46:19.6556989Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:44.2483159Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:39.4663504Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto9174.blob.core.windows.net/\",\"file\":\"https://sto9174.file.core.windows.net/\",\"queue\":\"https://sto9174.queue.core.windows.net/\",\"table\":\"https://sto9174.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2218/providers/Microsoft.Storage/storageAccounts/sto9413\",\"identity\":{\"principalId\":\"1470d029-3e90-4b34-90da-70a6adc3e6bc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto9413\",\"properties\":{\"creationTime\":\"2017-05-27T03:21:48.2923972Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:44.4163345Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:39.8423772Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto9413.blob.core.windows.net/\",\"file\":\"https://sto9413.file.core.windows.net/\",\"queue\":\"https://sto9413.queue.core.windows.net/\",\"table\":\"https://sto9413.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/testcmk3/providers/Microsoft.Storage/storageAccounts/sto943\",\"identity\":{\"principalId\":\"0dc30970-2e46-4ead-8811-cd88250ad016\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto943\",\"properties\":{\"creationTime\":\"2017-05-24T09:58:03.0774623Z\",\"encryption\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaultproperties\":{\"keyname\":\"testkey3\",\"keyvaulturi\":\"https://testkeyvaultcmk3.vault.azure.net/\",\"keyversion\":\"dccda185f55f4c34bcd2b86cc1bfff78\"},\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-05-24T09:58:36.6110136Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-05-24T09:58:36.6110136Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto943.blob.core.windows.net/\",\"file\":\"https://sto943.file.core.windows.net/\",\"queue\":\"https://sto943.queue.core.windows.net/\",\"table\":\"https://sto943.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res5304/providers/Microsoft.Storage/storageAccounts/sto9532\",\"identity\":{\"principalId\":\"a463dd9f-c0b4-44f2-b00b-2cb5715c8060\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto9532\",\"properties\":{\"creationTime\":\"2017-05-27T08:33:12.2310974Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:11.3200302Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:40.3494139Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto9532.blob.core.windows.net/\",\"file\":\"https://sto9532.file.core.windows.net/\",\"queue\":\"https://sto9532.queue.core.windows.net/\",\"table\":\"https://sto9532.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc1852\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"testacc1852\",\"properties\":{\"creationTime\":\"2017-12-12T05:48:39.8416479Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:48:39.8436478Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:48:39.8436478Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, AzureServices\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"23.45.67.90\"},{\"action\":\"Allow\",\"value\":\"23.45.67.91\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc1852.blob.core.windows.net/\",\"file\":\"https://testacc1852.file.core.windows.net/\",\"queue\":\"https://testacc1852.queue.core.windows.net/\",\"table\":\"https://testacc1852.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup7451/providers/Microsoft.Storage/storageAccounts/testacc4236\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"testacc4236\",\"properties\":{\"creationTime\":\"2017-12-12T05:46:47.7850070Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:46:47.7870078Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:46:47.7870078Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, AzureServices\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"23.45.67.90\"},{\"action\":\"Allow\",\"value\":\"23.45.67.91\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc4236.blob.core.windows.net/\",\"file\":\"https://testacc4236.file.core.windows.net/\",\"queue\":\"https://testacc4236.queue.core.windows.net/\",\"table\":\"https://testacc4236.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup2298/providers/Microsoft.Storage/storageAccounts/testacc7332\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"testacc7332\",\"properties\":{\"creationTime\":\"2017-12-12T05:39:01.7235525Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:39:01.7255510Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:39:01.7255510Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, AzureServices\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"23.45.67.90\"},{\"action\":\"Allow\",\"value\":\"23.45.67.91\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc7332.blob.core.windows.net/\",\"file\":\"https://testacc7332.file.core.windows.net/\",\"queue\":\"https://testacc7332.queue.core.windows.net/\",\"table\":\"https://testacc7332.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weiacl3\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weiacl3\",\"properties\":{\"creationTime\":\"2017-06-19T09:49:25.4010947Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:07:46.0956194Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:37.9528530Z\"}}},\"networkAcls\":{\"bypass\":\"Logging\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weiacl3.blob.core.windows.net/\",\"file\":\"https://weiacl3.file.core.windows.net/\",\"queue\":\"https://weiacl3.queue.core.windows.net/\",\"table\":\"https://weiacl3.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weiaclse\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weiaclse\",\"properties\":{\"creationTime\":\"2017-07-14T10:31:06.2570784Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T07:43:38.0734379Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:38.7629201Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, Metrics\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"63.0.66.176/12\"},{\"action\":\"Allow\",\"value\":\"57.1.157.210/22\"},{\"action\":\"Allow\",\"value\":\"91.2.221.149/23\"},{\"action\":\"Allow\",\"value\":\"87.3.114.168/29\"},{\"action\":\"Allow\",\"value\":\"37.4.105.241/8\"},{\"action\":\"Allow\",\"value\":\"29.5.98.46/21\"},{\"action\":\"Allow\",\"value\":\"96.6.245.35/20\"},{\"action\":\"Allow\",\"value\":\"79.7.4.73/15\"},{\"action\":\"Allow\",\"value\":\"59.8.83.149/21\"},{\"action\":\"Allow\",\"value\":\"34.9.129.212/5\"},{\"action\":\"Allow\",\"value\":\"92.10.170.218/19\"},{\"action\":\"Allow\",\"value\":\"96.11.182.8/26\"},{\"action\":\"Allow\",\"value\":\"60.12.33.132/19\"},{\"action\":\"Allow\",\"value\":\"91.13.24.126/7\"},{\"action\":\"Allow\",\"value\":\"17.14.249.110/17\"},{\"action\":\"Allow\",\"value\":\"53.15.37.242/27\"},{\"action\":\"Allow\",\"value\":\"62.16.26.56/16\"},{\"action\":\"Allow\",\"value\":\"86.17.245.182/24\"},{\"action\":\"Allow\",\"value\":\"61.18.204.86/16\"},{\"action\":\"Allow\",\"value\":\"57.19.139.188/8\"},{\"action\":\"Allow\",\"value\":\"92.20.66.31/19\"},{\"action\":\"Allow\",\"value\":\"54.21.161.145/14\"},{\"action\":\"Allow\",\"value\":\"84.22.96.158/9\"},{\"action\":\"Allow\",\"value\":\"17.23.69.170/23\"},{\"action\":\"Allow\",\"value\":\"74.24.244.14/26\"},{\"action\":\"Allow\",\"value\":\"54.25.123.5/18\"},{\"action\":\"Allow\",\"value\":\"47.26.184.20/4\"},{\"action\":\"Allow\",\"value\":\"77.27.241.173/16\"},{\"action\":\"Allow\",\"value\":\"32.28.45.161/7\"},{\"action\":\"Allow\",\"value\":\"12.29.76.103/28\"},{\"action\":\"Allow\",\"value\":\"57.30.194.183/15\"},{\"action\":\"Allow\",\"value\":\"41.31.109.183/9\"},{\"action\":\"Allow\",\"value\":\"22.32.142.212/17\"},{\"action\":\"Allow\",\"value\":\"54.33.219.194/14\"},{\"action\":\"Allow\",\"value\":\"32.34.135.62/23\"},{\"action\":\"Allow\",\"value\":\"59.35.115.178/26\"},{\"action\":\"Allow\",\"value\":\"72.36.22.12/27\"},{\"action\":\"Allow\",\"value\":\"67.37.113.194/13\"},{\"action\":\"Allow\",\"value\":\"59.38.27.88/22\"},{\"action\":\"Allow\",\"value\":\"78.39.136.64/29\"},{\"action\":\"Allow\",\"value\":\"11.40.195.250/6\"},{\"action\":\"Allow\",\"value\":\"21.41.29.11/12\"},{\"action\":\"Allow\",\"value\":\"47.42.47.250/15\"},{\"action\":\"Allow\",\"value\":\"15.43.161.100/3\"},{\"action\":\"Allow\",\"value\":\"16.44.212.200/8\"},{\"action\":\"Allow\",\"value\":\"44.45.209.171/21\"},{\"action\":\"Allow\",\"value\":\"80.46.106.4/12\"},{\"action\":\"Allow\",\"value\":\"56.47.8.174/21\"},{\"action\":\"Allow\",\"value\":\"35.48.65.196/23\"},{\"action\":\"Allow\",\"value\":\"52.49.128.196/18\"},{\"action\":\"Allow\",\"value\":\"15.50.170.124/14\"},{\"action\":\"Allow\",\"value\":\"51.51.68.92/27\"},{\"action\":\"Allow\",\"value\":\"73.52.67.171/28\"},{\"action\":\"Allow\",\"value\":\"76.53.252.154/6\"},{\"action\":\"Allow\",\"value\":\"19.54.75.103/21\"},{\"action\":\"Allow\",\"value\":\"19.55.166.220/12\"},{\"action\":\"Allow\",\"value\":\"54.56.71.55/24\"},{\"action\":\"Allow\",\"value\":\"87.57.153.157/17\"},{\"action\":\"Allow\",\"value\":\"16.58.51.54/21\"},{\"action\":\"Allow\",\"value\":\"40.59.54.59/16\"},{\"action\":\"Allow\",\"value\":\"15.60.25.172/8\"},{\"action\":\"Allow\",\"value\":\"42.61.190.244/9\"},{\"action\":\"Allow\",\"value\":\"68.62.149.176/6\"},{\"action\":\"Allow\",\"value\":\"19.63.18.125/12\"},{\"action\":\"Allow\",\"value\":\"81.64.27.244/6\"},{\"action\":\"Allow\",\"value\":\"15.65.143.15/4\"},{\"action\":\"Allow\",\"value\":\"67.66.27.222/16\"},{\"action\":\"Allow\",\"value\":\"79.67.227.216/26\"},{\"action\":\"Allow\",\"value\":\"16.68.223.165/1\"},{\"action\":\"Allow\",\"value\":\"96.69.156.7/22\"},{\"action\":\"Allow\",\"value\":\"39.70.235.39/9\"}],\"virtualNetworkRules\":[{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet1\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet2\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet3\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet4\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet5\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet6\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet7\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet8\",\"state\":\"Succeeded\"}]},\"primaryEndpoints\":{\"blob\":\"https://weiaclse.blob.core.windows.net/\",\"file\":\"https://weiaclse.file.core.windows.net/\",\"queue\":\"https://weiaclse.queue.core.windows.net/\",\"table\":\"https://weiaclse.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weiaclt\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weiaclt\",\"properties\":{\"creationTime\":\"2017-09-18T08:52:20.3522134Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-09-18T08:52:20.3542444Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-09-18T08:52:20.3542444Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weiaclt.blob.core.windows.net/\",\"file\":\"https://weiaclt.file.core.windows.net/\",\"queue\":\"https://weiaclt.queue.core.windows.net/\",\"table\":\"https://weiaclt.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weicmk4/providers/Microsoft.Storage/storageAccounts/weicmk4\",\"identity\":{\"principalId\":\"d8d77cf6-7ab9-4c92-b44a-58aa2e266c86\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weicmk4\",\"properties\":{\"creationTime\":\"2017-05-22T07:12:04.5461677Z\",\"encryption\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaultproperties\":{\"keyname\":\"weikey4\",\"keyvaulturi\":\"https://weikeyvaultcmk4.vault.azure.net/\",\"keyversion\":\"e76488bb22b148318fdb41c60863db66\"},\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-06T09:21:19.3091768Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-06T09:21:26.9077630Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weicmk4.blob.core.windows.net/\",\"file\":\"https://weicmk4.file.core.windows.net/\",\"queue\":\"https://weicmk4.queue.core.windows.net/\",\"table\":\"https://weicmk4.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weicmk4/providers/Microsoft.Storage/storageAccounts/weicmk5\",\"identity\":{\"principalId\":\"a53b1394-e72a-4f15-84a3-e6fc5f11300d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weicmk5\",\"properties\":{\"creationTime\":\"2017-05-27T08:57:49.9531321Z\",\"encryption\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaultproperties\":{\"keyname\":\"weikey5\",\"keyvaulturi\":\"https://weikeyvaultcmk5.vault.azure.net/\",\"keyversion\":\"01b4d7d2d0e94b2083413e310481400a\"},\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-05-27T09:03:16.2233853Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:39.0219409Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weicmk5.blob.core.windows.net/\",\"file\":\"https://weicmk5.file.core.windows.net/\",\"queue\":\"https://weicmk5.queue.core.windows.net/\",\"table\":\"https://weicmk5.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weicmk4/providers/Microsoft.Storage/storageAccounts/weicmk6\",\"identity\":{\"principalId\":\"d81ea1af-b0e3-4adb-87d9-addfc5ee04e9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weicmk6\",\"properties\":{\"creationTime\":\"2017-06-03T23:31:31.4642671Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:24:59.8929412Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:40.3480529Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weicmk6.blob.core.windows.net/\",\"file\":\"https://weicmk6.file.core.windows.net/\",\"queue\":\"https://weicmk6.queue.core.windows.net/\",\"table\":\"https://weicmk6.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weicmk4/providers/Microsoft.Storage/storageAccounts/weicmk7\",\"identity\":{\"principalId\":\"9d3055f0-bc00-4c9b-87da-28164586ee43\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weicmk7\",\"properties\":{\"creationTime\":\"2017-06-03T23:32:37.6107017Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:25:00.1499670Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:39.8230099Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weicmk7.blob.core.windows.net/\",\"file\":\"https://weicmk7.file.core.windows.net/\",\"queue\":\"https://weicmk7.queue.core.windows.net/\",\"table\":\"https://weicmk7.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/weitestacl2\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weitestacl2\",\"properties\":{\"creationTime\":\"2017-02-22T02:37:43.4478438Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-02-22T02:37:43.4478438Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-02-22T02:37:43.4478438Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weitestacl2.blob.core.windows.net/\",\"file\":\"https://weitestacl2.file.core.windows.net/\",\"queue\":\"https://weitestacl2.queue.core.windows.net/\",\"table\":\"https://weitestacl2.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', @@ -26,7 +26,7 @@ nock('http://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview') + .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01') .reply(200, "{\"value\":[{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/jasoneu/providers/Microsoft.Storage/storageAccounts/jasoneudiag811\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"jasoneudiag811\",\"properties\":{\"creationTime\":\"2017-08-18T08:12:26.7069156Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-04T04:06:24.4456365Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-07T16:52:44.7120241Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://jasoneudiag811.blob.core.windows.net/\",\"file\":\"https://jasoneudiag811.file.core.windows.net/\",\"queue\":\"https://jasoneudiag811.queue.core.windows.net/\",\"table\":\"https://jasoneudiag811.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weieastus22/providers/Microsoft.Storage/storageAccounts/weitest1\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"weitest1\",\"properties\":{\"creationTime\":\"2016-04-29T06:12:58.6740041Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T05:52:51.2026219Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weitest1.blob.core.windows.net/\",\"file\":\"https://weitest1.file.core.windows.net/\",\"queue\":\"https://weitest1.queue.core.windows.net/\",\"table\":\"https://weitest1.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlistandardlrsus\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"xiaonlistandardlrsus\",\"properties\":{\"creationTime\":\"2017-08-21T12:25:25.7659792Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-21T12:25:25.7659792Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-21T12:25:25.7659792Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xiaonlistandardlrsus.blob.core.windows.net/\",\"file\":\"https://xiaonlistandardlrsus.file.core.windows.net/\",\"queue\":\"https://xiaonlistandardlrsus.queue.core.windows.net/\",\"table\":\"https://xiaonlistandardlrsus.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://xiaonlistandardlrsus-secondary.blob.core.windows.net/\",\"queue\":\"https://xiaonlistandardlrsus-secondary.queue.core.windows.net/\",\"table\":\"https://xiaonlistandardlrsus-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlistandardlrsus2\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"xiaonlistandardlrsus2\",\"properties\":{\"creationTime\":\"2017-08-21T13:06:05.8345342Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-21T13:06:05.8345342Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-21T13:06:05.8345342Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xiaonlistandardlrsus2.blob.core.windows.net/\",\"file\":\"https://xiaonlistandardlrsus2.file.core.windows.net/\",\"queue\":\"https://xiaonlistandardlrsus2.queue.core.windows.net/\",\"table\":\"https://xiaonlistandardlrsus2.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://xiaonlistandardlrsus2-secondary.blob.core.windows.net/\",\"queue\":\"https://xiaonlistandardlrsus2-secondary.queue.core.windows.net/\",\"table\":\"https://xiaonlistandardlrsus2-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dailyregressionrg706930/providers/Microsoft.Storage/storageAccounts/adailyregression27\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"adailyregression27\",\"properties\":{\"creationTime\":\"2017-07-13T02:37:32.5647634Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-29T03:38:42.5934901Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-02T07:41:10.8504562Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://adailyregression27.blob.core.windows.net/\",\"file\":\"https://adailyregression27.file.core.windows.net/\",\"queue\":\"https://adailyregression27.queue.core.windows.net/\",\"table\":\"https://adailyregression27.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"hidden-DevTestLabs-LabUId\":\"fab5930e-27e7-4d8c-82e4-62d3bf5ccdad\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitest1/providers/Microsoft.Storage/storageAccounts/azcopyperf4\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"azcopyperf4\",\"properties\":{\"creationTime\":\"2017-12-01T04:25:26.6093939Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T04:25:26.6173934Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T04:25:26.6173934Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://azcopyperf4.blob.core.windows.net/\",\"file\":\"https://azcopyperf4.file.core.windows.net/\",\"queue\":\"https://azcopyperf4.queue.core.windows.net/\",\"table\":\"https://azcopyperf4.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitest1/providers/Microsoft.Storage/storageAccounts/azcopyperf5\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"azcopyperf5\",\"properties\":{\"creationTime\":\"2017-12-01T04:26:09.9513739Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T04:26:09.9663748Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T04:26:09.9663748Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://azcopyperf5.blob.core.windows.net/\",\"file\":\"https://azcopyperf5.file.core.windows.net/\",\"queue\":\"https://azcopyperf5.queue.core.windows.net/\",\"table\":\"https://azcopyperf5.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/jasontest/providers/Microsoft.Storage/storageAccounts/jasontesteu2\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"jasontesteu2\",\"properties\":{\"creationTime\":\"2017-06-21T07:16:12.7126104Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T20:30:19.6842704Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T22:33:03.4976273Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://jasontesteu2.blob.core.windows.net/\",\"file\":\"https://jasontesteu2.file.core.windows.net/\",\"queue\":\"https://jasontesteu2.queue.core.windows.net/\",\"table\":\"https://jasontesteu2.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://jasontesteu2-secondary.blob.core.windows.net/\",\"queue\":\"https://jasontesteu2-secondary.queue.core.windows.net/\",\"table\":\"https://jasontesteu2-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/premiumstorageaccount2\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"premiumstorageaccount2\",\"properties\":{\"creationTime\":\"2017-07-19T08:10:50.9345446Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-01T19:20:33.8195190Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-04T18:07:43.7068437Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://premiumstorageaccount2.blob.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/sflogsps1cluster6677\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"sflogsps1cluster6677\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:42.9164744Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sflogsps1cluster6677.blob.core.windows.net/\",\"file\":\"https://sflogsps1cluster6677.file.core.windows.net/\",\"queue\":\"https://sflogsps1cluster6677.queue.core.windows.net/\",\"table\":\"https://sflogsps1cluster6677.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weilinux/providers/Microsoft.Storage/storageAccounts/weilinuxdisks499\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"weilinuxdisks499\",\"properties\":{\"creationTime\":\"2017-05-08T07:29:08.8470437Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weilinuxdisks499.blob.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/default-storage-eastasia/providers/Microsoft.Storage/storageAccounts/weitesttemp1\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"weitesttemp1\",\"properties\":{\"creationTime\":\"2017-10-23T06:59:51.9237553Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-23T06:59:51.9567592Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-23T06:59:51.9567592Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weitesttemp1.blob.core.windows.net/\",\"file\":\"https://weitesttemp1.file.core.windows.net/\",\"queue\":\"https://weitesttemp1.queue.core.windows.net/\",\"table\":\"https://weitesttemp1.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlinodejsdiag709\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"xiaonlinodejsdiag709\",\"properties\":{\"creationTime\":\"2017-06-12T10:41:28.2812197Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xiaonlinodejsdiag709.blob.core.windows.net/\",\"file\":\"https://xiaonlinodejsdiag709.file.core.windows.net/\",\"queue\":\"https://xiaonlinodejsdiag709.queue.core.windows.net/\",\"table\":\"https://xiaonlinodejsdiag709.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc100\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc100\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:42.0272620Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc100.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc100.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc100.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc100.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc101\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc101\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:41.4622003Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc101.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc101.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc101.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc101.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc102\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc102\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:41.4702018Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc102.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc102.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc102.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc102.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc103\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc103\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:41.1351732Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc103.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc103.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc103.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc103.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/ps1cluster/providers/Microsoft.Storage/storageAccounts/ypzap3benvonc104\",\"kind\":\"Storage\",\"location\":\"eastus2\",\"name\":\"ypzap3benvonc104\",\"properties\":{\"creationTime\":\"2017-06-05T08:51:41.1431742Z\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ypzap3benvonc104.blob.core.windows.net/\",\"file\":\"https://ypzap3benvonc104.file.core.windows.net/\",\"queue\":\"https://ypzap3benvonc104.queue.core.windows.net/\",\"table\":\"https://ypzap3benvonc104.table.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"clusterName\":\"ps1cluster\",\"resourceType\":\"Service Fabric\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestxplattestarm02\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"dmtestxplattestarm02\",\"properties\":{\"creationTime\":\"2015-08-19T05:22:58.5226831Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-03T13:03:42.8722401Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-07T05:55:25.0572224Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://dmtestxplattestarm02.blob.core.windows.net/\",\"file\":\"https://dmtestxplattestarm02.file.core.windows.net/\",\"queue\":\"https://dmtestxplattestarm02.queue.core.windows.net/\",\"table\":\"https://dmtestxplattestarm02.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://dmtestxplattestarm02-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtestxplattestarm02-secondary.queue.core.windows.net/\",\"table\":\"https://dmtestxplattestarm02-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg1816/providers/Microsoft.Storage/storageAccounts/stopstestrg1816\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stopstestrg1816\",\"properties\":{\"creationTime\":\"2017-05-25T08:51:14.2824518Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-05T19:45:25.4890086Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://stopstestrg1816.blob.core.windows.net/\",\"file\":\"https://stopstestrg1816.file.core.windows.net/\",\"queue\":\"https://stopstestrg1816.queue.core.windows.net/\",\"table\":\"https://stopstestrg1816.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg5702/providers/Microsoft.Storage/storageAccounts/stopstestrg5702\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stopstestrg5702\",\"properties\":{\"creationTime\":\"2017-05-25T09:11:43.8237109Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-05-25T09:14:03.4010615Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://stopstestrg5702.blob.core.windows.net/\",\"file\":\"https://stopstestrg5702.file.core.windows.net/\",\"queue\":\"https://stopstestrg5702.queue.core.windows.net/\",\"table\":\"https://stopstestrg5702.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg6759/providers/Microsoft.Storage/storageAccounts/stopstestrg6759\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stopstestrg6759\",\"properties\":{\"creationTime\":\"2016-09-20T08:28:43.0167698Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-05T19:45:28.8733310Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://stopstestrg6759.blob.core.windows.net/\",\"file\":\"https://stopstestrg6759.file.core.windows.net/\",\"queue\":\"https://stopstestrg6759.queue.core.windows.net/\",\"table\":\"https://stopstestrg6759.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg9462/providers/Microsoft.Storage/storageAccounts/stopstestrg9462\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stopstestrg9462\",\"properties\":{\"creationTime\":\"2016-09-14T07:26:02.5078528Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-05T19:45:29.6084000Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://stopstestrg9462.blob.core.windows.net/\",\"file\":\"https://stopstestrg9462.file.core.windows.net/\",\"queue\":\"https://stopstestrg9462.queue.core.windows.net/\",\"table\":\"https://stopstestrg9462.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup2298/providers/Microsoft.Storage/storageAccounts/testacc1252\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc1252\",\"properties\":{\"creationTime\":\"2017-12-12T05:39:35.4642482Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:39:35.4662482Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:39:35.4662482Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc1252.blob.core.windows.net/\",\"file\":\"https://testacc1252.file.core.windows.net/\",\"queue\":\"https://testacc1252.queue.core.windows.net/\",\"table\":\"https://testacc1252.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup7451/providers/Microsoft.Storage/storageAccounts/testacc4986\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc4986\",\"properties\":{\"creationTime\":\"2017-12-12T05:47:26.6559638Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:47:26.9639792Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:47:26.9639792Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc4986.blob.core.windows.net/\",\"file\":\"https://testacc4986.file.core.windows.net/\",\"queue\":\"https://testacc4986.queue.core.windows.net/\",\"table\":\"https://testacc4986.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc6023\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:13.4663391Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:13.5583436Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc6023.blob.core.windows.net/\",\"file\":\"https://testacc6023.file.core.windows.net/\",\"queue\":\"https://testacc6023.queue.core.windows.net/\",\"table\":\"https://testacc6023.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{\"tag1\":\"val1\",\"tag2\":\"val2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc7701\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc7701\",\"properties\":{\"creationTime\":\"2017-12-12T05:49:46.4390005Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:46.4530009Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:49:46.4530009Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc7701.blob.core.windows.net/\",\"file\":\"https://testacc7701.file.core.windows.net/\",\"queue\":\"https://testacc7701.queue.core.windows.net/\",\"table\":\"https://testacc7701.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc8405\",\"kind\":\"BlobStorage\",\"location\":\"westus\",\"name\":\"testacc8405\",\"properties\":{\"accessTier\":\"Cool\",\"creationTime\":\"2017-12-12T05:50:19.7116957Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:19.7516788Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:19.7516788Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc8405.blob.core.windows.net/\",\"table\":\"https://testacc8405.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc9360\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"testacc9360\",\"properties\":{\"creationTime\":\"2017-12-12T05:50:53.0403515Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:53.0433575Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:50:53.0433575Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc9360.blob.core.windows.net/\",\"file\":\"https://testacc9360.file.core.windows.net/\",\"queue\":\"https://testacc9360.queue.core.windows.net/\",\"table\":\"https://testacc9360.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate3842/providers/Microsoft.Storage/storageAccounts/xplatteststorage12227\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage12227\",\"properties\":{\"creationTime\":\"2017-02-17T01:09:35.8131218Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-09-07T07:38:34.9812354Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-09-07T07:51:51.1667251Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage12227.blob.core.windows.net/\",\"file\":\"https://xplatteststorage12227.file.core.windows.net/\",\"queue\":\"https://xplatteststorage12227.queue.core.windows.net/\",\"table\":\"https://xplatteststorage12227.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate2923/providers/Microsoft.Storage/storageAccounts/xplatteststorage14808\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage14808\",\"properties\":{\"creationTime\":\"2017-02-17T01:25:34.0996543Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T07:35:34.3236931Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage14808.blob.core.windows.net/\",\"file\":\"https://xplatteststorage14808.file.core.windows.net/\",\"queue\":\"https://xplatteststorage14808.queue.core.windows.net/\",\"table\":\"https://xplatteststorage14808.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate630/providers/Microsoft.Storage/storageAccounts/xplatteststorage16015\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage16015\",\"properties\":{\"creationTime\":\"2017-02-17T02:47:54.3943263Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T07:35:34.9307510Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage16015.blob.core.windows.net/\",\"file\":\"https://xplatteststorage16015.file.core.windows.net/\",\"queue\":\"https://xplatteststorage16015.queue.core.windows.net/\",\"table\":\"https://xplatteststorage16015.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate5247/providers/Microsoft.Storage/storageAccounts/xplatteststorage17152\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage17152\",\"properties\":{\"creationTime\":\"2017-02-17T02:36:17.7886196Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T07:35:34.5427133Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage17152.blob.core.windows.net/\",\"file\":\"https://xplatteststorage17152.file.core.windows.net/\",\"queue\":\"https://xplatteststorage17152.queue.core.windows.net/\",\"table\":\"https://xplatteststorage17152.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattstpvmgcreate6294/providers/Microsoft.Storage/storageAccounts/xplatteststorage1816\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"xplatteststorage1816\",\"properties\":{\"creationTime\":\"2017-02-17T01:50:24.9592860Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-06T07:35:35.2547813Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage1816.blob.core.windows.net/\",\"file\":\"https://xplatteststorage1816.file.core.windows.net/\",\"queue\":\"https://xplatteststorage1816.queue.core.windows.net/\",\"table\":\"https://xplatteststorage1816.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/armclistoragegroup659/providers/Microsoft.Storage/storageAccounts/armclistorageaccount3030\",\"kind\":\"BlobStorage\",\"location\":\"westeurope\",\"name\":\"armclistorageaccount3030\",\"properties\":{\"accessTier\":\"Cool\",\"creationTime\":\"2017-02-13T08:10:58.0157969Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-25T03:19:31.5840809Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://armclistorageaccount3030.blob.core.windows.net/\",\"table\":\"https://armclistorageaccount3030.table.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/armclistoragegroup8981/providers/Microsoft.Storage/storageAccounts/armclistorageaccount3440\",\"kind\":\"Storage\",\"location\":\"westeurope\",\"name\":\"armclistorageaccount3440\",\"properties\":{\"creationTime\":\"2017-02-13T08:13:38.0197768Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-25T03:19:30.2779446Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://armclistorageaccount3440.blob.core.windows.net/\",\"file\":\"https://armclistorageaccount3440.file.core.windows.net/\",\"queue\":\"https://armclistorageaccount3440.queue.core.windows.net/\",\"table\":\"https://armclistorageaccount3440.table.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/armclistoragegroup9568/providers/Microsoft.Storage/storageAccounts/armclistorageaccount9465\",\"kind\":\"Storage\",\"location\":\"westeurope\",\"name\":\"armclistorageaccount9465\",\"properties\":{\"creationTime\":\"2017-02-13T08:15:38.4896336Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-25T03:19:31.1490611Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://armclistorageaccount9465.blob.core.windows.net/\",\"file\":\"https://armclistorageaccount9465.file.core.windows.net/\",\"queue\":\"https://armclistorageaccount9465.queue.core.windows.net/\",\"table\":\"https://armclistorageaccount9465.table.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplat-test-nic/providers/Microsoft.Storage/storageAccounts/xplattemptestaccount\",\"kind\":\"Storage\",\"location\":\"westeurope\",\"name\":\"xplattemptestaccount\",\"properties\":{\"creationTime\":\"2017-02-17T03:21:37.5052448Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-30T08:47:18.6215382Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://xplattemptestaccount.blob.core.windows.net/\",\"file\":\"https://xplattemptestaccount.file.core.windows.net/\",\"queue\":\"https://xplattemptestaccount.queue.core.windows.net/\",\"table\":\"https://xplattemptestaccount.table.core.windows.net/\"},\"primaryLocation\":\"westeurope\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/default-storage-eastasia/providers/Microsoft.Storage/storageAccounts/weixio\",\"name\":\"weixio\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.5470252Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.5470252Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-03T03:04:25.5166497Z\",\"primaryEndpoints\":{\"blob\":\"https://weixio.blob.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/hasontestnewsrp/providers/Microsoft.Storage/storageAccounts/haosntestnewsrp2\",\"name\":\"haosntestnewsrp2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.7030847Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-14T08:30:30.896398Z\",\"primaryEndpoints\":{\"blob\":\"https://haosntestnewsrp2.blob.core.windows.net/\",\"queue\":\"https://haosntestnewsrp2.queue.core.windows.net/\",\"table\":\"https://haosntestnewsrp2.table.core.windows.net/\",\"file\":\"https://haosntestnewsrp2.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlinodejsdiag931\",\"name\":\"xiaonlinodejsdiag931\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.7503809Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.7503809Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-06-30T09:53:09.1408508Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonlinodejsdiag931.blob.core.windows.net/\",\"queue\":\"https://xiaonlinodejsdiag931.queue.core.windows.net/\",\"table\":\"https://xiaonlinodejsdiag931.table.core.windows.net/\",\"file\":\"https://xiaonlinodejsdiag931.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/weieatest1\",\"name\":\"weieatest1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.0781837Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.0781837Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-09-20T09:14:34.6454817Z\",\"primaryEndpoints\":{\"blob\":\"https://weieatest1.blob.core.windows.net/\",\"queue\":\"https://weieatest1.queue.core.windows.net/\",\"table\":\"https://weieatest1.table.core.windows.net/\",\"file\":\"https://weieatest1.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/default-storage-eastasia/providers/Microsoft.Storage/storageAccounts/weiweitestrm\",\"name\":\"weiweitestrm\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.4219804Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.4219804Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2015-10-08T08:23:42.7095343Z\",\"primaryEndpoints\":{\"blob\":\"https://weiweitestrm.blob.core.windows.net/\",\"queue\":\"https://weiweitestrm.queue.core.windows.net/\",\"table\":\"https://weiweitestrm.table.core.windows.net/\",\"file\":\"https://weiweitestrm.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlinodeeastasia\",\"name\":\"xiaonlinodeeastasia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.6253812Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.6253812Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-21T05:02:09.183507Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonlinodeeastasia.blob.core.windows.net/\",\"queue\":\"https://xiaonlinodeeastasia.queue.core.windows.net/\",\"table\":\"https://xiaonlinodeeastasia.table.core.windows.net/\",\"file\":\"https://xiaonlinodeeastasia.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/hasontestnewsrp/providers/Microsoft.Storage/storageAccounts/haosntestnewsrp\",\"name\":\"haosntestnewsrp\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.5937168Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-14T08:29:18.126748Z\",\"primaryEndpoints\":{\"blob\":\"https://haosntestnewsrp.blob.core.windows.net/\",\"queue\":\"https://haosntestnewsrp.queue.core.windows.net/\",\"table\":\"https://haosntestnewsrp.table.core.windows.net/\",\"file\":\"https://haosntestnewsrp.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/hasontestfileer/providers/Microsoft.Storage/storageAccounts/hasontestfileer\",\"name\":\"hasontestfileer\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.8281337Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.8281337Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-13T08:19:15.2674907Z\",\"primaryEndpoints\":{\"blob\":\"https://hasontestfileer.blob.core.windows.net/\",\"queue\":\"https://hasontestfileer.queue.core.windows.net/\",\"table\":\"https://hasontestfileer.table.core.windows.net/\",\"file\":\"https://hasontestfileer.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"BlobStorage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/default-storage-eastasia/providers/Microsoft.Storage/storageAccounts/weiblobstorage\",\"name\":\"weiblobstorage\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.9531547Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.9531547Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-09T08:13:21.6856878Z\",\"primaryEndpoints\":{\"blob\":\"https://weiblobstorage.blob.core.windows.net/\",\"table\":\"https://weiblobstorage.table.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/armclistoragegroup3482/providers/Microsoft.Storage/storageAccounts/armclistorageaccount1329\",\"name\":\"armclistorageaccount1329\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.2026302Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.2026302Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-13T08:45:14.4423907Z\",\"primaryEndpoints\":{\"blob\":\"https://armclistorageaccount1329.blob.core.windows.net/\",\"queue\":\"https://armclistorageaccount1329.queue.core.windows.net/\",\"table\":\"https://armclistorageaccount1329.table.core.windows.net/\",\"file\":\"https://armclistorageaccount1329.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/xdmtestea01\",\"name\":\"xdmtestea01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.9846400Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.9846400Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-05-02T10:32:55.0022194Z\",\"primaryEndpoints\":{\"blob\":\"https://xdmtestea01.blob.core.windows.net/\",\"queue\":\"https://xdmtestea01.queue.core.windows.net/\",\"table\":\"https://xdmtestea01.table.core.windows.net/\",\"file\":\"https://xdmtestea01.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xdmtestea01-secondary.blob.core.windows.net/\",\"queue\":\"https://xdmtestea01-secondary.queue.core.windows.net/\",\"table\":\"https://xdmtestea01-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/xdmtestea02\",\"name\":\"xdmtestea02\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.3128009Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:37.3128009Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-05-02T10:34:57.9276556Z\",\"primaryEndpoints\":{\"blob\":\"https://xdmtestea02.blob.core.windows.net/\",\"queue\":\"https://xdmtestea02.queue.core.windows.net/\",\"table\":\"https://xdmtestea02.table.core.windows.net/\",\"file\":\"https://xdmtestea02.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xdmtestea02-secondary.blob.core.windows.net/\",\"queue\":\"https://xdmtestea02-secondary.queue.core.windows.net/\",\"table\":\"https://xdmtestea02-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_ZRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/weizrs\",\"name\":\"weizrs\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.6720417Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:36.6720417Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-09-20T02:40:43.6531498Z\",\"primaryEndpoints\":{\"blob\":\"https://weizrs.blob.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xplattestgvmcreate183/providers/Microsoft.Storage/storageAccounts/xplatteststorage15558\",\"name\":\"xplatteststorage15558\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.4618523Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.4618523Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-02-17T06:25:44.0489228Z\",\"primaryEndpoints\":{\"blob\":\"https://xplatteststorage15558.blob.core.windows.net/\",\"queue\":\"https://xplatteststorage15558.queue.core.windows.net/\",\"table\":\"https://xplatteststorage15558.table.core.windows.net/\",\"file\":\"https://xplatteststorage15558.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpexample2\",\"name\":\"dmtpexample2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.2587572Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.2587572Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-23T09:31:22.5891512Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpexample2.blob.core.windows.net/\",\"queue\":\"https://dmtpexample2.queue.core.windows.net/\",\"table\":\"https://dmtpexample2.table.core.windows.net/\",\"file\":\"https://dmtpexample2.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpexample2-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpexample2-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpexample2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf7\",\"name\":\"dmtpperf7\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:42:45.7967978Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:42:45.7967978Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:42:45.7499201Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf7.blob.core.windows.net/\",\"queue\":\"https://dmtpperf7.queue.core.windows.net/\",\"table\":\"https://dmtpperf7.table.core.windows.net/\",\"file\":\"https://dmtpperf7.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf7-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf7-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf7-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf6\",\"name\":\"dmtpperf6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:42:11.3641099Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:42:11.3641099Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:42:11.3329203Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf6.blob.core.windows.net/\",\"queue\":\"https://dmtpperf6.queue.core.windows.net/\",\"table\":\"https://dmtpperf6.table.core.windows.net/\",\"file\":\"https://dmtpperf6.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf6-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf6-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf6-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf5\",\"name\":\"dmtpperf5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:41:30.6426179Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:41:30.6426179Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:41:30.6043872Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf5.blob.core.windows.net/\",\"queue\":\"https://dmtpperf5.queue.core.windows.net/\",\"table\":\"https://dmtpperf5.table.core.windows.net/\",\"file\":\"https://dmtpperf5.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf5-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf5-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf5-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf4\",\"name\":\"dmtpperf4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:20:27.5006435Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:20:27.5006435Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:20:27.4537645Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf4.blob.core.windows.net/\",\"queue\":\"https://dmtpperf4.queue.core.windows.net/\",\"table\":\"https://dmtpperf4.table.core.windows.net/\",\"file\":\"https://dmtpperf4.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf4-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf4-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf4-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf3\",\"name\":\"dmtpperf3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:19:32.7709496Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:19:32.7709496Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:19:32.7396995Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf3.blob.core.windows.net/\",\"queue\":\"https://dmtpperf3.queue.core.windows.net/\",\"table\":\"https://dmtpperf3.table.core.windows.net/\",\"file\":\"https://dmtpperf3.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf3-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf3-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf3-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf2\",\"name\":\"dmtpperf2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:18:53.9426881Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:18:53.9426881Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:18:53.9114586Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf2.blob.core.windows.net/\",\"queue\":\"https://dmtpperf2.queue.core.windows.net/\",\"table\":\"https://dmtpperf2.table.core.windows.net/\",\"file\":\"https://dmtpperf2.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf2-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf2-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf1\",\"name\":\"dmtpperf1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:18:11.5870039Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:18:11.5870039Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:18:11.5557549Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf1.blob.core.windows.net/\",\"queue\":\"https://dmtpperf1.queue.core.windows.net/\",\"table\":\"https://dmtpperf1.table.core.windows.net/\",\"file\":\"https://dmtpperf1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf1-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf1-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestxplattestarm01\",\"name\":\"dmtestxplattestarm01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:32.9619244Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2015-08-19T05:21:45.7251846Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtestxplattestarm01.blob.core.windows.net/\",\"queue\":\"https://dmtestxplattestarm01.queue.core.windows.net/\",\"table\":\"https://dmtestxplattestarm01.table.core.windows.net/\",\"file\":\"https://dmtestxplattestarm01.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtestxplattestarm01-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtestxplattestarm01-secondary.queue.core.windows.net/\",\"table\":\"https://dmtestxplattestarm01-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf9\",\"name\":\"dmtpperf9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T02:22:47.1793303Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T02:22:47.1793303Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-12T02:22:47.1637557Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf9.blob.core.windows.net/\",\"queue\":\"https://dmtpperf9.queue.core.windows.net/\",\"table\":\"https://dmtpperf9.table.core.windows.net/\",\"file\":\"https://dmtpperf9.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf9-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf9-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf9-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf8\",\"name\":\"dmtpperf8\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:43:49.5896695Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-05T03:43:49.5896695Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-05T03:43:49.5588493Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf8.blob.core.windows.net/\",\"queue\":\"https://dmtpperf8.queue.core.windows.net/\",\"table\":\"https://dmtpperf8.table.core.windows.net/\",\"file\":\"https://dmtpperf8.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf8-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf8-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf8-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpperf10\",\"name\":\"dmtpperf10\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T02:23:37.1567640Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T02:23:37.1567640Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-12T02:23:37.1411250Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpperf10.blob.core.windows.net/\",\"queue\":\"https://dmtpperf10.queue.core.windows.net/\",\"table\":\"https://dmtpperf10.table.core.windows.net/\",\"file\":\"https://dmtpperf10.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpperf10-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpperf10-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpperf10-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/xdmtestxio\",\"name\":\"xdmtestxio\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\",\"tag3\":\"value3\"},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.6649933Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.6649933Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2016-03-28T02:31:52.2539851Z\",\"primaryEndpoints\":{\"blob\":\"https://xdmtestxio.blob.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtp\",\"name\":\"dmtp\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.3681413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.3681413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-23T07:36:43.5854181Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtp.blob.core.windows.net/\",\"queue\":\"https://dmtp.queue.core.windows.net/\",\"table\":\"https://dmtp.table.core.windows.net/\",\"file\":\"https://dmtp.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtp-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtp-secondary.queue.core.windows.net/\",\"table\":\"https://dmtp-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpexample1\",\"name\":\"dmtpexample1\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.8837697Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.8837697Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-23T09:30:46.6206238Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpexample1.blob.core.windows.net/\",\"queue\":\"https://dmtpexample1.queue.core.windows.net/\",\"table\":\"https://dmtpexample1.table.core.windows.net/\",\"file\":\"https://dmtpexample1.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://dmtpexample1-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtpexample1-secondary.queue.core.windows.net/\",\"table\":\"https://dmtpexample1-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlipresoutheastasia\",\"name\":\"xiaonlipresoutheastasia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.3212437Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.3212437Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-21T12:08:49.9437564Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonlipresoutheastasia.blob.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonlinodeeastasia2\",\"name\":\"xiaonlinodeeastasia2\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.8056183Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:34.8056183Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-21T13:10:33.2145446Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonlinodeeastasia2.blob.core.windows.net/\",\"queue\":\"https://xiaonlinodeeastasia2.queue.core.windows.net/\",\"table\":\"https://xiaonlinodeeastasia2.table.core.windows.net/\",\"file\":\"https://xiaonlinodeeastasia2.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xiaonlinodeeastasia2-secondary.blob.core.windows.net/\",\"queue\":\"https://xiaonlinodeeastasia2-secondary.queue.core.windows.net/\",\"table\":\"https://xiaonlinodeeastasia2-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonliphp/providers/Microsoft.Storage/storageAccounts/xiaonliphputsoutheast\",\"name\":\"xiaonliphputsoutheast\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.1805891Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:35.1805891Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-08-15T09:01:07.9295463Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonliphputsoutheast.blob.core.windows.net/\",\"queue\":\"https://xiaonliphputsoutheast.queue.core.windows.net/\",\"table\":\"https://xiaonliphputsoutheast.table.core.windows.net/\",\"file\":\"https://xiaonliphputsoutheast.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/browserifytest5\",\"name\":\"browserifytest5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:32.3994134Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:32.3994134Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-06-13T03:08:39.2385895Z\",\"primaryEndpoints\":{\"blob\":\"https://browserifytest5.blob.core.windows.net/\",\"queue\":\"https://browserifytest5.queue.core.windows.net/\",\"table\":\"https://browserifytest5.table.core.windows.net/\",\"file\":\"https://browserifytest5.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastasia\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://browserifytest5-secondary.blob.core.windows.net/\",\"queue\":\"https://browserifytest5-secondary.queue.core.windows.net/\",\"table\":\"https://browserifytest5-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/dmtp/providers/Microsoft.Storage/storageAccounts/dmtpdiag674\",\"name\":\"dmtpdiag674\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"southeastasia\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.7431352Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T02:53:33.7431352Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-23T07:57:33.2111048Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtpdiag674.blob.core.windows.net/\",\"queue\":\"https://dmtpdiag674.queue.core.windows.net/\",\"table\":\"https://dmtpdiag674.table.core.windows.net/\",\"file\":\"https://dmtpdiag674.file.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"statusOfPrimary\":\"available\"}},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestpshtestarm01\",\"kind\":\"Storage\",\"location\":\"japaneast\",\"name\":\"dmtestpshtestarm01\",\"properties\":{\"creationTime\":\"2015-10-23T10:44:00.5486895Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T05:28:44.1722383Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T09:21:19.0916914Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm01.blob.core.windows.net/\",\"file\":\"https://dmtestpshtestarm01.file.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm01.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm01.table.core.windows.net/\"},\"primaryLocation\":\"japaneast\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm01-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm01-secondary.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm01-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"japanwest\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestpshtestarm05\",\"kind\":\"Storage\",\"location\":\"japaneast\",\"name\":\"dmtestpshtestarm05\",\"properties\":{\"creationTime\":\"2017-05-09T03:46:08.8528718Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T05:28:45.7933809Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T09:21:20.2357923Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm05.blob.core.windows.net/\",\"file\":\"https://dmtestpshtestarm05.file.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm05.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm05.table.core.windows.net/\"},\"primaryLocation\":\"japaneast\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"japanwest\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/dmtestpshtestarm02\",\"kind\":\"Storage\",\"location\":\"japanwest\",\"name\":\"dmtestpshtestarm02\",\"properties\":{\"creationTime\":\"2015-10-23T10:44:49.4760450Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T05:28:43.8572120Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T09:21:18.8496680Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm02.blob.core.windows.net/\",\"file\":\"https://dmtestpshtestarm02.file.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm02.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm02.table.core.windows.net/\"},\"primaryLocation\":\"japanwest\",\"provisioningState\":\"Succeeded\",\"secondaryEndpoints\":{\"blob\":\"https://dmtestpshtestarm02-secondary.blob.core.windows.net/\",\"queue\":\"https://dmtestpshtestarm02-secondary.queue.core.windows.net/\",\"table\":\"https://dmtestpshtestarm02-secondary.table.core.windows.net/\"},\"secondaryLocation\":\"japaneast\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/ie11memoryleaka0c2\",\"kind\":\"Storage\",\"location\":\"southcentralus\",\"name\":\"ie11memoryleaka0c2\",\"properties\":{\"creationTime\":\"2017-06-28T06:29:29.7494852Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T18:19:16.5446760Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-03T20:29:28.1129399Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://ie11memoryleaka0c2.blob.core.windows.net/\",\"file\":\"https://ie11memoryleaka0c2.file.core.windows.net/\",\"queue\":\"https://ie11memoryleaka0c2.queue.core.windows.net/\",\"table\":\"https://ie11memoryleaka0c2.table.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weistoragev24\",\"name\":\"weistoragev24\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-08T07:02:40.9121114Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-08T07:02:40.9121114Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-12-08T07:02:40.9121114Z\",\"primaryEndpoints\":{\"blob\":\"https://weistoragev24.blob.core.windows.net/\",\"queue\":\"https://weistoragev24.queue.core.windows.net/\",\"table\":\"https://weistoragev24.table.core.windows.net/\",\"file\":\"https://weistoragev24.file.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weistoragev2try\",\"name\":\"weistoragev2try\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-01T01:51:09.6863590Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-01T01:51:09.6863590Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-01T01:51:09.6238455Z\",\"primaryEndpoints\":{\"blob\":\"https://weistoragev2try.blob.core.windows.net/\",\"queue\":\"https://weistoragev2try.queue.core.windows.net/\",\"table\":\"https://weistoragev2try.table.core.windows.net/\",\"file\":\"https://weistoragev2try.file.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"BlobStorage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xarchivega\",\"name\":\"xarchivega\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T09:21:13.3282412Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T09:21:13.3282412Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-30T09:21:13.3125630Z\",\"primaryEndpoints\":{\"blob\":\"https://xarchivega.blob.core.windows.net/\",\"table\":\"https://xarchivega.table.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus(stage)\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xarchivega-secondary.blob.core.windows.net/\",\"table\":\"https://xarchivega-secondary.table.core.windows.net/\"}}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weistoragetry\",\"name\":\"weistoragetry\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-03T08:12:36.1956216Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-03T08:12:36.1487384Z\",\"primaryEndpoints\":{\"blob\":\"https://weistoragetry.blob.core.windows.net/\",\"queue\":\"https://weistoragetry.queue.core.windows.net/\",\"table\":\"https://weistoragetry.table.core.windows.net/\",\"file\":\"https://weistoragetry.file.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\"}},{\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/clitestfjhswmodscrpywrbr/providers/Microsoft.Storage/storageAccounts/dmtestsrp02\",\"name\":\"dmtestsrp02\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-20T09:50:24.5650105Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-20T09:50:24.5650105Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-20T09:50:24.5650105Z\",\"primaryEndpoints\":{\"blob\":\"https://dmtestsrp02.blob.core.windows.net/\",\"queue\":\"https://dmtestsrp02.queue.core.windows.net/\",\"table\":\"https://dmtestsrp02.table.core.windows.net/\",\"file\":\"https://dmtestsrp02.file.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\",\"customDomain\":{\"name\":\"dmtestsrp02.sn3.azure-test.net\"}}},{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"BlobStorage\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xiaonlinodejs/providers/Microsoft.Storage/storageAccounts/xiaonliarchivega\",\"name\":\"xiaonliarchivega\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus2(stage)\",\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"72f988bf-86f1-41af-91ab-2d7cd011db47\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T09:20:12.3876552Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-30T09:20:12.3876552Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2017-11-30T09:20:12.3407861Z\",\"primaryEndpoints\":{\"blob\":\"https://xiaonliarchivega.blob.core.windows.net/\",\"table\":\"https://xiaonliarchivega.table.core.windows.net/\"},\"primaryLocation\":\"eastus2(stage)\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"northcentralus(stage)\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"blob\":\"https://xiaonliarchivega-secondary.blob.core.windows.net/\",\"table\":\"https://xiaonliarchivega-secondary.table.core.windows.net/\"}}},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/cmkdemo1/providers/Microsoft.Storage/storageAccounts/cmkdemo1\",\"identity\":{\"principalId\":\"c6a5a27c-c392-4896-8a5f-976acf299ea2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"cmkdemo1\",\"properties\":{\"creationTime\":\"2017-08-17T06:53:42.1177028Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-17T06:57:10.9678665Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T10:57:08.5216655Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://cmkdemo1.blob.core.windows.net/\",\"file\":\"https://cmkdemo1.file.core.windows.net/\",\"queue\":\"https://cmkdemo1.queue.core.windows.net/\",\"table\":\"https://cmkdemo1.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/cmkdemo/providers/Microsoft.Storage/storageAccounts/cmkdemoacc\",\"identity\":{\"principalId\":\"ed61ddbf-df50-4193-91db-3020be4fc83b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"cmkdemoacc\",\"properties\":{\"creationTime\":\"2017-08-17T08:10:28.5184106Z\",\"encryption\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaultproperties\":{\"keyname\":\"cmkdemokey\",\"keyvaulturi\":\"https://cmkdemokeyvault.vault.azure.net/\",\"keyversion\":\"4db380ac849d4dad8a62e31e5caa8e96\"},\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-08-17T08:17:47.9081544Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T10:57:08.4466617Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://cmkdemoacc.blob.core.windows.net/\",\"file\":\"https://cmkdemoacc.file.core.windows.net/\",\"queue\":\"https://cmkdemoacc.queue.core.windows.net/\",\"table\":\"https://cmkdemoacc.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1932/providers/Microsoft.Storage/storageAccounts/sto1226\",\"identity\":{\"principalId\":\"f2bee145-b5ad-41a8-9d55-eca5118c52a7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto1226\",\"properties\":{\"creationTime\":\"2017-05-27T04:48:30.2037785Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:39.1558186Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:29.9436713Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"20.11.0.0/16\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto1226.blob.core.windows.net/\",\"file\":\"https://sto1226.file.core.windows.net/\",\"queue\":\"https://sto1226.queue.core.windows.net/\",\"table\":\"https://sto1226.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res3770/providers/Microsoft.Storage/storageAccounts/sto1628\",\"identity\":{\"principalId\":\"e79db678-a18f-4309-a89e-79a79798f7a9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto1628\",\"properties\":{\"creationTime\":\"2017-05-27T04:38:10.0153883Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:40.0079401Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:31.1497575Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"20.11.0.0/16\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto1628.blob.core.windows.net/\",\"file\":\"https://sto1628.file.core.windows.net/\",\"queue\":\"https://sto1628.queue.core.windows.net/\",\"table\":\"https://sto1628.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res8135/providers/Microsoft.Storage/storageAccounts/sto1795\",\"identity\":{\"principalId\":\"252ba1b9-129c-44c9-a538-a1bbb63620c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto1795\",\"properties\":{\"creationTime\":\"2017-05-27T08:12:12.3787638Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:39.7528769Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:31.6447935Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto1795.blob.core.windows.net/\",\"file\":\"https://sto1795.file.core.windows.net/\",\"queue\":\"https://sto1795.queue.core.windows.net/\",\"table\":\"https://sto1795.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res3643/providers/Microsoft.Storage/storageAccounts/sto2322\",\"identity\":{\"principalId\":\"b000de10-d601-4237-be24-dddca855a265\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto2322\",\"properties\":{\"creationTime\":\"2017-05-27T08:25:16.7031053Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:40.4459451Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:31.8768143Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto2322.blob.core.windows.net/\",\"file\":\"https://sto2322.file.core.windows.net/\",\"queue\":\"https://sto2322.queue.core.windows.net/\",\"table\":\"https://sto2322.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res8711/providers/Microsoft.Storage/storageAccounts/sto2341\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto2341\",\"properties\":{\"creationTime\":\"2017-11-16T09:29:57.6657277Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:29:57.6677588Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:29:57.6677588Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto2341.blob.core.windows.net/\",\"file\":\"https://sto2341.file.core.windows.net/\",\"queue\":\"https://sto2341.queue.core.windows.net/\",\"table\":\"https://sto2341.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2290/providers/Microsoft.Storage/storageAccounts/sto2420\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto2420\",\"properties\":{\"creationTime\":\"2017-11-16T09:32:44.6578128Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:32:44.6638132Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:32:44.6638132Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto2420.blob.core.windows.net/\",\"file\":\"https://sto2420.file.core.windows.net/\",\"queue\":\"https://sto2420.queue.core.windows.net/\",\"table\":\"https://sto2420.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6085/providers/Microsoft.Storage/storageAccounts/sto2764\",\"identity\":{\"principalId\":\"e9a2517f-00f4-4b56-bb24-22875dac1cfd\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto2764\",\"properties\":{\"creationTime\":\"2017-05-27T07:43:59.8825067Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:06.9395784Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:32.3728489Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto2764.blob.core.windows.net/\",\"file\":\"https://sto2764.file.core.windows.net/\",\"queue\":\"https://sto2764.queue.core.windows.net/\",\"table\":\"https://sto2764.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res8297/providers/Microsoft.Storage/storageAccounts/sto3056\",\"identity\":{\"principalId\":\"f0894d88-5721-4384-8622-9976c611213d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3056\",\"properties\":{\"creationTime\":\"2017-05-27T03:48:33.4926786Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:06.9625946Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:32.6008614Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3056.blob.core.windows.net/\",\"file\":\"https://sto3056.file.core.windows.net/\",\"queue\":\"https://sto3056.queue.core.windows.net/\",\"table\":\"https://sto3056.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res7320/providers/Microsoft.Storage/storageAccounts/sto3061\",\"identity\":{\"principalId\":\"60020e7a-77ac-4a82-a651-f24a4127b541\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3061\",\"properties\":{\"creationTime\":\"2017-05-27T04:34:52.0693890Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:42.1301241Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:32.9988893Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3061.blob.core.windows.net/\",\"file\":\"https://sto3061.file.core.windows.net/\",\"queue\":\"https://sto3061.queue.core.windows.net/\",\"table\":\"https://sto3061.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6893/providers/Microsoft.Storage/storageAccounts/sto3442\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3442\",\"properties\":{\"creationTime\":\"2017-11-16T09:59:35.8675362Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:59:35.8695486Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:59:35.8695486Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3442.blob.core.windows.net/\",\"file\":\"https://sto3442.file.core.windows.net/\",\"queue\":\"https://sto3442.queue.core.windows.net/\",\"table\":\"https://sto3442.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res3657/providers/Microsoft.Storage/storageAccounts/sto3474\",\"identity\":{\"principalId\":\"4d7c47e6-3b06-4697-bb36-72858f634ead\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3474\",\"properties\":{\"creationTime\":\"2017-05-27T04:46:04.9595711Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:07.3706203Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:32.9588885Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3474.blob.core.windows.net/\",\"file\":\"https://sto3474.file.core.windows.net/\",\"queue\":\"https://sto3474.queue.core.windows.net/\",\"table\":\"https://sto3474.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2640/providers/Microsoft.Storage/storageAccounts/sto3593\",\"identity\":{\"principalId\":\"df95b8f9-bb60-4826-b2c1-6c7dd9f113f1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3593\",\"properties\":{\"creationTime\":\"2017-05-30T16:50:04.0004530Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:07.3046139Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:33.7119407Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3593.blob.core.windows.net/\",\"file\":\"https://sto3593.file.core.windows.net/\",\"queue\":\"https://sto3593.queue.core.windows.net/\",\"table\":\"https://sto3593.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/testcmk3/providers/Microsoft.Storage/storageAccounts/sto3699\",\"identity\":{\"principalId\":\"356d057d-cba5-44dd-8a30-b2e547bc416b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3699\",\"properties\":{\"creationTime\":\"2017-05-24T10:06:30.6093014Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:07.6356449Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.0829676Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3699.blob.core.windows.net/\",\"file\":\"https://sto3699.file.core.windows.net/\",\"queue\":\"https://sto3699.queue.core.windows.net/\",\"table\":\"https://sto3699.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res146/providers/Microsoft.Storage/storageAccounts/sto3758\",\"identity\":{\"principalId\":\"6f911142-fed9-4c20-bbeb-c38cb9c9390c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto3758\",\"properties\":{\"creationTime\":\"2017-05-27T07:50:35.2096719Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:07.9246945Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.2409823Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto3758.blob.core.windows.net/\",\"file\":\"https://sto3758.file.core.windows.net/\",\"queue\":\"https://sto3758.queue.core.windows.net/\",\"table\":\"https://sto3758.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1242/providers/Microsoft.Storage/storageAccounts/sto393\",\"identity\":{\"principalId\":\"82961471-55c3-471d-8a90-be9b2b5cdce2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto393\",\"properties\":{\"creationTime\":\"2017-05-27T09:45:30.7718539Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:08.0126831Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.3919886Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto393.blob.core.windows.net/\",\"file\":\"https://sto393.file.core.windows.net/\",\"queue\":\"https://sto393.queue.core.windows.net/\",\"table\":\"https://sto393.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res6121/providers/Microsoft.Storage/storageAccounts/sto4475\",\"identity\":{\"principalId\":\"a692f3b8-80a3-47ff-abc2-552012155f7a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto4475\",\"properties\":{\"creationTime\":\"2017-11-16T08:04:12.5760709Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T08:04:12.5840719Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T08:04:12.5840719Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto4475.blob.core.windows.net/\",\"file\":\"https://sto4475.file.core.windows.net/\",\"queue\":\"https://sto4475.queue.core.windows.net/\",\"table\":\"https://sto4475.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2854/providers/Microsoft.Storage/storageAccounts/sto4832\",\"identity\":{\"principalId\":\"dd8fc0b6-c8f3-46b6-b184-1bbd1714813b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto4832\",\"properties\":{\"creationTime\":\"2017-05-27T03:10:23.4144941Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:08.2947235Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.8800233Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto4832.blob.core.windows.net/\",\"file\":\"https://sto4832.file.core.windows.net/\",\"queue\":\"https://sto4832.queue.core.windows.net/\",\"table\":\"https://sto4832.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res7712/providers/Microsoft.Storage/storageAccounts/sto5169\",\"identity\":{\"principalId\":\"424357ae-94eb-40d8-b95d-6276a4631fa4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto5169\",\"properties\":{\"creationTime\":\"2017-05-30T15:36:59.8942082Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:42.7411714Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:34.9340271Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto5169.blob.core.windows.net/\",\"file\":\"https://sto5169.file.core.windows.net/\",\"queue\":\"https://sto5169.queue.core.windows.net/\",\"table\":\"https://sto5169.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1317/providers/Microsoft.Storage/storageAccounts/sto5760\",\"identity\":{\"principalId\":\"621a6fb5-b591-4286-8cf7-07e98fd7605a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto5760\",\"properties\":{\"creationTime\":\"2017-05-27T03:18:00.4129729Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:08.9967937Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:35.5640720Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto5760.blob.core.windows.net/\",\"file\":\"https://sto5760.file.core.windows.net/\",\"queue\":\"https://sto5760.queue.core.windows.net/\",\"table\":\"https://sto5760.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res4930/providers/Microsoft.Storage/storageAccounts/sto6053\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto6053\",\"properties\":{\"creationTime\":\"2017-11-16T09:25:28.9450356Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:25:28.9470365Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-16T09:25:28.9470365Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto6053.blob.core.windows.net/\",\"file\":\"https://sto6053.file.core.windows.net/\",\"queue\":\"https://sto6053.queue.core.windows.net/\",\"table\":\"https://sto6053.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res4146/providers/Microsoft.Storage/storageAccounts/sto6416\",\"identity\":{\"principalId\":\"74d3d305-e248-4e1b-861e-9eaa4797fe4b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto6416\",\"properties\":{\"creationTime\":\"2017-05-27T15:59:35.2117470Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:09.4698254Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:36.2781240Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto6416.blob.core.windows.net/\",\"file\":\"https://sto6416.file.core.windows.net/\",\"queue\":\"https://sto6416.queue.core.windows.net/\",\"table\":\"https://sto6416.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/testcmk3/providers/Microsoft.Storage/storageAccounts/sto6637\",\"identity\":{\"principalId\":\"911871cc-ffd1-4fc4-ac11-7a316433ea66\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto6637\",\"properties\":{\"creationTime\":\"2017-05-24T10:09:39.5625175Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:42.5891543Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:36.9471724Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto6637.blob.core.windows.net/\",\"file\":\"https://sto6637.file.core.windows.net/\",\"queue\":\"https://sto6637.queue.core.windows.net/\",\"table\":\"https://sto6637.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res4063/providers/Microsoft.Storage/storageAccounts/sto6814\",\"identity\":{\"principalId\":\"d1c155b9-c90f-4715-952d-67d220267450\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto6814\",\"properties\":{\"creationTime\":\"2017-05-27T07:42:01.5213265Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:43.0632009Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:36.6701510Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto6814.blob.core.windows.net/\",\"file\":\"https://sto6814.file.core.windows.net/\",\"queue\":\"https://sto6814.queue.core.windows.net/\",\"table\":\"https://sto6814.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res7542/providers/Microsoft.Storage/storageAccounts/sto7466\",\"identity\":{\"principalId\":\"731ce13a-da8b-4fc6-a6e8-a3b36ce487b1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto7466\",\"properties\":{\"creationTime\":\"2017-05-27T03:26:11.4298464Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:09.8438923Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:37.3101976Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto7466.blob.core.windows.net/\",\"file\":\"https://sto7466.file.core.windows.net/\",\"queue\":\"https://sto7466.queue.core.windows.net/\",\"table\":\"https://sto7466.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res9816/providers/Microsoft.Storage/storageAccounts/sto7832\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto7832\",\"properties\":{\"creationTime\":\"2017-05-27T02:48:39.8125219Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:43.2912417Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:37.3381985Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto7832.blob.core.windows.net/\",\"file\":\"https://sto7832.file.core.windows.net/\",\"queue\":\"https://sto7832.queue.core.windows.net/\",\"table\":\"https://sto7832.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res5048/providers/Microsoft.Storage/storageAccounts/sto8345\",\"identity\":{\"principalId\":\"83ff0df9-7813-4bd6-9430-e2dc7f964a05\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto8345\",\"properties\":{\"creationTime\":\"2017-05-27T09:07:42.3027313Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:43.7332664Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:37.9652431Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto8345.blob.core.windows.net/\",\"file\":\"https://sto8345.file.core.windows.net/\",\"queue\":\"https://sto8345.queue.core.windows.net/\",\"table\":\"https://sto8345.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res1153/providers/Microsoft.Storage/storageAccounts/sto8755\",\"identity\":{\"principalId\":\"3e9e2e24-27ac-4db1-aba3-ab15edf5c399\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto8755\",\"properties\":{\"creationTime\":\"2017-05-27T15:33:34.5655539Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:44.0613256Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:38.6432937Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto8755.blob.core.windows.net/\",\"file\":\"https://sto8755.file.core.windows.net/\",\"queue\":\"https://sto8755.queue.core.windows.net/\",\"table\":\"https://sto8755.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res3455/providers/Microsoft.Storage/storageAccounts/sto8818\",\"identity\":{\"principalId\":\"eafdef1e-74ec-47af-9b32-ca6c760067a5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto8818\",\"properties\":{\"creationTime\":\"2017-05-27T04:53:53.6535100Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:10.3149196Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:39.1973334Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto8818.blob.core.windows.net/\",\"file\":\"https://sto8818.file.core.windows.net/\",\"queue\":\"https://sto8818.queue.core.windows.net/\",\"table\":\"https://sto8818.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res5211/providers/Microsoft.Storage/storageAccounts/sto8964\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto8964\",\"properties\":{\"creationTime\":\"2017-11-17T02:24:17.4056988Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-17T02:24:17.4076988Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-11-17T02:24:17.4076988Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto8964.blob.core.windows.net/\",\"file\":\"https://sto8964.file.core.windows.net/\",\"queue\":\"https://sto8964.queue.core.windows.net/\",\"table\":\"https://sto8964.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/testcmk3/providers/Microsoft.Storage/storageAccounts/sto9174\",\"identity\":{\"principalId\":\"933e3ddf-1802-4a51-9469-18a33b576f88\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto9174\",\"properties\":{\"creationTime\":\"2017-05-24T09:46:19.6556989Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:44.2483159Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:39.4663504Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto9174.blob.core.windows.net/\",\"file\":\"https://sto9174.file.core.windows.net/\",\"queue\":\"https://sto9174.queue.core.windows.net/\",\"table\":\"https://sto9174.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res2218/providers/Microsoft.Storage/storageAccounts/sto9413\",\"identity\":{\"principalId\":\"1470d029-3e90-4b34-90da-70a6adc3e6bc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto9413\",\"properties\":{\"creationTime\":\"2017-05-27T03:21:48.2923972Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:21:44.4163345Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:39.8423772Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto9413.blob.core.windows.net/\",\"file\":\"https://sto9413.file.core.windows.net/\",\"queue\":\"https://sto9413.queue.core.windows.net/\",\"table\":\"https://sto9413.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/testcmk3/providers/Microsoft.Storage/storageAccounts/sto943\",\"identity\":{\"principalId\":\"0dc30970-2e46-4ead-8811-cd88250ad016\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto943\",\"properties\":{\"creationTime\":\"2017-05-24T09:58:03.0774623Z\",\"encryption\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaultproperties\":{\"keyname\":\"testkey3\",\"keyvaulturi\":\"https://testkeyvaultcmk3.vault.azure.net/\",\"keyversion\":\"dccda185f55f4c34bcd2b86cc1bfff78\"},\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-05-24T09:58:36.6110136Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-05-24T09:58:36.6110136Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto943.blob.core.windows.net/\",\"file\":\"https://sto943.file.core.windows.net/\",\"queue\":\"https://sto943.queue.core.windows.net/\",\"table\":\"https://sto943.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/res5304/providers/Microsoft.Storage/storageAccounts/sto9532\",\"identity\":{\"principalId\":\"a463dd9f-c0b4-44f2-b00b-2cb5715c8060\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"sto9532\",\"properties\":{\"creationTime\":\"2017-05-27T08:33:12.2310974Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:05:11.3200302Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T21:09:40.3494139Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://sto9532.blob.core.windows.net/\",\"file\":\"https://sto9532.file.core.windows.net/\",\"queue\":\"https://sto9532.queue.core.windows.net/\",\"table\":\"https://sto9532.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{\"key1\":\"value1\",\"key2\":\"value2\"},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup8499/providers/Microsoft.Storage/storageAccounts/testacc1852\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"testacc1852\",\"properties\":{\"creationTime\":\"2017-12-12T05:48:39.8416479Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:48:39.8436478Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:48:39.8436478Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, AzureServices\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"23.45.67.90\"},{\"action\":\"Allow\",\"value\":\"23.45.67.91\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc1852.blob.core.windows.net/\",\"file\":\"https://testacc1852.file.core.windows.net/\",\"queue\":\"https://testacc1852.queue.core.windows.net/\",\"table\":\"https://testacc1852.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup7451/providers/Microsoft.Storage/storageAccounts/testacc4236\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"testacc4236\",\"properties\":{\"creationTime\":\"2017-12-12T05:46:47.7850070Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:46:47.7870078Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:46:47.7870078Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, AzureServices\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"23.45.67.90\"},{\"action\":\"Allow\",\"value\":\"23.45.67.91\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc4236.blob.core.windows.net/\",\"file\":\"https://testacc4236.file.core.windows.net/\",\"queue\":\"https://testacc4236.queue.core.windows.net/\",\"table\":\"https://testacc4236.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodetestgroup2298/providers/Microsoft.Storage/storageAccounts/testacc7332\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"testacc7332\",\"properties\":{\"creationTime\":\"2017-12-12T05:39:01.7235525Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:39:01.7255510Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-12T05:39:01.7255510Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, AzureServices\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"23.45.67.90\"},{\"action\":\"Allow\",\"value\":\"23.45.67.91\"}],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://testacc7332.blob.core.windows.net/\",\"file\":\"https://testacc7332.file.core.windows.net/\",\"queue\":\"https://testacc7332.queue.core.windows.net/\",\"table\":\"https://testacc7332.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weiacl3\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weiacl3\",\"properties\":{\"creationTime\":\"2017-06-19T09:49:25.4010947Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:07:46.0956194Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:37.9528530Z\"}}},\"networkAcls\":{\"bypass\":\"Logging\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weiacl3.blob.core.windows.net/\",\"file\":\"https://weiacl3.file.core.windows.net/\",\"queue\":\"https://weiacl3.queue.core.windows.net/\",\"table\":\"https://weiacl3.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weiaclse\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weiaclse\",\"properties\":{\"creationTime\":\"2017-07-14T10:31:06.2570784Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-13T07:43:38.0734379Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:38.7629201Z\"}}},\"networkAcls\":{\"bypass\":\"Logging, Metrics\",\"defaultAction\":\"Deny\",\"ipRules\":[{\"action\":\"Allow\",\"value\":\"63.0.66.176/12\"},{\"action\":\"Allow\",\"value\":\"57.1.157.210/22\"},{\"action\":\"Allow\",\"value\":\"91.2.221.149/23\"},{\"action\":\"Allow\",\"value\":\"87.3.114.168/29\"},{\"action\":\"Allow\",\"value\":\"37.4.105.241/8\"},{\"action\":\"Allow\",\"value\":\"29.5.98.46/21\"},{\"action\":\"Allow\",\"value\":\"96.6.245.35/20\"},{\"action\":\"Allow\",\"value\":\"79.7.4.73/15\"},{\"action\":\"Allow\",\"value\":\"59.8.83.149/21\"},{\"action\":\"Allow\",\"value\":\"34.9.129.212/5\"},{\"action\":\"Allow\",\"value\":\"92.10.170.218/19\"},{\"action\":\"Allow\",\"value\":\"96.11.182.8/26\"},{\"action\":\"Allow\",\"value\":\"60.12.33.132/19\"},{\"action\":\"Allow\",\"value\":\"91.13.24.126/7\"},{\"action\":\"Allow\",\"value\":\"17.14.249.110/17\"},{\"action\":\"Allow\",\"value\":\"53.15.37.242/27\"},{\"action\":\"Allow\",\"value\":\"62.16.26.56/16\"},{\"action\":\"Allow\",\"value\":\"86.17.245.182/24\"},{\"action\":\"Allow\",\"value\":\"61.18.204.86/16\"},{\"action\":\"Allow\",\"value\":\"57.19.139.188/8\"},{\"action\":\"Allow\",\"value\":\"92.20.66.31/19\"},{\"action\":\"Allow\",\"value\":\"54.21.161.145/14\"},{\"action\":\"Allow\",\"value\":\"84.22.96.158/9\"},{\"action\":\"Allow\",\"value\":\"17.23.69.170/23\"},{\"action\":\"Allow\",\"value\":\"74.24.244.14/26\"},{\"action\":\"Allow\",\"value\":\"54.25.123.5/18\"},{\"action\":\"Allow\",\"value\":\"47.26.184.20/4\"},{\"action\":\"Allow\",\"value\":\"77.27.241.173/16\"},{\"action\":\"Allow\",\"value\":\"32.28.45.161/7\"},{\"action\":\"Allow\",\"value\":\"12.29.76.103/28\"},{\"action\":\"Allow\",\"value\":\"57.30.194.183/15\"},{\"action\":\"Allow\",\"value\":\"41.31.109.183/9\"},{\"action\":\"Allow\",\"value\":\"22.32.142.212/17\"},{\"action\":\"Allow\",\"value\":\"54.33.219.194/14\"},{\"action\":\"Allow\",\"value\":\"32.34.135.62/23\"},{\"action\":\"Allow\",\"value\":\"59.35.115.178/26\"},{\"action\":\"Allow\",\"value\":\"72.36.22.12/27\"},{\"action\":\"Allow\",\"value\":\"67.37.113.194/13\"},{\"action\":\"Allow\",\"value\":\"59.38.27.88/22\"},{\"action\":\"Allow\",\"value\":\"78.39.136.64/29\"},{\"action\":\"Allow\",\"value\":\"11.40.195.250/6\"},{\"action\":\"Allow\",\"value\":\"21.41.29.11/12\"},{\"action\":\"Allow\",\"value\":\"47.42.47.250/15\"},{\"action\":\"Allow\",\"value\":\"15.43.161.100/3\"},{\"action\":\"Allow\",\"value\":\"16.44.212.200/8\"},{\"action\":\"Allow\",\"value\":\"44.45.209.171/21\"},{\"action\":\"Allow\",\"value\":\"80.46.106.4/12\"},{\"action\":\"Allow\",\"value\":\"56.47.8.174/21\"},{\"action\":\"Allow\",\"value\":\"35.48.65.196/23\"},{\"action\":\"Allow\",\"value\":\"52.49.128.196/18\"},{\"action\":\"Allow\",\"value\":\"15.50.170.124/14\"},{\"action\":\"Allow\",\"value\":\"51.51.68.92/27\"},{\"action\":\"Allow\",\"value\":\"73.52.67.171/28\"},{\"action\":\"Allow\",\"value\":\"76.53.252.154/6\"},{\"action\":\"Allow\",\"value\":\"19.54.75.103/21\"},{\"action\":\"Allow\",\"value\":\"19.55.166.220/12\"},{\"action\":\"Allow\",\"value\":\"54.56.71.55/24\"},{\"action\":\"Allow\",\"value\":\"87.57.153.157/17\"},{\"action\":\"Allow\",\"value\":\"16.58.51.54/21\"},{\"action\":\"Allow\",\"value\":\"40.59.54.59/16\"},{\"action\":\"Allow\",\"value\":\"15.60.25.172/8\"},{\"action\":\"Allow\",\"value\":\"42.61.190.244/9\"},{\"action\":\"Allow\",\"value\":\"68.62.149.176/6\"},{\"action\":\"Allow\",\"value\":\"19.63.18.125/12\"},{\"action\":\"Allow\",\"value\":\"81.64.27.244/6\"},{\"action\":\"Allow\",\"value\":\"15.65.143.15/4\"},{\"action\":\"Allow\",\"value\":\"67.66.27.222/16\"},{\"action\":\"Allow\",\"value\":\"79.67.227.216/26\"},{\"action\":\"Allow\",\"value\":\"16.68.223.165/1\"},{\"action\":\"Allow\",\"value\":\"96.69.156.7/22\"},{\"action\":\"Allow\",\"value\":\"39.70.235.39/9\"}],\"virtualNetworkRules\":[{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet1\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet2\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet3\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet4\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet5\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet6\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet7\",\"state\":\"Succeeded\"},{\"action\":\"Allow\",\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Network/virtualNetworks/vnettry1/subnets/subnet8\",\"state\":\"Succeeded\"}]},\"primaryEndpoints\":{\"blob\":\"https://weiaclse.blob.core.windows.net/\",\"file\":\"https://weiaclse.file.core.windows.net/\",\"queue\":\"https://weiaclse.queue.core.windows.net/\",\"table\":\"https://weiaclse.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weitry/providers/Microsoft.Storage/storageAccounts/weiaclt\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weiaclt\",\"properties\":{\"creationTime\":\"2017-09-18T08:52:20.3522134Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-09-18T08:52:20.3542444Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-09-18T08:52:20.3542444Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weiaclt.blob.core.windows.net/\",\"file\":\"https://weiaclt.file.core.windows.net/\",\"queue\":\"https://weiaclt.queue.core.windows.net/\",\"table\":\"https://weiaclt.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weicmk4/providers/Microsoft.Storage/storageAccounts/weicmk4\",\"identity\":{\"principalId\":\"d8d77cf6-7ab9-4c92-b44a-58aa2e266c86\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weicmk4\",\"properties\":{\"creationTime\":\"2017-05-22T07:12:04.5461677Z\",\"encryption\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaultproperties\":{\"keyname\":\"weikey4\",\"keyvaulturi\":\"https://weikeyvaultcmk4.vault.azure.net/\",\"keyversion\":\"e76488bb22b148318fdb41c60863db66\"},\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-06T09:21:19.3091768Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-12-06T09:21:26.9077630Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weicmk4.blob.core.windows.net/\",\"file\":\"https://weicmk4.file.core.windows.net/\",\"queue\":\"https://weicmk4.queue.core.windows.net/\",\"table\":\"https://weicmk4.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weicmk4/providers/Microsoft.Storage/storageAccounts/weicmk5\",\"identity\":{\"principalId\":\"a53b1394-e72a-4f15-84a3-e6fc5f11300d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weicmk5\",\"properties\":{\"creationTime\":\"2017-05-27T08:57:49.9531321Z\",\"encryption\":{\"keySource\":\"Microsoft.Keyvault\",\"keyvaultproperties\":{\"keyname\":\"weikey5\",\"keyvaulturi\":\"https://weikeyvaultcmk5.vault.azure.net/\",\"keyversion\":\"01b4d7d2d0e94b2083413e310481400a\"},\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-05-27T09:03:16.2233853Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:39.0219409Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weicmk5.blob.core.windows.net/\",\"file\":\"https://weicmk5.file.core.windows.net/\",\"queue\":\"https://weicmk5.queue.core.windows.net/\",\"table\":\"https://weicmk5.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weicmk4/providers/Microsoft.Storage/storageAccounts/weicmk6\",\"identity\":{\"principalId\":\"d81ea1af-b0e3-4adb-87d9-addfc5ee04e9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weicmk6\",\"properties\":{\"creationTime\":\"2017-06-03T23:31:31.4642671Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:24:59.8929412Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:40.3480529Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weicmk6.blob.core.windows.net/\",\"file\":\"https://weicmk6.file.core.windows.net/\",\"queue\":\"https://weicmk6.queue.core.windows.net/\",\"table\":\"https://weicmk6.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/weicmk4/providers/Microsoft.Storage/storageAccounts/weicmk7\",\"identity\":{\"principalId\":\"9d3055f0-bc00-4c9b-87da-28164586ee43\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weicmk7\",\"properties\":{\"creationTime\":\"2017-06-03T23:32:37.6107017Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-06-28T06:25:00.1499670Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-10-14T01:11:39.8230099Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weicmk7.blob.core.windows.net/\",\"file\":\"https://weicmk7.file.core.windows.net/\",\"queue\":\"https://weicmk7.queue.core.windows.net/\",\"table\":\"https://weicmk7.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"centraluseuap\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/xdmtest/providers/Microsoft.Storage/storageAccounts/weitestacl2\",\"kind\":\"Storage\",\"location\":\"eastus2euap\",\"name\":\"weitestacl2\",\"properties\":{\"creationTime\":\"2017-02-22T02:37:43.4478438Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2017-02-22T02:37:43.4478438Z\"},\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2017-02-22T02:37:43.4478438Z\"}}},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://weitestacl2.blob.core.windows.net/\",\"file\":\"https://weitestacl2.file.core.windows.net/\",\"queue\":\"https://weitestacl2.queue.core.windows.net/\",\"table\":\"https://weitestacl2.table.core.windows.net/\"},\"primaryLocation\":\"eastus2euap\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":false},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_skus_for_subscription.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_skus_for_subscription.nock.js index 176b802acf..d8985ab1c7 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_skus_for_subscription.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_skus_for_subscription.nock.js @@ -8,7 +8,7 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/skus?api-version=2018-03-01-preview') + .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/skus?api-version=2018-07-01') .reply(200, "{\"value\":[{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"StorageV2\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"StorageV2\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"StorageV2\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"StorageV2\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', @@ -25,7 +25,7 @@ nock('http://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/skus?api-version=2018-03-01-preview') + .get('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/skus?api-version=2018-07-01') .reply(200, "{\"value\":[{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus\"],\"locationInfo\":[{\"location\":\"eastus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2\"],\"locationInfo\":[{\"location\":\"eastus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"StorageV2\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"StorageV2\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"StorageV2\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"StorageV2\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2(stage)\"],\"locationInfo\":[{\"location\":\"eastus2(stage)\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus\"],\"locationInfo\":[{\"location\":\"westus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westeurope\"],\"locationInfo\":[{\"location\":\"westeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastasia\"],\"locationInfo\":[{\"location\":\"eastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southeastasia\"],\"locationInfo\":[{\"location\":\"southeastasia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japaneast\"],\"locationInfo\":[{\"location\":\"japaneast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"japanwest\"],\"locationInfo\":[{\"location\":\"japanwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northcentralus\"],\"locationInfo\":[{\"location\":\"northcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southcentralus\"],\"locationInfo\":[{\"location\":\"southcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralus\"],\"locationInfo\":[{\"location\":\"centralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"northeurope\"],\"locationInfo\":[{\"location\":\"northeurope\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"brazilsouth\"],\"locationInfo\":[{\"location\":\"brazilsouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiaeast\"],\"locationInfo\":[{\"location\":\"australiaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"australiasoutheast\"],\"locationInfo\":[{\"location\":\"australiasoutheast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"southindia\"],\"locationInfo\":[{\"location\":\"southindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centralindia\"],\"locationInfo\":[{\"location\":\"centralindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westindia\"],\"locationInfo\":[{\"location\":\"westindia\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadaeast\"],\"locationInfo\":[{\"location\":\"canadaeast\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"canadacentral\"],\"locationInfo\":[{\"location\":\"canadacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westus2\"],\"locationInfo\":[{\"location\":\"westus2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"westcentralus\"],\"locationInfo\":[{\"location\":\"westcentralus\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth\"],\"locationInfo\":[{\"location\":\"uksouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"ukwest\"],\"locationInfo\":[{\"location\":\"ukwest\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreacentral\"],\"locationInfo\":[{\"location\":\"koreacentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"koreasouth\"],\"locationInfo\":[{\"location\":\"koreasouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uknorth\"],\"locationInfo\":[{\"location\":\"uknorth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"false\"},{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"uksouth2\"],\"locationInfo\":[{\"location\":\"uksouth2\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"false\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsarchivepreview\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"eastus2euap\"],\"locationInfo\":[{\"location\":\"eastus2euap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportschangenotification\",\"value\":\"true\"},{\"name\":\"supportsfileencryption\",\"value\":\"false\"},{\"name\":\"supportshoeboxcapacitymetrics\",\"value\":\"false\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"centraluseuap\"],\"locationInfo\":[{\"location\":\"centraluseuap\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"},{\"name\":\"supportschangenotification\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francecentral\"],\"locationInfo\":[{\"location\":\"francecentral\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_ZRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsfileencryption\",\"value\":\"true\"},{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Premium_LRS\",\"tier\":\"Premium\",\"kind\":\"Storage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_GRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_LRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]},{\"resourceType\":\"storageAccounts\",\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\",\"kind\":\"BlobStorage\",\"locations\":[\"francesouth\"],\"locationInfo\":[{\"location\":\"francesouth\",\"zones\":[]}],\"capabilities\":[{\"name\":\"supportsnetworkacls\",\"value\":\"true\"}],\"restrictions\":[]}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_storage_account_SAS.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_storage_account_SAS.nock.js index b8ac7bcb7d..4f1e4a6530 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_storage_account_SAS.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_storage_account_SAS.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/ListAccountSas?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/ListAccountSas?api-version=2018-07-01', '*') .reply(200, "{\"accountSasToken\":\"sv=2015-04-05&ss=bftq&srt=sco&sp=rdwlacup&st=2017-12-12T05%3A51%3A35Z&se=2017-12-12T06%3A51%3A35Z&spr=https,http&sig=HBRFg%2B6EtI0sgb%2BjX7jxz4caoUxs7i28x79UZiWdsvo%3D\"}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '189', @@ -28,7 +28,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/ListAccountSas?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/ListAccountSas?api-version=2018-07-01', '*') .reply(200, "{\"accountSasToken\":\"sv=2015-04-05&ss=bftq&srt=sco&sp=rdwlacup&st=2017-12-12T05%3A51%3A35Z&se=2017-12-12T06%3A51%3A35Z&spr=https,http&sig=HBRFg%2B6EtI0sgb%2BjX7jxz4caoUxs7i28x79UZiWdsvo%3D\"}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '189', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_storage_service_SAS.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_storage_service_SAS.nock.js index 0677e9d7d6..039867aa3c 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_storage_service_SAS.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_list_the_storage_service_SAS.nock.js @@ -9,7 +9,7 @@ exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/ListServiceSas?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/ListServiceSas?api-version=2018-07-01', '*') .reply(200, "{\"serviceSasToken\":\"sv=2015-04-05&sr=c&spr=https,http&st=2017-12-12T05%3A51%3A36Z&se=2017-12-12T06%3A51%3A36Z&sp=rdwlacup&sig=Jr3vIKUr3hDmT91uuUKl0KR6eI6Lp3yqY%2Btp9wcd848%3D\"}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '176', @@ -28,7 +28,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/ListServiceSas?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/ListServiceSas?api-version=2018-07-01', '*') .reply(200, "{\"serviceSasToken\":\"sv=2015-04-05&sr=c&spr=https,http&st=2017-12-12T05%3A51%3A36Z&se=2017-12-12T06%3A51%3A36Z&sp=rdwlacup&sig=Jr3vIKUr3hDmT91uuUKl0KR6eI6Lp3yqY%2Btp9wcd848%3D\"}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '176', diff --git a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_regenerate_storage_account_keys.nock.js b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_regenerate_storage_account_keys.nock.js index c65600fe95..0cb4a99b0a 100644 --- a/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_regenerate_storage_account_keys.nock.js +++ b/test/recordings/storagemanagementservice-tests/Storage_Management_storage_accounts_should_regenerate_storage_account_keys.nock.js @@ -8,7 +8,7 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/listKeys?api-version=2018-03-01-preview') + .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/listKeys?api-version=2018-07-01') .reply(200, "{\"keys\":[{\"keyName\":\"key1\",\"permissions\":\"Full\",\"value\":\"UzuTvc6A7g/Qvq68ZhWRIicHNlmAKtA6TqyiIf7YpouFLgWy+xityObt9qc5aVAPIMbGeqrEheydzM8826ngQw==\"},{\"keyName\":\"key2\",\"permissions\":\"Full\",\"value\":\"2aq4EMkVw0SD30Qz6tpkHwwN3+b4Dr4q062N8FHz8H6LmGrKPuTTghdT4/7nQCZTU2YNi5duvYNdtjlwgsa7cA==\"}]}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '289', @@ -26,7 +26,7 @@ nock('http://management.azure.com:443') function (nock) { var result = nock('https://management.azure.com:443') - .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/listKeys?api-version=2018-03-01-preview') + .post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/listKeys?api-version=2018-07-01') .reply(200, "{\"keys\":[{\"keyName\":\"key1\",\"permissions\":\"Full\",\"value\":\"UzuTvc6A7g/Qvq68ZhWRIicHNlmAKtA6TqyiIf7YpouFLgWy+xityObt9qc5aVAPIMbGeqrEheydzM8826ngQw==\"},{\"keyName\":\"key2\",\"permissions\":\"Full\",\"value\":\"2aq4EMkVw0SD30Qz6tpkHwwN3+b4Dr4q062N8FHz8H6LmGrKPuTTghdT4/7nQCZTU2YNi5duvYNdtjlwgsa7cA==\"}]}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '289', @@ -45,7 +45,7 @@ function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/regenerateKey?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/regenerateKey?api-version=2018-07-01', '*') .reply(200, "{\"keys\":[{\"keyName\":\"key1\",\"permissions\":\"Full\",\"value\":\"z5D4ZEOlTcem1hWI8mZ0LOFXOkTQ/ZQ2PnfT+0s4wcwU3fcHkXoWG/QD1qrbiHQSgFUPHcHpV9xqZ1ogT/im6w==\"},{\"keyName\":\"key2\",\"permissions\":\"Full\",\"value\":\"2aq4EMkVw0SD30Qz6tpkHwwN3+b4Dr4q062N8FHz8H6LmGrKPuTTghdT4/7nQCZTU2YNi5duvYNdtjlwgsa7cA==\"}]}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '289', @@ -64,7 +64,7 @@ function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/regenerateKey?api-version=2018-03-01-preview', '*') +.post('/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/nodeTestGroup8499/providers/Microsoft.Storage/storageAccounts/testacc6023/regenerateKey?api-version=2018-07-01', '*') .reply(200, "{\"keys\":[{\"keyName\":\"key1\",\"permissions\":\"Full\",\"value\":\"z5D4ZEOlTcem1hWI8mZ0LOFXOkTQ/ZQ2PnfT+0s4wcwU3fcHkXoWG/QD1qrbiHQSgFUPHcHpV9xqZ1ogT/im6w==\"},{\"keyName\":\"key2\",\"permissions\":\"Full\",\"value\":\"2aq4EMkVw0SD30Qz6tpkHwwN3+b4Dr4q062N8FHz8H6LmGrKPuTTghdT4/7nQCZTU2YNi5duvYNdtjlwgsa7cA==\"}]}\n", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '289',