From 2e1fea82cbdee52d73e89632c2ea5b3c3f6e0338 Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Tue, 24 Dec 2019 12:16:36 +0800 Subject: [PATCH 1/9] feat: Use the Microsoft.Storage resource provider for Azure file share management operations --- .../storage/_client_factory.py | 4 + .../cli/command_modules/storage/_help.py | 53 +++ .../cli/command_modules/storage/_params.py | 9 + .../cli/command_modules/storage/commands.py | 20 +- .../storage/operations/file.py | 9 + ...t_storage_file_using_rm_main_scenario.yaml | 404 ++++++++++++++++++ ..._file_using_resource_provider_scenarios.py | 65 +++ 7 files changed, 563 insertions(+), 1 deletion(-) create mode 100644 src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py diff --git a/src/azure-cli/azure/cli/command_modules/storage/_client_factory.py b/src/azure-cli/azure/cli/command_modules/storage/_client_factory.py index 522d0f66312..7c4e30cb7ae 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_client_factory.py @@ -159,5 +159,9 @@ def cf_mgmt_blob_services(cli_ctx, _): return storage_client_factory(cli_ctx).blob_services +def cf_mgmt_file_shares(cli_ctx, _): + return storage_client_factory(cli_ctx).file_shares + + def cf_blob_data_gen_update(cli_ctx, kwargs): return blob_data_service_factory(cli_ctx, kwargs.copy()) diff --git a/src/azure-cli/azure/cli/command_modules/storage/_help.py b/src/azure-cli/azure/cli/command_modules/storage/_help.py index 734860d39a3..82082b664da 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_help.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_help.py @@ -1178,6 +1178,59 @@ text: az storage remove -s MyShare --recursive """ +helps['storage share-rm'] = """ +type: group +short-summary: Manage Azure file shares using the Microsoft.Storage resource provider. +""" + +helps['storage share-rm create'] = """ +type: command +short-summary: Create a new Azure file share under the specified storage account. +examples: + - name: Create a new Azure file share 'MyFileShare' with metadata and share quota as 10 GB under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. + text: az storage share create -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare --share-quota 10 --metadata key1=value1 key2=value2 +""" + +helps['storage share-rm delete'] = """ +type: command +short-summary: Delete the specified Azure file share. +examples: + - name: Delete an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. + text: az storage share-rm delete -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare +""" + +helps['storage share-rm exists'] = """ +type: command +short-summary: Check for the existence of an Azure file share. +examples: + - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. + text: az storage share-rm exists -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare +""" + +helps['storage share-rm list'] = """ +type: command +short-summary: List the Azure file shares under the specified storage account. +examples: + - name: List the Azure file shares under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. + text: az storage share-rm list -g MyResourceGroup --account-name MyStorageAccount +""" + +helps['storage share-rm show'] = """ +type: command +short-summary: Show the properties for a specified Azure file share. +examples: + - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. + text: az storage share-rm show -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare +""" + +helps['storage share-rm update'] = """ +type: command +short-summary: Update the properties for an Azure file share. +examples: + - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. + text: az storage share-rm update -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare --share-quota 3 --metadata key1=value1 key2=value2 +""" + helps['storage share'] = """ type: group short-summary: Manage file shares. diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py index 75f9d03b650..c807f34a101 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -635,6 +635,15 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage share') as c: c.argument('share_name', share_name_type, options_list=('--name', '-n')) + with self.argument_context('storage share-rm', resource_type=ResourceType.MGMT_STORAGE) as c: + c.argument('share_name', share_name_type, options_list=('--name', '-n')) + c.argument('share_quota', type=int) + c.argument('metadata', nargs='+', + help='Metadata in space-separated key=value pairs that is associated with the share. ' + 'This overwrites any existing metadata', + validator=validate_metadata) + c.ignore('filter', 'maxpagesize', 'skip_token') + with self.argument_context('storage share url') as c: c.argument('unc', action='store_true', help='Output UNC network path.') c.argument('protocol', arg_type=get_enum_type(['http', 'https'], 'https'), help='Protocol to use.') diff --git a/src/azure-cli/azure/cli/command_modules/storage/commands.py b/src/azure-cli/azure/cli/command_modules/storage/commands.py index 3dd7f9e402c..e352bfedfed 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/commands.py +++ b/src/azure-cli/azure/cli/command_modules/storage/commands.py @@ -10,7 +10,7 @@ multi_service_properties_factory, cf_mgmt_policy, cf_blob_data_gen_update, cf_sa_for_keys, - cf_mgmt_blob_services) + cf_mgmt_blob_services, cf_mgmt_file_shares) from azure.cli.command_modules.storage.sdkutil import cosmosdb_table_exists from azure.cli.command_modules.storage._format import transform_immutability_policy from azure.cli.core.commands import CliCommandType @@ -31,6 +31,12 @@ def load_command_table(self, _): # pylint: disable=too-many-locals, too-many-st resource_type=ResourceType.MGMT_STORAGE ) + file_shares_mgmt_sdk = CliCommandType( + operations_tmpl='azure.mgmt.storage.operations#FileSharesOperations.{}', + client_factory=cf_mgmt_file_shares, + resource_type=ResourceType.MGMT_STORAGE + ) + storage_account_sdk_keys = CliCommandType( operations_tmpl='azure.mgmt.storage.operations#StorageAccountsOperations.{}', client_factory=cf_sa_for_keys, @@ -320,6 +326,18 @@ def get_custom_sdk(custom_module, client_factory, resource_type=ResourceType.DAT client_factory=file_data_service_factory, resource_type=ResourceType.DATA_STORAGE) + with self.command_group('storage share-rm', command_type=file_shares_mgmt_sdk, + custom_command_type=get_custom_sdk('file', + cf_mgmt_file_shares, + resource_type=ResourceType.MGMT_STORAGE), + resource_type=ResourceType.MGMT_STORAGE, min_api='2019-04-01', is_preview=True) as g: + g.command('create', 'create') + g.command('delete', 'delete') + g.custom_command('exists', '_file_share_exists', transform=create_boolean_result_output_transformer('exists')) + g.command('list', 'list') + g.show_command('show', 'get') + g.command('update', 'update') + with self.command_group('storage share', command_type=file_sdk, custom_command_type=get_custom_sdk('file', file_data_service_factory)) as g: from ._format import (transform_share_list, diff --git a/src/azure-cli/azure/cli/command_modules/storage/operations/file.py b/src/azure-cli/azure/cli/command_modules/storage/operations/file.py index 692e4d7c0d5..7f9871ba38a 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/operations/file.py +++ b/src/azure-cli/azure/cli/command_modules/storage/operations/file.py @@ -321,3 +321,12 @@ def _make_directory_in_files_share(file_service, file_share, directory_path, exi if existing_dirs: existing_dirs.add(directory_path) + + +def _file_share_exists(client, resource_group_name, account_name, share_name): + from msrestazure.azure_exceptions import CloudError + try: + file_share = client.get(resource_group_name, account_name, share_name) + return file_share is not None + except CloudError: + return False diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml new file mode 100644 index 00000000000..deeb54e15c5 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml @@ -0,0 +1,404 @@ +interactions: +- request: + body: '{"properties": {"metadata": {"key1": "value1"}, "shareQuota": 5}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm create + Connection: + - keep-alive + Content-Length: + - '65' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --account-name -g -n --share-quota --metadata + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","properties":{"metadata":{"key1":"value1"},"shareQuota":5}}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json + date: + - Tue, 24 Dec 2019 03:10:58 GMT + etag: + - '"0x8D7881EE650AA5D"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm exists + Connection: + - keep-alive + ParameterSetName: + - --account-name -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D7881EE650AA5D\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2019-12-24T03:10:59.0000000Z","shareQuota":5}}' + headers: + cache-control: + - no-cache + content-length: + - '510' + content-type: + - application/json + date: + - Tue, 24 Dec 2019 03:11:00 GMT + etag: + - '"0x8D7881EE650AA5D"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm show + Connection: + - keep-alive + ParameterSetName: + - --account-name -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D7881EE650AA5D\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2019-12-24T03:10:59.0000000Z","shareQuota":5}}' + headers: + cache-control: + - no-cache + content-length: + - '510' + content-type: + - application/json + date: + - Tue, 24 Dec 2019 03:11:01 GMT + etag: + - '"0x8D7881EE650AA5D"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm show + Connection: + - keep-alive + ParameterSetName: + - --account-name -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004?api-version=2019-04-01 + response: + body: + string: '{"error":{"code":"ShareNotFound","message":"The specified share does + not exist.\nRequestId:c9f08dc0-b01a-004e-8007-ba2770000000\nTime:2019-12-24T03:11:02.5307594Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Tue, 24 Dec 2019 03:11:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: '{"properties": {"metadata": {"key2": "value2"}, "shareQuota": 10}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm update + Connection: + - keep-alive + Content-Length: + - '66' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --account-name -g -n --share-quota --metadata + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","properties":{"metadata":{"key2":"value2"},"shareQuota":10}}' + headers: + cache-control: + - no-cache + content-length: + - '430' + content-type: + - application/json + date: + - Tue, 24 Dec 2019 03:11:02 GMT + etag: + - '"0x8D7881EE8F6A24D"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm list + Connection: + - keep-alive + ParameterSetName: + - --account-name -g --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares?api-version=2019-04-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D7881EE8F6A24D\"","properties":{"lastModifiedTime":"2019-12-24T03:11:03.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json + date: + - Tue, 24 Dec 2019 03:11:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --account-name -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 24 Dec 2019 03:11:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm exists + Connection: + - keep-alive + ParameterSetName: + - --account-name -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + response: + body: + string: '{"error":{"code":"ShareNotFound","message":"The specified share does + not exist.\nRequestId:c9f08dc8-b01a-004e-0507-ba2770000000\nTime:2019-12-24T03:11:05.9522150Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Tue, 24 Dec 2019 03:11:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py new file mode 100644 index 00000000000..36da871cefa --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py @@ -0,0 +1,65 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import os +from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer, api_version_constraint) +from azure.cli.core.profiles import ResourceType +from ..storage_test_util import StorageScenarioMixin + + +@api_version_constraint(ResourceType.MGMT_STORAGE, min_api='2019-04-01') +class StorageFileShareUsingResourceProviderScenarios(StorageScenarioMixin, ScenarioTest): + @ResourceGroupPreparer() + @StorageAccountPreparer() + def test_storage_file_using_rm_main_scenario(self): + # Test create command. + share_name = self.create_random_name('share', 24) + initial_share_quota = 5 + self.kwargs.update({ + 'share_name': share_name, + 'initial_share_quota': initial_share_quota + }) + result = self.cmd('storage share-rm create --account-name {sa} -g {rg} -n {share_name} --share-quota {initial_share_quota} --metadata key1=value1').get_output_in_json() + self.assertEqual(result['name'], share_name) + self.assertEqual(result['shareQuota'], initial_share_quota) + self.assertEqual(result['metadata']['key1'], 'value1') + + # Test exists command (the file share exists). + result = self.cmd('storage share-rm exists --account-name {sa} -g {rg} -n {share_name}').get_output_in_json() + self.assertEqual(result['exists'], True) + + # Test show command (the file share exists). + result = self.cmd('storage share-rm show --account-name {sa} -g {rg} -n {share_name}').get_output_in_json() + self.assertEqual(result['name'], share_name) + + # Test show command (the file share doesn't exist). + non_exist_share_name = self.create_random_name('share', 24) + self.kwargs.update({ + 'non_exist_share_name': non_exist_share_name + }) + with self.assertRaisesRegexp(SystemExit, '3'): + self.cmd('storage share-rm show --account-name {sa} -g {rg} -n {non_exist_share_name}') + + # Test update command. + updated_share_quota = 10 + self.kwargs.update({ + 'updated_share_quota': updated_share_quota + }) + result = self.cmd( + 'storage share-rm update --account-name {sa} -g {rg} -n {share_name} --share-quota {updated_share_quota} --metadata key2=value2').get_output_in_json() + self.assertEqual(result['shareQuota'], updated_share_quota) + self.assertEqual(result['metadata']['key2'], 'value2') + self.assertNotIn('key1', result['metadata']) + + # Test list command. + self.assertIn(share_name, + self.cmd('storage share-rm list --account-name {sa} -g {rg} --query "[].name"').get_output_in_json()) + + # Test delete command. + self.cmd('storage share-rm delete --account-name {sa} -g {rg} -n {share_name}') + + # Test exists command (the file share doesn't exist). + result = self.cmd('storage share-rm exists --account-name {sa} -g {rg} -n {share_name}').get_output_in_json() + self.assertEqual(result['exists'], False) From e4c20b42cb5f682ca3914ab900ed52b8b342f19d Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Tue, 24 Dec 2019 12:47:08 +0800 Subject: [PATCH 2/9] add release note to history file --- src/azure-cli/HISTORY.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 41a2dbf7e6a..b84029887b7 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -23,6 +23,10 @@ Release History * Fix #6371: Support filename and environment variable completion in Bash +**Storage** + +* Feat: Added a new command group `az storage share-rm` to use the Microsoft.Storage resource provider for Azure file share management operations. + 2.0.80 ++++++ @@ -97,7 +101,6 @@ Release History * Update azure-mgmt-storage version to 7.0.0 to use api version 2019-06-01 * Add new parameters `--enable-delete-retention` and `--delete-retention-days` to support managing delete retention policy for storage account blob-service-properties. - 2.0.78 ++++++ From fb88474ecf6b39d6cf1f8fd97187e7faf429ead8 Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Tue, 24 Dec 2019 13:26:32 +0800 Subject: [PATCH 3/9] fix linter errors: errors for help --- src/azure-cli/azure/cli/command_modules/storage/_help.py | 2 +- src/azure-cli/azure/cli/command_modules/storage/_params.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/storage/_help.py b/src/azure-cli/azure/cli/command_modules/storage/_help.py index 82082b664da..40ea78aa2a3 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_help.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_help.py @@ -1188,7 +1188,7 @@ short-summary: Create a new Azure file share under the specified storage account. examples: - name: Create a new Azure file share 'MyFileShare' with metadata and share quota as 10 GB under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. - text: az storage share create -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare --share-quota 10 --metadata key1=value1 key2=value2 + text: az storage share-rm create -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare --share-quota 10 --metadata key1=value1 key2=value2 """ helps['storage share-rm delete'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py index c807f34a101..0f4b2cacca8 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -636,6 +636,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('share_name', share_name_type, options_list=('--name', '-n')) with self.argument_context('storage share-rm', resource_type=ResourceType.MGMT_STORAGE) as c: + c.argument('account_name', help='The name of the storage account within the specified resource group.') c.argument('share_name', share_name_type, options_list=('--name', '-n')) c.argument('share_quota', type=int) c.argument('metadata', nargs='+', From 5e59935032ec684d3e578a02316927ea7654a97a Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Wed, 8 Jan 2020 09:36:25 +0800 Subject: [PATCH 4/9] support account id and file share ids --- .../cli/command_modules/storage/_help.py | 44 +- .../cli/command_modules/storage/_params.py | 29 +- .../command_modules/storage/_validators.py | 8 + ...t_storage_file_using_rm_main_scenario.yaml | 698 ++++++++++++++++-- ..._file_using_resource_provider_scenarios.py | 119 ++- 5 files changed, 813 insertions(+), 85 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/storage/_help.py b/src/azure-cli/azure/cli/command_modules/storage/_help.py index 40ea78aa2a3..cc5e648485c 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_help.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_help.py @@ -1187,48 +1187,68 @@ type: command short-summary: Create a new Azure file share under the specified storage account. examples: - - name: Create a new Azure file share 'MyFileShare' with metadata and share quota as 10 GB under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. - text: az storage share-rm create -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare --share-quota 10 --metadata key1=value1 key2=value2 + - name: Create a new Azure file share 'MyFileShare' with metadata and share quota as 10 GB under the storage account 'MyStorageAccount'(account name) in resource group 'MyResourceGroup'. + text: az storage share-rm create -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare --share-quota 10 --metadata key1=value1 key2=value2 + - name: Create a new Azure file share 'MyFileShare' with metadata and share quota as 10 GB under the storage account 'MyStorageAccount' (account id). + text: az storage share-rm create --storage-account MyStorageAccount --name MyFileShare --share-quota 10 --metadata key1=value1 key2=value2 """ helps['storage share-rm delete'] = """ type: command short-summary: Delete the specified Azure file share. examples: - - name: Delete an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. - text: az storage share-rm delete -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare + - name: Delete an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm delete -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare + - name: Delete an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account id). + text: az storage share-rm delete --storage-account MyStorageAccount --name MyFileShare + - name: Delete an Azure file share by resource id. + text: az storage share-rm delete --ids file-share-id """ helps['storage share-rm exists'] = """ type: command short-summary: Check for the existence of an Azure file share. examples: - - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. - text: az storage share-rm exists -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare + - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm exists -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare + - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account id). + text: az storage share-rm exists --storage-account MyStorageAccount --name MyFileShare + - name: Check for the existence of an Azure file share by resource id. + text: az storage share-rm exists --ids file-share-id """ helps['storage share-rm list'] = """ type: command short-summary: List the Azure file shares under the specified storage account. examples: - - name: List the Azure file shares under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. - text: az storage share-rm list -g MyResourceGroup --account-name MyStorageAccount + - name: List the Azure file shares under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm list -g MyResourceGroup --storage-account MyStorageAccount + - name: List the Azure file shares under the storage account 'MyStorageAccount' (account id). + text: az storage share-rm list --storage-account MyStorageAccount """ helps['storage share-rm show'] = """ type: command short-summary: Show the properties for a specified Azure file share. examples: - - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. - text: az storage share-rm show -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare + - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm show -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare + - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account id). + text: az storage share-rm show --storage-account MyStorageAccount --name MyFileShare + - name: Show the properties of an Azure file shares by resource id. + text: az storage share-rm show --ids file-share-id """ helps['storage share-rm update'] = """ type: command short-summary: Update the properties for an Azure file share. examples: - - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' in resource group 'MyResourceGroup'. - text: az storage share-rm update -g MyResourceGroup --account-name MyStorageAccount --name MyFileShare --share-quota 3 --metadata key1=value1 key2=value2 + - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm update -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare --share-quota 3 --metadata key1=value1 key2=value2 + - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account id). + text: az storage share-rm update --storage-account MyStorageAccount --name MyFileShare --share-quota 3 --metadata key1=value1 key2=value2 + - name: Update the properties for an Azure file shares by resource id. + text: az storage share-rm update --ids file-share-id --share-quota 3 --metadata key1=value1 key2=value2 """ helps['storage share'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py index 0f4b2cacca8..2f143024999 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -15,7 +15,7 @@ storage_account_key_options, process_file_download_namespace, process_metric_update_namespace, get_char_options_validator, validate_bypass, validate_encryption_source, validate_marker, validate_storage_data_plane_list, validate_azcopy_upload_destination_url, - validate_azcopy_remove_arguments, as_user_validator) + validate_azcopy_remove_arguments, as_user_validator, parse_storage_account) def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statements @@ -34,6 +34,10 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem t_queue_service = self.get_sdk('queue#QueueService') t_table_service = get_table_data_type(self.cli_ctx, 'table', 'TableService') + storage_account_type = CLIArgumentType(options_list='--storage-account', + help='The name or ID of the storage account.', + validator=parse_storage_account, id_part='name') + acct_name_type = CLIArgumentType(options_list=['--account-name', '-n'], help='The storage account name.', id_part='name', completer=get_resource_name_completion_list('Microsoft.Storage/storageAccounts')) @@ -635,15 +639,20 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage share') as c: c.argument('share_name', share_name_type, options_list=('--name', '-n')) - with self.argument_context('storage share-rm', resource_type=ResourceType.MGMT_STORAGE) as c: - c.argument('account_name', help='The name of the storage account within the specified resource group.') - c.argument('share_name', share_name_type, options_list=('--name', '-n')) - c.argument('share_quota', type=int) - c.argument('metadata', nargs='+', - help='Metadata in space-separated key=value pairs that is associated with the share. ' - 'This overwrites any existing metadata', - validator=validate_metadata) - c.ignore('filter', 'maxpagesize', 'skip_token') + for item in ['create', 'delete', 'exists', 'list', 'show', 'update']: + with self.argument_context('storage share-rm {}'.format(item), resource_type=ResourceType.MGMT_STORAGE) as c: + c.argument('resource_group_name', required=False) + c.argument('account_name', storage_account_type) + c.argument('share_name', share_name_type, options_list=('--name', '-n'), id_part='child_name_2') + c.argument('share_quota', type=int) + c.argument('metadata', nargs='+', + help='Metadata in space-separated key=value pairs that is associated with the share. ' + 'This overwrites any existing metadata', + validator=validate_metadata) + c.ignore('filter', 'maxpagesize', 'skip_token') + + with self.argument_context('storage share-rm list', resource_type=ResourceType.MGMT_STORAGE) as c: + c.argument('account_name', storage_account_type, id_part=None) with self.argument_context('storage share url') as c: c.argument('unc', action='store_true', help='Output UNC network path.') diff --git a/src/azure-cli/azure/cli/command_modules/storage/_validators.py b/src/azure-cli/azure/cli/command_modules/storage/_validators.py index 4bc1142e630..b2efbca6362 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_validators.py @@ -65,6 +65,14 @@ def _cancel_timer_event_handler(_, **__): # region PARAMETER VALIDATORS +def parse_storage_account(namespace): + """Parse storage account which can be either account name or account id""" + from msrestazure.tools import parse_resource_id, is_valid_resource_id + + if namespace.account_name and is_valid_resource_id(namespace.account_name): + namespace.resource_group_name = parse_resource_id(namespace.account_name)['resource_group'] + namespace.account_name = parse_resource_id(namespace.account_name)['name'] + def process_resource_group(cmd, namespace): """Processes the resource group parameter from the account name""" diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml index deeb54e15c5..0a3e0daffaf 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml @@ -15,14 +15,14 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --account-name -g -n --share-quota --metadata + - --storage-account -g -n --share-quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","properties":{"metadata":{"key1":"value1"},"shareQuota":5}}' @@ -34,9 +34,161 @@ interactions: content-type: - application/json date: - - Tue, 24 Dec 2019 03:10:58 GMT + - Wed, 08 Jan 2020 01:31:57 GMT etag: - - '"0x8D7881EE650AA5D"' + - '"0x8D793DA8D0ED3CF"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 + response: + body: + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu_cli_test_msi_rg/providers/Microsoft.Storage/storageAccounts/testazurecore","name":"testazurecore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-26T04:34:21.6261912Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-26T04:34:21.6261912Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-26T04:34:21.5637036Z","primaryEndpoints":{"blob":"https://testazurecore.blob.core.windows.net/","queue":"https://testazurecore.queue.core.windows.net/","table":"https://testazurecore.table.core.windows.net/","file":"https://testazurecore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testazurecore-secondary.blob.core.windows.net/","queue":"https://testazurecore-secondary.queue.core.windows.net/","table":"https://testazurecore-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu_cli_test_msi_rg/providers/Microsoft.Storage/storageAccounts/testdisablefeed","name":"testdisablefeed","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T05:45:37.7902035Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T05:45:37.7902035Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T05:45:37.7277238Z","primaryEndpoints":{"blob":"https://testdisablefeed.blob.core.windows.net/","queue":"https://testdisablefeed.queue.core.windows.net/","table":"https://testdisablefeed.table.core.windows.net/","file":"https://testdisablefeed.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testdisablefeed-secondary.blob.core.windows.net/","queue":"https://testdisablefeed-secondary.queue.core.windows.net/","table":"https://testdisablefeed-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsp3k4fsb7rji3ec7sk3merdxsbxxzwyjx7wn3ga2viycwhjwktcgg7u7zj523q7jn/providers/Microsoft.Storage/storageAccounts/clitest26b72e7dyvqsitsqb","name":"clitest26b72e7dyvqsitsqb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-24T01:44:57.4436662Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-24T01:44:57.4436662Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:44:57.3811431Z","primaryEndpoints":{"blob":"https://clitest26b72e7dyvqsitsqb.blob.core.windows.net/","queue":"https://clitest26b72e7dyvqsitsqb.queue.core.windows.net/","table":"https://clitest26b72e7dyvqsitsqb.table.core.windows.net/","file":"https://clitest26b72e7dyvqsitsqb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyakzflbktfcwe3iktcymwcbhlclr6iqyzuqoztbzdxahnfjxw4nwd4ngi4viaz5b/providers/Microsoft.Storage/storageAccounts/clitest5ms6wuf6kt4hmto5t","name":"clitest5ms6wuf6kt4hmto5t","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T06:37:46.1565065Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T06:37:46.1565065Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T06:37:46.0940041Z","primaryEndpoints":{"blob":"https://clitest5ms6wuf6kt4hmto5t.blob.core.windows.net/","queue":"https://clitest5ms6wuf6kt4hmto5t.queue.core.windows.net/","table":"https://clitest5ms6wuf6kt4hmto5t.table.core.windows.net/","file":"https://clitest5ms6wuf6kt4hmto5t.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrkmld22hkxdy352eegaigqtiq2gv6c7ccqdf2ytexsddsndx4mzh2ezt2ugbn3uo5/providers/Microsoft.Storage/storageAccounts/clitest6kbpip6fqqtolzfqc","name":"clitest6kbpip6fqqtolzfqc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T07:38:52.6912570Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T07:38:52.6912570Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T07:38:52.6131137Z","primaryEndpoints":{"blob":"https://clitest6kbpip6fqqtolzfqc.blob.core.windows.net/","queue":"https://clitest6kbpip6fqqtolzfqc.queue.core.windows.net/","table":"https://clitest6kbpip6fqqtolzfqc.table.core.windows.net/","file":"https://clitest6kbpip6fqqtolzfqc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy4wweonapzu2sxe33osvoqf2rroamfwgdrvnsafai65u2fq5mkaa4x3xawdgwnfax/providers/Microsoft.Storage/storageAccounts/clitesta4oggnoflfbl3nusw","name":"clitesta4oggnoflfbl3nusw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-24T01:57:37.8961954Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-24T01:57:37.8961954Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:57:37.8336537Z","primaryEndpoints":{"blob":"https://clitesta4oggnoflfbl3nusw.blob.core.windows.net/","queue":"https://clitesta4oggnoflfbl3nusw.queue.core.windows.net/","table":"https://clitesta4oggnoflfbl3nusw.table.core.windows.net/","file":"https://clitesta4oggnoflfbl3nusw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfll7ugt6i4mmecnebp4276auxuhtxq2zsvu64ff647o45pyvaymoqcbon5am4bbxn/providers/Microsoft.Storage/storageAccounts/clitestirwzue7iq7rtrslzk","name":"clitestirwzue7iq7rtrslzk","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T06:52:11.4215324Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T06:52:11.4215324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T06:52:11.3434163Z","primaryEndpoints":{"blob":"https://clitestirwzue7iq7rtrslzk.blob.core.windows.net/","queue":"https://clitestirwzue7iq7rtrslzk.queue.core.windows.net/","table":"https://clitestirwzue7iq7rtrslzk.table.core.windows.net/","file":"https://clitestirwzue7iq7rtrslzk.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekwkyvztfqrvtygquxoy3gcapj6mvru7hm3bzgnkxd2cicla4sxvxetqlv7fo4ze5/providers/Microsoft.Storage/storageAccounts/clitestmmnt4qxcmthnu7hjv","name":"clitestmmnt4qxcmthnu7hjv","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-05T04:51:17.5869910Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-05T04:51:17.5869910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T04:51:17.5088999Z","primaryEndpoints":{"blob":"https://clitestmmnt4qxcmthnu7hjv.blob.core.windows.net/","queue":"https://clitestmmnt4qxcmthnu7hjv.queue.core.windows.net/","table":"https://clitestmmnt4qxcmthnu7hjv.table.core.windows.net/","file":"https://clitestmmnt4qxcmthnu7hjv.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkwan2c6gly2mc3lswpbdbzamva77dn4pleifxkoklowhhgrn5m3h4icgq566wjy74/providers/Microsoft.Storage/storageAccounts/clitestnf7ubv3t6yrtl3ai2","name":"clitestnf7ubv3t6yrtl3ai2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T07:03:34.6615766Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T07:03:34.6615766Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T07:03:34.5834296Z","primaryEndpoints":{"blob":"https://clitestnf7ubv3t6yrtl3ai2.blob.core.windows.net/","queue":"https://clitestnf7ubv3t6yrtl3ai2.queue.core.windows.net/","table":"https://clitestnf7ubv3t6yrtl3ai2.table.core.windows.net/","file":"https://clitestnf7ubv3t6yrtl3ai2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3fqnhbhxmvje7o4wams47anorgymathfcjtqzieqjeygprhnw2z57mf46s33qkxef/providers/Microsoft.Storage/storageAccounts/clitestnkfvzo7jmcvzmbw3g","name":"clitestnkfvzo7jmcvzmbw3g","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-05T09:58:54.3371072Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-05T09:58:54.3371072Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T09:58:54.2590298Z","primaryEndpoints":{"blob":"https://clitestnkfvzo7jmcvzmbw3g.blob.core.windows.net/","queue":"https://clitestnkfvzo7jmcvzmbw3g.queue.core.windows.net/","table":"https://clitestnkfvzo7jmcvzmbw3g.table.core.windows.net/","file":"https://clitestnkfvzo7jmcvzmbw3g.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg37u2n7pyjhgecgoksyaiwxmvrztimvfnx33hyybls5r7bol4cwceeql6v6yrlvxyc/providers/Microsoft.Storage/storageAccounts/clitestpdvy5zr6jhlqwqh3n","name":"clitestpdvy5zr6jhlqwqh3n","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T06:55:37.4754793Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T06:55:37.4754793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T06:55:37.3973728Z","primaryEndpoints":{"blob":"https://clitestpdvy5zr6jhlqwqh3n.blob.core.windows.net/","queue":"https://clitestpdvy5zr6jhlqwqh3n.queue.core.windows.net/","table":"https://clitestpdvy5zr6jhlqwqh3n.table.core.windows.net/","file":"https://clitestpdvy5zr6jhlqwqh3n.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-08T01:31:35.6197480Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-08T01:31:35.6197480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-08T01:31:35.5416315Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-browse-ppe/providers/Microsoft.Storage/storageAccounts/docslearningbrowsecrppe","name":"docslearningbrowsecrppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T06:11:48.8468455Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T06:11:48.8468455Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-08-27T06:11:48.7218544Z","primaryEndpoints":{"blob":"https://docslearningbrowsecrppe.blob.core.windows.net/","queue":"https://docslearningbrowsecrppe.queue.core.windows.net/","table":"https://docslearningbrowsecrppe.table.core.windows.net/","file":"https://docslearningbrowsecrppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-browse-ppe/providers/Microsoft.Storage/storageAccounts/docslearningbrowseppe","name":"docslearningbrowseppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-01T07:31:15.7005014Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-01T07:31:15.7005014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-08-01T07:31:15.5130205Z","primaryEndpoints":{"blob":"https://docslearningbrowseppe.blob.core.windows.net/","queue":"https://docslearningbrowseppe.queue.core.windows.net/","table":"https://docslearningbrowseppe.table.core.windows.net/","file":"https://docslearningbrowseppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/docs-recommendation/providers/Microsoft.Storage/storageAccounts/docsrecommendationppe","name":"docsrecommendationppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-13T08:19:58.0932802Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-13T08:19:58.0932802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-06-13T08:19:57.9525680Z","primaryEndpoints":{"dfs":"https://docsrecommendationppe.dfs.core.windows.net/","blob":"https://docsrecommendationppe.blob.core.windows.net/","table":"https://docsrecommendationppe.table.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hackathon2019/providers/Microsoft.Storage/storageAccounts/learnsubscription","name":"learnsubscription","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-16T01:58:12.4250557Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-16T01:58:12.4250557Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-16T01:58:12.3312691Z","primaryEndpoints":{"blob":"https://learnsubscription.blob.core.windows.net/","queue":"https://learnsubscription.queue.core.windows.net/","table":"https://learnsubscription.table.core.windows.net/","file":"https://learnsubscription.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn-hierarchy-ppe/providers/Microsoft.Storage/storageAccounts/mslearnhierarchyppe","name":"mslearnhierarchyppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-26T09:09:48.1255683Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-26T09:09:48.1255683Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-26T09:09:48.0786942Z","primaryEndpoints":{"blob":"https://mslearnhierarchyppe.blob.core.windows.net/","queue":"https://mslearnhierarchyppe.queue.core.windows.net/","table":"https://mslearnhierarchyppe.table.core.windows.net/","file":"https://mslearnhierarchyppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn-progress-internal/providers/Microsoft.Storage/storageAccounts/mslearnprogressint","name":"mslearnprogressint","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T06:06:21.9924369Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T06:06:21.9924369Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T06:06:21.9455627Z","primaryEndpoints":{"blob":"https://mslearnprogressint.blob.core.windows.net/","queue":"https://mslearnprogressint.queue.core.windows.net/","table":"https://mslearnprogressint.table.core.windows.net/","file":"https://mslearnprogressint.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn-progress-ppe/providers/Microsoft.Storage/storageAccounts/mslearnprogressppe","name":"mslearnprogressppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T06:03:35.0999793Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T06:03:35.0999793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T06:03:35.0530850Z","primaryEndpoints":{"blob":"https://mslearnprogressppe.blob.core.windows.net/","queue":"https://mslearnprogressppe.queue.core.windows.net/","table":"https://mslearnprogressppe.table.core.windows.net/","file":"https://mslearnprogressppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-backend-ppe/providers/Microsoft.Storage/storageAccounts/streamjobtest","name":"streamjobtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-21T08:15:00.3957508Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-21T08:15:00.3957508Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-21T08:15:00.2863594Z","primaryEndpoints":{"blob":"https://streamjobtest.blob.core.windows.net/","queue":"https://streamjobtest.queue.core.windows.net/","table":"https://streamjobtest.table.core.windows.net/","file":"https://streamjobtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-backend-ppe/providers/Microsoft.Storage/storageAccounts/triplecrownbuildjob","name":"triplecrownbuildjob","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-05T08:26:11.4985583Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-05T08:26:11.4985583Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-05T08:26:11.1704430Z","primaryEndpoints":{"blob":"https://triplecrownbuildjob.blob.core.windows.net/","queue":"https://triplecrownbuildjob.queue.core.windows.net/","table":"https://triplecrownbuildjob.table.core.windows.net/","file":"https://triplecrownbuildjob.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/docslearning-api-internal/providers/Microsoft.Storage/storageAccounts/triplecrownstorageint","name":"triplecrownstorageint","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-12T05:40:05.9232873Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-12T05:40:05.9232873Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-12T05:40:05.8139160Z","primaryEndpoints":{"dfs":"https://triplecrownstorageint.dfs.core.windows.net/","web":"https://triplecrownstorageint.z22.web.core.windows.net/","blob":"https://triplecrownstorageint.blob.core.windows.net/","queue":"https://triplecrownstorageint.queue.core.windows.net/","table":"https://triplecrownstorageint.table.core.windows.net/","file":"https://triplecrownstorageint.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://triplecrownstorageint-secondary.dfs.core.windows.net/","web":"https://triplecrownstorageint-secondary.z22.web.core.windows.net/","blob":"https://triplecrownstorageint-secondary.blob.core.windows.net/","queue":"https://triplecrownstorageint-secondary.queue.core.windows.net/","table":"https://triplecrownstorageint-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/docslearning-api-internal/providers/Microsoft.Storage/storageAccounts/triplecrownstorageintjob","name":"triplecrownstorageintjob","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-09T06:42:02.9195762Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-09T06:42:02.9195762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-09T06:42:02.8102053Z","primaryEndpoints":{"dfs":"https://triplecrownstorageintjob.dfs.core.windows.net/","web":"https://triplecrownstorageintjob.z22.web.core.windows.net/","blob":"https://triplecrownstorageintjob.blob.core.windows.net/","queue":"https://triplecrownstorageintjob.queue.core.windows.net/","table":"https://triplecrownstorageintjob.table.core.windows.net/","file":"https://triplecrownstorageintjob.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"identity":{"principalId":"a1ea6b18-4bb5-450c-bdc2-77c7bd2698e0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-backend-ppe/providers/Microsoft.Storage/storageAccounts/triplecrownstorageppe","name":"triplecrownstorageppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-21T01:44:33.4128950Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-21T01:44:33.4128950Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-03-21T01:44:33.3660179Z","primaryEndpoints":{"dfs":"https://triplecrownstorageppe.dfs.core.windows.net/","web":"https://triplecrownstorageppe.z22.web.core.windows.net/","blob":"https://triplecrownstorageppe.blob.core.windows.net/","queue":"https://triplecrownstorageppe.queue.core.windows.net/","table":"https://triplecrownstorageppe.table.core.windows.net/","file":"https://triplecrownstorageppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://triplecrownstorageppe-secondary.dfs.core.windows.net/","web":"https://triplecrownstorageppe-secondary.z22.web.core.windows.net/","blob":"https://triplecrownstorageppe-secondary.blob.core.windows.net/","queue":"https://triplecrownstorageppe-secondary.queue.core.windows.net/","table":"https://triplecrownstorageppe-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1f819e53a969fx4224xa03","name":"cs1f819e53a969fx4224xa03","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-18T05:03:40.9152258Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-18T05:03:40.9152258Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-18T05:03:40.8371065Z","primaryEndpoints":{"blob":"https://cs1f819e53a969fx4224xa03.blob.core.windows.net/","queue":"https://cs1f819e53a969fx4224xa03.queue.core.windows.net/","table":"https://cs1f819e53a969fx4224xa03.table.core.windows.net/","file":"https://cs1f819e53a969fx4224xa03.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu_cli_test_msi_rg/providers/Microsoft.Storage/storageAccounts/testchangefeed","name":"testchangefeed","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T08:31:23.1873136Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T08:31:23.1873136Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T08:31:23.1248145Z","primaryEndpoints":{"dfs":"https://testchangefeed.dfs.core.windows.net/","web":"https://testchangefeed.z5.web.core.windows.net/","blob":"https://testchangefeed.blob.core.windows.net/","queue":"https://testchangefeed.queue.core.windows.net/","table":"https://testchangefeed.table.core.windows.net/","file":"https://testchangefeed.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testchangefeed-secondary.dfs.core.windows.net/","web":"https://testchangefeed-secondary.z5.web.core.windows.net/","blob":"https://testchangefeed-secondary.blob.core.windows.net/","queue":"https://testchangefeed-secondary.queue.core.windows.net/","table":"https://testchangefeed-secondary.table.core.windows.net/"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '32501' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 08 Jan 2020 01:31:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 1f588c78-0416-4b40-a098-c72ec8cc4eeb + - 15ab003c-7faa-4bad-8482-45b9f87cf979 + - e452192f-9478-4714-add7-b869f8e37d9b + - cfda99b3-85f9-41a5-9352-aa8c791b7f49 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account show + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-08T01:31:35.6197480Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-08T01:31:35.6197480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-08T01:31:35.5416315Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1200' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:31:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"metadata": {"key1": "value1"}, "shareQuota": 5}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm create + Connection: + - keep-alive + Content-Length: + - '65' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --storage-account -n --share-quota --metadata + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004?api-version=2019-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","properties":{"metadata":{"key1":"value1"},"shareQuota":5}}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:32:00 GMT + etag: + - '"0x8D793DA8E943378"' expires: - '-1' pragma: @@ -64,17 +216,221 @@ interactions: Connection: - keep-alive ParameterSetName: - - --account-name -g -n + - --storage-account -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + headers: + cache-control: + - no-cache + content-length: + - '510' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:32:00 GMT + etag: + - '"0x8D793DA8D0ED3CF"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm exists + Connection: + - keep-alive + ParameterSetName: + - --storage-account -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + headers: + cache-control: + - no-cache + content-length: + - '510' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:32:01 GMT + etag: + - '"0x8D793DA8D0ED3CF"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm exists + Connection: + - keep-alive + ParameterSetName: + - --ids + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + headers: + cache-control: + - no-cache + content-length: + - '510' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:32:02 GMT + etag: + - '"0x8D793DA8D0ED3CF"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm show + Connection: + - keep-alive + ParameterSetName: + - --storage-account -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + headers: + cache-control: + - no-cache + content-length: + - '510' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:32:03 GMT + etag: + - '"0x8D793DA8D0ED3CF"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm show + Connection: + - keep-alive + ParameterSetName: + - --storage-account -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D7881EE650AA5D\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2019-12-24T03:10:59.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -83,9 +439,9 @@ interactions: content-type: - application/json date: - - Tue, 24 Dec 2019 03:11:00 GMT + - Wed, 08 Jan 2020 01:32:03 GMT etag: - - '"0x8D7881EE650AA5D"' + - '"0x8D793DA8D0ED3CF"' expires: - '-1' pragma: @@ -115,17 +471,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --account-name -g -n + - --ids User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D7881EE650AA5D\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2019-12-24T03:10:59.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -134,9 +490,9 @@ interactions: content-type: - application/json date: - - Tue, 24 Dec 2019 03:11:01 GMT + - Wed, 08 Jan 2020 01:32:05 GMT etag: - - '"0x8D7881EE650AA5D"' + - '"0x8D793DA8D0ED3CF"' expires: - '-1' pragma: @@ -166,18 +522,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - --account-name -g -n + - --storage-account -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000005?api-version=2019-06-01 response: body: string: '{"error":{"code":"ShareNotFound","message":"The specified share does - not exist.\nRequestId:c9f08dc0-b01a-004e-8007-ba2770000000\nTime:2019-12-24T03:11:02.5307594Z"}}' + not exist.\nRequestId:83acc531-e01a-010f-1ac3-c50368000000\nTime:2020-01-08T01:32:06.2202530Z"}}' headers: cache-control: - no-cache @@ -186,7 +542,7 @@ interactions: content-type: - application/json date: - - Tue, 24 Dec 2019 03:11:01 GMT + - Wed, 08 Jan 2020 01:32:06 GMT expires: - '-1' pragma: @@ -216,14 +572,128 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --account-name -g -n --share-quota --metadata + - --storage-account -g -n --share-quota --metadata + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","properties":{"metadata":{"key2":"value2"},"shareQuota":10}}' + headers: + cache-control: + - no-cache + content-length: + - '430' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:32:06 GMT + etag: + - '"0x8D793DA92BA3314"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"metadata": {"key2": "value2"}, "shareQuota": 10}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm update + Connection: + - keep-alive + Content-Length: + - '66' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --storage-account -n --share-quota --metadata + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004?api-version=2019-06-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","properties":{"metadata":{"key2":"value2"},"shareQuota":10}}' + headers: + cache-control: + - no-cache + content-length: + - '430' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:32:07 GMT + etag: + - '"0x8D793DA935B726F"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"metadata": {"key2": "value2"}, "shareQuota": 10}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm update + Connection: + - keep-alive + Content-Length: + - '66' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --ids --share-quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","properties":{"metadata":{"key2":"value2"},"shareQuota":10}}' @@ -235,9 +705,9 @@ interactions: content-type: - application/json date: - - Tue, 24 Dec 2019 03:11:02 GMT + - Wed, 08 Jan 2020 01:32:09 GMT etag: - - '"0x8D7881EE8F6A24D"' + - '"0x8D793DA94449CF2"' expires: - '-1' pragma: @@ -269,26 +739,75 @@ interactions: Connection: - keep-alive ParameterSetName: - - --account-name -g --query + - --storage-account -g --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares?api-version=2019-06-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA935B726F\"","properties":{"lastModifiedTime":"2020-01-08T01:32:08.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA94449CF2\"","properties":{"lastModifiedTime":"2020-01-08T01:32:09.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1027' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:32:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm list + Connection: + - keep-alive + ParameterSetName: + - --storage-account --query User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares?api-version=2019-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D7881EE8F6A24D\"","properties":{"lastModifiedTime":"2019-12-24T03:11:03.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA935B726F\"","properties":{"lastModifiedTime":"2020-01-08T01:32:08.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA94449CF2\"","properties":{"lastModifiedTime":"2020-01-08T01:32:09.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' headers: cache-control: - no-cache content-length: - - '519' + - '1027' content-type: - application/json date: - - Tue, 24 Dec 2019 03:11:04 GMT + - Wed, 08 Jan 2020 01:33:51 GMT expires: - '-1' pragma: @@ -320,14 +839,63 @@ interactions: Content-Length: - '0' ParameterSetName: - - --account-name -g -n + - --storage-account -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 08 Jan 2020 01:33:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --ids User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004?api-version=2019-06-01 response: body: string: '' @@ -339,7 +907,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 24 Dec 2019 03:11:04 GMT + - Wed, 08 Jan 2020 01:33:54 GMT expires: - '-1' pragma: @@ -367,18 +935,64 @@ interactions: Connection: - keep-alive ParameterSetName: - - --account-name -g -n + - --storage-account -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 + response: + body: + string: '{"error":{"code":"ShareNotFound","message":"The specified share does + not exist.\nRequestId:000e7150-001a-000a-6ec3-c5b142000000\nTime:2020-01-08T01:33:55.7401675Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '165' + content-type: + - application/json + date: + - Wed, 08 Jan 2020 01:33:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage share-rm exists + Connection: + - keep-alive + ParameterSetName: + - --ids User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004?api-version=2019-06-01 response: body: string: '{"error":{"code":"ShareNotFound","message":"The specified share does - not exist.\nRequestId:c9f08dc8-b01a-004e-0507-ba2770000000\nTime:2019-12-24T03:11:05.9522150Z"}}' + not exist.\nRequestId:000e7152-001a-000a-6fc3-c5b142000000\nTime:2020-01-08T01:33:56.5837639Z"}}' headers: cache-control: - no-cache @@ -387,7 +1001,7 @@ interactions: content-type: - application/json date: - - Tue, 24 Dec 2019 03:11:05 GMT + - Wed, 08 Jan 2020 01:33:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py index 36da871cefa..64f8a4e22ed 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py @@ -14,52 +14,129 @@ class StorageFileShareUsingResourceProviderScenarios(StorageScenarioMixin, Scena @ResourceGroupPreparer() @StorageAccountPreparer() def test_storage_file_using_rm_main_scenario(self): - # Test create command. - share_name = self.create_random_name('share', 24) + # 1. Test create command. + + # Create file share with storage account name and resource group. + share_name_1 = self.create_random_name('share', 24) initial_share_quota = 5 self.kwargs.update({ - 'share_name': share_name, + 'share_name_1': share_name_1, 'initial_share_quota': initial_share_quota }) - result = self.cmd('storage share-rm create --account-name {sa} -g {rg} -n {share_name} --share-quota {initial_share_quota} --metadata key1=value1').get_output_in_json() - self.assertEqual(result['name'], share_name) + + result = self.cmd('storage share-rm create --storage-account {sa} -g {rg} -n {share_name_1} --share-quota {initial_share_quota} --metadata key1=value1').get_output_in_json() + self.assertEqual(result['name'], share_name_1) + self.assertEqual(result['shareQuota'], initial_share_quota) + self.assertEqual(result['metadata']['key1'], 'value1') + + share_id_1 = result['id'] + self.kwargs.update({ + 'share_id_1': share_id_1 + }) + + # Create file share with storage account id. + share_name_2 = self.create_random_name('share', 24) + storage_account = self.cmd('storage account show -n {sa}').get_output_in_json() + storage_account_id = storage_account['id'] + self.kwargs.update({ + 'share_name_2': share_name_2, + 'storage_account_id': storage_account_id + }) + + result = self.cmd('storage share-rm create --storage-account {storage_account_id} -n {share_name_2} --share-quota {initial_share_quota} --metadata key1=value1').get_output_in_json() + self.assertEqual(result['name'], share_name_2) self.assertEqual(result['shareQuota'], initial_share_quota) self.assertEqual(result['metadata']['key1'], 'value1') - # Test exists command (the file share exists). - result = self.cmd('storage share-rm exists --account-name {sa} -g {rg} -n {share_name}').get_output_in_json() + share_id_2 = result['id'] + self.kwargs.update({ + 'share_id_2': share_id_2 + }) + + # 2. Test exists command (the file share exists). + + # Check existence with storage account name and resource group. + result = self.cmd('storage share-rm exists --storage-account {sa} -g {rg} -n {share_name_1}').get_output_in_json() self.assertEqual(result['exists'], True) - # Test show command (the file share exists). - result = self.cmd('storage share-rm show --account-name {sa} -g {rg} -n {share_name}').get_output_in_json() - self.assertEqual(result['name'], share_name) + # Check existence with storage account id. + result = self.cmd('storage share-rm exists --storage-account {storage_account_id} -n {share_name_1}').get_output_in_json() + self.assertEqual(result['exists'], True) + + # Check existence by file share resource id. + result = self.cmd('storage share-rm exists --ids {share_id_1}').get_output_in_json() + self.assertEqual(result['exists'], True) + + # 3. Test show command (the file share exists). + + # Show properties of a file share with storage account name and resource group. + result = self.cmd('storage share-rm show --storage-account {sa} -g {rg} -n {share_name_1}').get_output_in_json() + self.assertEqual(result['name'], share_name_1) - # Test show command (the file share doesn't exist). + # Show properties of a file share with storage account id. + result = self.cmd('storage share-rm show --storage-account {storage_account_id} -n {share_name_1}').get_output_in_json() + self.assertEqual(result['name'], share_name_1) + + # Show properties by file share resource id. + result = self.cmd('storage share-rm show --ids {share_id_1}').get_output_in_json() + self.assertEqual(result['name'], share_name_1) + + # 4. Test show command (the file share doesn't exist). non_exist_share_name = self.create_random_name('share', 24) self.kwargs.update({ 'non_exist_share_name': non_exist_share_name }) with self.assertRaisesRegexp(SystemExit, '3'): - self.cmd('storage share-rm show --account-name {sa} -g {rg} -n {non_exist_share_name}') + self.cmd('storage share-rm show --storage-account {sa} -g {rg} -n {non_exist_share_name}') - # Test update command. + # 5. Test update command. updated_share_quota = 10 self.kwargs.update({ 'updated_share_quota': updated_share_quota }) + + # Update file share with storage account name and resource group. result = self.cmd( - 'storage share-rm update --account-name {sa} -g {rg} -n {share_name} --share-quota {updated_share_quota} --metadata key2=value2').get_output_in_json() + 'storage share-rm update --storage-account {sa} -g {rg} -n {share_name_1} --share-quota {updated_share_quota} --metadata key2=value2').get_output_in_json() self.assertEqual(result['shareQuota'], updated_share_quota) self.assertEqual(result['metadata']['key2'], 'value2') self.assertNotIn('key1', result['metadata']) - # Test list command. - self.assertIn(share_name, - self.cmd('storage share-rm list --account-name {sa} -g {rg} --query "[].name"').get_output_in_json()) + # Update file share with storage account id. + result = self.cmd( + 'storage share-rm update --storage-account {storage_account_id} -n {share_name_2} --share-quota {updated_share_quota} --metadata key2=value2').get_output_in_json() + self.assertEqual(result['shareQuota'], updated_share_quota) + self.assertEqual(result['metadata']['key2'], 'value2') + self.assertNotIn('key1', result['metadata']) - # Test delete command. - self.cmd('storage share-rm delete --account-name {sa} -g {rg} -n {share_name}') + # Update file share by resource id + result = self.cmd( + 'storage share-rm update --ids {share_id_1} --share-quota {updated_share_quota} --metadata key2=value2').get_output_in_json() + self.assertEqual(result['shareQuota'], updated_share_quota) + self.assertEqual(result['metadata']['key2'], 'value2') + self.assertNotIn('key1', result['metadata']) + + # 6. Test list command. + + # List file shares with storage account name and resource group. + self.assertIn(share_name_1, + self.cmd('storage share-rm list --storage-account {sa} -g {rg} --query "[].name"').get_output_in_json()) + + # List file shares with storage account id. + self.assertIn(share_name_1, + self.cmd('storage share-rm list --storage-account {storage_account_id} --query "[].name"').get_output_in_json()) + + # 7. Test delete command. + + # Delete file shares with storage account name and resource group. + self.cmd('storage share-rm delete --storage-account {sa} -g {rg} -n {share_name_1}') + + # Delete file share by resource id. + self.cmd('storage share-rm delete --ids {share_id_2}') + + # 8. Test exists command (the file share doesn't exist). + result = self.cmd('storage share-rm exists --storage-account {sa} -g {rg} -n {share_name_1}').get_output_in_json() + self.assertEqual(result['exists'], False) - # Test exists command (the file share doesn't exist). - result = self.cmd('storage share-rm exists --account-name {sa} -g {rg} -n {share_name}').get_output_in_json() + result = self.cmd('storage share-rm exists --ids {share_id_2}').get_output_in_json() self.assertEqual(result['exists'], False) From e1ae174ddeadfa375db78995cbc6bd377580c159 Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Sun, 19 Jan 2020 13:30:36 +0800 Subject: [PATCH 5/9] update code based on review comments --- .../cli/command_modules/storage/_help.py | 48 ++++---- .../cli/command_modules/storage/_params.py | 2 +- ...t_storage_file_using_rm_main_scenario.yaml | 114 +++++++++--------- ..._file_using_resource_provider_scenarios.py | 28 ++--- 4 files changed, 97 insertions(+), 95 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/storage/_help.py b/src/azure-cli/azure/cli/command_modules/storage/_help.py index cc5e648485c..c1ec91c8d15 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_help.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_help.py @@ -1187,20 +1187,20 @@ type: command short-summary: Create a new Azure file share under the specified storage account. examples: - - name: Create a new Azure file share 'MyFileShare' with metadata and share quota as 10 GB under the storage account 'MyStorageAccount'(account name) in resource group 'MyResourceGroup'. - text: az storage share-rm create -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare --share-quota 10 --metadata key1=value1 key2=value2 - - name: Create a new Azure file share 'MyFileShare' with metadata and share quota as 10 GB under the storage account 'MyStorageAccount' (account id). - text: az storage share-rm create --storage-account MyStorageAccount --name MyFileShare --share-quota 10 --metadata key1=value1 key2=value2 + - name: Create a new Azure file share 'MyFileShare' with metadata and quota as 10 GB under the storage account 'mystorageaccount'(account name) in resource group 'MyResourceGroup'. + text: az storage share-rm create -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare --quota 10 --metadata key1=value1 key2=value2 + - name: Create a new Azure file share 'MyFileShare' with metadata and quota as 10 GB under the storage account 'mystorageaccount' (account id). + text: az storage share-rm create --storage-account mystorageaccount --name MyFileShare --quota 10 --metadata key1=value1 key2=value2 """ helps['storage share-rm delete'] = """ type: command short-summary: Delete the specified Azure file share. examples: - - name: Delete an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm delete -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare - - name: Delete an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account id). - text: az storage share-rm delete --storage-account MyStorageAccount --name MyFileShare + - name: Delete an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm delete -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare + - name: Delete an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account id). + text: az storage share-rm delete --storage-account mystorageaccount --name MyFileShare - name: Delete an Azure file share by resource id. text: az storage share-rm delete --ids file-share-id """ @@ -1209,10 +1209,10 @@ type: command short-summary: Check for the existence of an Azure file share. examples: - - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm exists -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare - - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account id). - text: az storage share-rm exists --storage-account MyStorageAccount --name MyFileShare + - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm exists -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare + - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account id). + text: az storage share-rm exists --storage-account mystorageaccount --name MyFileShare - name: Check for the existence of an Azure file share by resource id. text: az storage share-rm exists --ids file-share-id """ @@ -1221,20 +1221,20 @@ type: command short-summary: List the Azure file shares under the specified storage account. examples: - - name: List the Azure file shares under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. + - name: List the Azure file shares under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. text: az storage share-rm list -g MyResourceGroup --storage-account MyStorageAccount - - name: List the Azure file shares under the storage account 'MyStorageAccount' (account id). - text: az storage share-rm list --storage-account MyStorageAccount + - name: List the Azure file shares under the storage account 'mystorageaccount' (account id). + text: az storage share-rm list --storage-account mystorageaccount """ helps['storage share-rm show'] = """ type: command short-summary: Show the properties for a specified Azure file share. examples: - - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm show -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare - - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account id). - text: az storage share-rm show --storage-account MyStorageAccount --name MyFileShare + - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm show -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare + - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account id). + text: az storage share-rm show --storage-account mystorageaccount --name MyFileShare - name: Show the properties of an Azure file shares by resource id. text: az storage share-rm show --ids file-share-id """ @@ -1243,12 +1243,12 @@ type: command short-summary: Update the properties for an Azure file share. examples: - - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm update -g MyResourceGroup --storage-account MyStorageAccount --name MyFileShare --share-quota 3 --metadata key1=value1 key2=value2 - - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'MyStorageAccount' (account id). - text: az storage share-rm update --storage-account MyStorageAccount --name MyFileShare --share-quota 3 --metadata key1=value1 key2=value2 + - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm update -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare --quota 3 --metadata key1=value1 key2=value2 + - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account id). + text: az storage share-rm update --storage-account mystorageaccount --name MyFileShare --quota 3 --metadata key1=value1 key2=value2 - name: Update the properties for an Azure file shares by resource id. - text: az storage share-rm update --ids file-share-id --share-quota 3 --metadata key1=value1 key2=value2 + text: az storage share-rm update --ids file-share-id --quota 3 --metadata key1=value1 key2=value2 """ helps['storage share'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py index 2f143024999..b2cf5a94510 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -644,7 +644,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('resource_group_name', required=False) c.argument('account_name', storage_account_type) c.argument('share_name', share_name_type, options_list=('--name', '-n'), id_part='child_name_2') - c.argument('share_quota', type=int) + c.argument('share_quota', type=int, options_list='--quota') c.argument('metadata', nargs='+', help='Metadata in space-separated key=value pairs that is associated with the share. ' 'This overwrites any existing metadata', diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml index 0a3e0daffaf..6de114fc705 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --storage-account -g -n --share-quota --metadata + - --storage-account -g -n --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 @@ -34,9 +34,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:31:57 GMT + - Sun, 19 Jan 2020 05:26:53 GMT etag: - - '"0x8D793DA8D0ED3CF"' + - '"0x8D79CA031E9030A"' expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -74,16 +74,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu_cli_test_msi_rg/providers/Microsoft.Storage/storageAccounts/testazurecore","name":"testazurecore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-26T04:34:21.6261912Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-26T04:34:21.6261912Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-26T04:34:21.5637036Z","primaryEndpoints":{"blob":"https://testazurecore.blob.core.windows.net/","queue":"https://testazurecore.queue.core.windows.net/","table":"https://testazurecore.table.core.windows.net/","file":"https://testazurecore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testazurecore-secondary.blob.core.windows.net/","queue":"https://testazurecore-secondary.queue.core.windows.net/","table":"https://testazurecore-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu_cli_test_msi_rg/providers/Microsoft.Storage/storageAccounts/testdisablefeed","name":"testdisablefeed","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T05:45:37.7902035Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T05:45:37.7902035Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T05:45:37.7277238Z","primaryEndpoints":{"blob":"https://testdisablefeed.blob.core.windows.net/","queue":"https://testdisablefeed.queue.core.windows.net/","table":"https://testdisablefeed.table.core.windows.net/","file":"https://testdisablefeed.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testdisablefeed-secondary.blob.core.windows.net/","queue":"https://testdisablefeed-secondary.queue.core.windows.net/","table":"https://testdisablefeed-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsp3k4fsb7rji3ec7sk3merdxsbxxzwyjx7wn3ga2viycwhjwktcgg7u7zj523q7jn/providers/Microsoft.Storage/storageAccounts/clitest26b72e7dyvqsitsqb","name":"clitest26b72e7dyvqsitsqb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-24T01:44:57.4436662Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-24T01:44:57.4436662Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:44:57.3811431Z","primaryEndpoints":{"blob":"https://clitest26b72e7dyvqsitsqb.blob.core.windows.net/","queue":"https://clitest26b72e7dyvqsitsqb.queue.core.windows.net/","table":"https://clitest26b72e7dyvqsitsqb.table.core.windows.net/","file":"https://clitest26b72e7dyvqsitsqb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyakzflbktfcwe3iktcymwcbhlclr6iqyzuqoztbzdxahnfjxw4nwd4ngi4viaz5b/providers/Microsoft.Storage/storageAccounts/clitest5ms6wuf6kt4hmto5t","name":"clitest5ms6wuf6kt4hmto5t","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T06:37:46.1565065Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T06:37:46.1565065Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T06:37:46.0940041Z","primaryEndpoints":{"blob":"https://clitest5ms6wuf6kt4hmto5t.blob.core.windows.net/","queue":"https://clitest5ms6wuf6kt4hmto5t.queue.core.windows.net/","table":"https://clitest5ms6wuf6kt4hmto5t.table.core.windows.net/","file":"https://clitest5ms6wuf6kt4hmto5t.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrkmld22hkxdy352eegaigqtiq2gv6c7ccqdf2ytexsddsndx4mzh2ezt2ugbn3uo5/providers/Microsoft.Storage/storageAccounts/clitest6kbpip6fqqtolzfqc","name":"clitest6kbpip6fqqtolzfqc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T07:38:52.6912570Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T07:38:52.6912570Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T07:38:52.6131137Z","primaryEndpoints":{"blob":"https://clitest6kbpip6fqqtolzfqc.blob.core.windows.net/","queue":"https://clitest6kbpip6fqqtolzfqc.queue.core.windows.net/","table":"https://clitest6kbpip6fqqtolzfqc.table.core.windows.net/","file":"https://clitest6kbpip6fqqtolzfqc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy4wweonapzu2sxe33osvoqf2rroamfwgdrvnsafai65u2fq5mkaa4x3xawdgwnfax/providers/Microsoft.Storage/storageAccounts/clitesta4oggnoflfbl3nusw","name":"clitesta4oggnoflfbl3nusw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-24T01:57:37.8961954Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-24T01:57:37.8961954Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-24T01:57:37.8336537Z","primaryEndpoints":{"blob":"https://clitesta4oggnoflfbl3nusw.blob.core.windows.net/","queue":"https://clitesta4oggnoflfbl3nusw.queue.core.windows.net/","table":"https://clitesta4oggnoflfbl3nusw.table.core.windows.net/","file":"https://clitesta4oggnoflfbl3nusw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfll7ugt6i4mmecnebp4276auxuhtxq2zsvu64ff647o45pyvaymoqcbon5am4bbxn/providers/Microsoft.Storage/storageAccounts/clitestirwzue7iq7rtrslzk","name":"clitestirwzue7iq7rtrslzk","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T06:52:11.4215324Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T06:52:11.4215324Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T06:52:11.3434163Z","primaryEndpoints":{"blob":"https://clitestirwzue7iq7rtrslzk.blob.core.windows.net/","queue":"https://clitestirwzue7iq7rtrslzk.queue.core.windows.net/","table":"https://clitestirwzue7iq7rtrslzk.table.core.windows.net/","file":"https://clitestirwzue7iq7rtrslzk.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekwkyvztfqrvtygquxoy3gcapj6mvru7hm3bzgnkxd2cicla4sxvxetqlv7fo4ze5/providers/Microsoft.Storage/storageAccounts/clitestmmnt4qxcmthnu7hjv","name":"clitestmmnt4qxcmthnu7hjv","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-05T04:51:17.5869910Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-05T04:51:17.5869910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T04:51:17.5088999Z","primaryEndpoints":{"blob":"https://clitestmmnt4qxcmthnu7hjv.blob.core.windows.net/","queue":"https://clitestmmnt4qxcmthnu7hjv.queue.core.windows.net/","table":"https://clitestmmnt4qxcmthnu7hjv.table.core.windows.net/","file":"https://clitestmmnt4qxcmthnu7hjv.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkwan2c6gly2mc3lswpbdbzamva77dn4pleifxkoklowhhgrn5m3h4icgq566wjy74/providers/Microsoft.Storage/storageAccounts/clitestnf7ubv3t6yrtl3ai2","name":"clitestnf7ubv3t6yrtl3ai2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T07:03:34.6615766Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T07:03:34.6615766Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T07:03:34.5834296Z","primaryEndpoints":{"blob":"https://clitestnf7ubv3t6yrtl3ai2.blob.core.windows.net/","queue":"https://clitestnf7ubv3t6yrtl3ai2.queue.core.windows.net/","table":"https://clitestnf7ubv3t6yrtl3ai2.table.core.windows.net/","file":"https://clitestnf7ubv3t6yrtl3ai2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3fqnhbhxmvje7o4wams47anorgymathfcjtqzieqjeygprhnw2z57mf46s33qkxef/providers/Microsoft.Storage/storageAccounts/clitestnkfvzo7jmcvzmbw3g","name":"clitestnkfvzo7jmcvzmbw3g","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-05T09:58:54.3371072Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-05T09:58:54.3371072Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-05T09:58:54.2590298Z","primaryEndpoints":{"blob":"https://clitestnkfvzo7jmcvzmbw3g.blob.core.windows.net/","queue":"https://clitestnkfvzo7jmcvzmbw3g.queue.core.windows.net/","table":"https://clitestnkfvzo7jmcvzmbw3g.table.core.windows.net/","file":"https://clitestnkfvzo7jmcvzmbw3g.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg37u2n7pyjhgecgoksyaiwxmvrztimvfnx33hyybls5r7bol4cwceeql6v6yrlvxyc/providers/Microsoft.Storage/storageAccounts/clitestpdvy5zr6jhlqwqh3n","name":"clitestpdvy5zr6jhlqwqh3n","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T06:55:37.4754793Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T06:55:37.4754793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T06:55:37.3973728Z","primaryEndpoints":{"blob":"https://clitestpdvy5zr6jhlqwqh3n.blob.core.windows.net/","queue":"https://clitestpdvy5zr6jhlqwqh3n.queue.core.windows.net/","table":"https://clitestpdvy5zr6jhlqwqh3n.table.core.windows.net/","file":"https://clitestpdvy5zr6jhlqwqh3n.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-08T01:31:35.6197480Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-08T01:31:35.6197480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-08T01:31:35.5416315Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-browse-ppe/providers/Microsoft.Storage/storageAccounts/docslearningbrowsecrppe","name":"docslearningbrowsecrppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T06:11:48.8468455Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T06:11:48.8468455Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-08-27T06:11:48.7218544Z","primaryEndpoints":{"blob":"https://docslearningbrowsecrppe.blob.core.windows.net/","queue":"https://docslearningbrowsecrppe.queue.core.windows.net/","table":"https://docslearningbrowsecrppe.table.core.windows.net/","file":"https://docslearningbrowsecrppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-browse-ppe/providers/Microsoft.Storage/storageAccounts/docslearningbrowseppe","name":"docslearningbrowseppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-01T07:31:15.7005014Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-01T07:31:15.7005014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-08-01T07:31:15.5130205Z","primaryEndpoints":{"blob":"https://docslearningbrowseppe.blob.core.windows.net/","queue":"https://docslearningbrowseppe.queue.core.windows.net/","table":"https://docslearningbrowseppe.table.core.windows.net/","file":"https://docslearningbrowseppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/docs-recommendation/providers/Microsoft.Storage/storageAccounts/docsrecommendationppe","name":"docsrecommendationppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-13T08:19:58.0932802Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-13T08:19:58.0932802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-06-13T08:19:57.9525680Z","primaryEndpoints":{"dfs":"https://docsrecommendationppe.dfs.core.windows.net/","blob":"https://docsrecommendationppe.blob.core.windows.net/","table":"https://docsrecommendationppe.table.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hackathon2019/providers/Microsoft.Storage/storageAccounts/learnsubscription","name":"learnsubscription","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-07-16T01:58:12.4250557Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-07-16T01:58:12.4250557Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-07-16T01:58:12.3312691Z","primaryEndpoints":{"blob":"https://learnsubscription.blob.core.windows.net/","queue":"https://learnsubscription.queue.core.windows.net/","table":"https://learnsubscription.table.core.windows.net/","file":"https://learnsubscription.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn-hierarchy-ppe/providers/Microsoft.Storage/storageAccounts/mslearnhierarchyppe","name":"mslearnhierarchyppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-26T09:09:48.1255683Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-26T09:09:48.1255683Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-26T09:09:48.0786942Z","primaryEndpoints":{"blob":"https://mslearnhierarchyppe.blob.core.windows.net/","queue":"https://mslearnhierarchyppe.queue.core.windows.net/","table":"https://mslearnhierarchyppe.table.core.windows.net/","file":"https://mslearnhierarchyppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn-progress-internal/providers/Microsoft.Storage/storageAccounts/mslearnprogressint","name":"mslearnprogressint","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T06:06:21.9924369Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T06:06:21.9924369Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T06:06:21.9455627Z","primaryEndpoints":{"blob":"https://mslearnprogressint.blob.core.windows.net/","queue":"https://mslearnprogressint.queue.core.windows.net/","table":"https://mslearnprogressint.table.core.windows.net/","file":"https://mslearnprogressint.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mslearn-progress-ppe/providers/Microsoft.Storage/storageAccounts/mslearnprogressppe","name":"mslearnprogressppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-17T06:03:35.0999793Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-17T06:03:35.0999793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-17T06:03:35.0530850Z","primaryEndpoints":{"blob":"https://mslearnprogressppe.blob.core.windows.net/","queue":"https://mslearnprogressppe.queue.core.windows.net/","table":"https://mslearnprogressppe.table.core.windows.net/","file":"https://mslearnprogressppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-backend-ppe/providers/Microsoft.Storage/storageAccounts/streamjobtest","name":"streamjobtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-21T08:15:00.3957508Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-21T08:15:00.3957508Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-21T08:15:00.2863594Z","primaryEndpoints":{"blob":"https://streamjobtest.blob.core.windows.net/","queue":"https://streamjobtest.queue.core.windows.net/","table":"https://streamjobtest.table.core.windows.net/","file":"https://streamjobtest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-backend-ppe/providers/Microsoft.Storage/storageAccounts/triplecrownbuildjob","name":"triplecrownbuildjob","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-05T08:26:11.4985583Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-05T08:26:11.4985583Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-05T08:26:11.1704430Z","primaryEndpoints":{"blob":"https://triplecrownbuildjob.blob.core.windows.net/","queue":"https://triplecrownbuildjob.queue.core.windows.net/","table":"https://triplecrownbuildjob.table.core.windows.net/","file":"https://triplecrownbuildjob.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/docslearning-api-internal/providers/Microsoft.Storage/storageAccounts/triplecrownstorageint","name":"triplecrownstorageint","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-12T05:40:05.9232873Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-12T05:40:05.9232873Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-12T05:40:05.8139160Z","primaryEndpoints":{"dfs":"https://triplecrownstorageint.dfs.core.windows.net/","web":"https://triplecrownstorageint.z22.web.core.windows.net/","blob":"https://triplecrownstorageint.blob.core.windows.net/","queue":"https://triplecrownstorageint.queue.core.windows.net/","table":"https://triplecrownstorageint.table.core.windows.net/","file":"https://triplecrownstorageint.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://triplecrownstorageint-secondary.dfs.core.windows.net/","web":"https://triplecrownstorageint-secondary.z22.web.core.windows.net/","blob":"https://triplecrownstorageint-secondary.blob.core.windows.net/","queue":"https://triplecrownstorageint-secondary.queue.core.windows.net/","table":"https://triplecrownstorageint-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/docslearning-api-internal/providers/Microsoft.Storage/storageAccounts/triplecrownstorageintjob","name":"triplecrownstorageintjob","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-09T06:42:02.9195762Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-09T06:42:02.9195762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-09T06:42:02.8102053Z","primaryEndpoints":{"dfs":"https://triplecrownstorageintjob.dfs.core.windows.net/","web":"https://triplecrownstorageintjob.z22.web.core.windows.net/","blob":"https://triplecrownstorageintjob.blob.core.windows.net/","queue":"https://triplecrownstorageintjob.queue.core.windows.net/","table":"https://triplecrownstorageintjob.table.core.windows.net/","file":"https://triplecrownstorageintjob.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"identity":{"principalId":"a1ea6b18-4bb5-450c-bdc2-77c7bd2698e0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/triplecrown-backend-ppe/providers/Microsoft.Storage/storageAccounts/triplecrownstorageppe","name":"triplecrownstorageppe","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-21T01:44:33.4128950Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-21T01:44:33.4128950Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-03-21T01:44:33.3660179Z","primaryEndpoints":{"dfs":"https://triplecrownstorageppe.dfs.core.windows.net/","web":"https://triplecrownstorageppe.z22.web.core.windows.net/","blob":"https://triplecrownstorageppe.blob.core.windows.net/","queue":"https://triplecrownstorageppe.queue.core.windows.net/","table":"https://triplecrownstorageppe.table.core.windows.net/","file":"https://triplecrownstorageppe.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://triplecrownstorageppe-secondary.dfs.core.windows.net/","web":"https://triplecrownstorageppe-secondary.z22.web.core.windows.net/","blob":"https://triplecrownstorageppe-secondary.blob.core.windows.net/","queue":"https://triplecrownstorageppe-secondary.queue.core.windows.net/","table":"https://triplecrownstorageppe-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1f819e53a969fx4224xa03","name":"cs1f819e53a969fx4224xa03","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-18T05:03:40.9152258Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-18T05:03:40.9152258Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-18T05:03:40.8371065Z","primaryEndpoints":{"blob":"https://cs1f819e53a969fx4224xa03.blob.core.windows.net/","queue":"https://cs1f819e53a969fx4224xa03.queue.core.windows.net/","table":"https://cs1f819e53a969fx4224xa03.table.core.windows.net/","file":"https://cs1f819e53a969fx4224xa03.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu_cli_test_msi_rg/providers/Microsoft.Storage/storageAccounts/testchangefeed","name":"testchangefeed","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T08:31:23.1873136Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T08:31:23.1873136Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T08:31:23.1248145Z","primaryEndpoints":{"dfs":"https://testchangefeed.dfs.core.windows.net/","web":"https://testchangefeed.z5.web.core.windows.net/","blob":"https://testchangefeed.blob.core.windows.net/","queue":"https://testchangefeed.queue.core.windows.net/","table":"https://testchangefeed.table.core.windows.net/","file":"https://testchangefeed.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testchangefeed-secondary.dfs.core.windows.net/","web":"https://testchangefeed-secondary.z5.web.core.windows.net/","blob":"https://testchangefeed-secondary.blob.core.windows.net/","queue":"https://testchangefeed-secondary.queue.core.windows.net/","table":"https://testchangefeed-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag180","name":"azureclitestrgdiag180","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T03:44:58.5910120Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag180.blob.core.windows.net/","queue":"https://azureclitestrgdiag180.queue.core.windows.net/","table":"https://azureclitestrgdiag180.table.core.windows.net/","file":"https://azureclitestrgdiag180.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg/providers/Microsoft.Storage/storageAccounts/yusa","name":"yusa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"azureFilesIdentityBasedAuthentication":{"directoryServiceOptions":"None"},"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T03:22:16.1380808Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T03:22:16.1380808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-16T03:22:16.0599888Z","primaryEndpoints":{"dfs":"https://yusa.dfs.core.windows.net/","web":"https://yusa.z13.web.core.windows.net/","blob":"https://yusa.blob.core.windows.net/","queue":"https://yusa.queue.core.windows.net/","table":"https://yusa.table.core.windows.net/","file":"https://yusa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag","name":"azureclitestrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T02:54:26.8502755Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag.blob.core.windows.net/","queue":"https://azureclitestrgdiag.queue.core.windows.net/","table":"https://azureclitestrgdiag.table.core.windows.net/","file":"https://azureclitestrgdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T05:26:31.1059892Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T05:26:31.1059892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T05:26:31.0278408Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test/providers/Microsoft.Storage/storageAccounts/haroldtestdiag","name":"haroldtestdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-16T07:44:20.6757652Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-16T07:44:20.6757652Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-16T07:44:20.6132651Z","primaryEndpoints":{"blob":"https://haroldtestdiag.blob.core.windows.net/","queue":"https://haroldtestdiag.queue.core.windows.net/","table":"https://haroldtestdiag.table.core.windows.net/","file":"https://haroldtestdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaojianxu/providers/Microsoft.Storage/storageAccounts/xiaojianxudiag967","name":"xiaojianxudiag967","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T02:18:10.6614312Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T02:18:10.6614312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T02:18:10.5989517Z","primaryEndpoints":{"blob":"https://xiaojianxudiag967.blob.core.windows.net/","queue":"https://xiaojianxudiag967.queue.core.windows.net/","table":"https://xiaojianxudiag967.table.core.windows.net/","file":"https://xiaojianxudiag967.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs10b1f64711bf0x4ddaxaec","name":"cs10b1f64711bf0x4ddaxaec","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T02:34:30.2481666Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T02:34:30.2481666Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-19T02:34:30.2013009Z","primaryEndpoints":{"dfs":"https://cs10b1f64711bf0x4ddaxaec.dfs.core.windows.net/","web":"https://cs10b1f64711bf0x4ddaxaec.z23.web.core.windows.net/","blob":"https://cs10b1f64711bf0x4ddaxaec.blob.core.windows.net/","queue":"https://cs10b1f64711bf0x4ddaxaec.queue.core.windows.net/","table":"https://cs10b1f64711bf0x4ddaxaec.table.core.windows.net/","file":"https://cs10b1f64711bf0x4ddaxaec.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlcsst","name":"jlcsst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"jlvmlist":"vm12"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T08:25:41.0149573Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T08:25:41.0149573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-14T08:25:40.9837595Z","primaryEndpoints":{"dfs":"https://jlcsst.dfs.core.windows.net/","web":"https://jlcsst.z23.web.core.windows.net/","blob":"https://jlcsst.blob.core.windows.net/","queue":"https://jlcsst.queue.core.windows.net/","table":"https://jlcsst.table.core.windows.net/","file":"https://jlcsst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T10:41:22.0812304Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T10:41:22.0812304Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T10:41:22.0343487Z","primaryEndpoints":{"blob":"https://jlst.blob.core.windows.net/","queue":"https://jlst.queue.core.windows.net/","table":"https://jlst.table.core.windows.net/","file":"https://jlst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jlst-secondary.blob.core.windows.net/","queue":"https://jlst-secondary.queue.core.windows.net/","table":"https://jlst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jltestst","name":"jltestst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.2.0/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T09:47:19.0366594Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T09:47:19.0366594Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T09:47:18.9741606Z","primaryEndpoints":{"blob":"https://jltestst.blob.core.windows.net/","queue":"https://jltestst.queue.core.windows.net/","table":"https://jltestst.table.core.windows.net/","file":"https://jltestst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jltestst-secondary.blob.core.windows.net/","queue":"https://jltestst-secondary.queue.core.windows.net/","table":"https://jltestst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test/providers/Microsoft.Storage/storageAccounts/haroldtestdiag119","name":"haroldtestdiag119","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-16T13:20:18.7848214Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-16T13:20:18.7848214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-16T13:20:18.7223280Z","primaryEndpoints":{"blob":"https://haroldtestdiag119.blob.core.windows.net/","queue":"https://haroldtestdiag119.queue.core.windows.net/","table":"https://haroldtestdiag119.table.core.windows.net/","file":"https://haroldtestdiag119.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"992520e7-b604-4640-a561-1693e630a10b","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragev2","name":"zuhstoragev2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T05:48:39.3772205Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T05:48:39.3772205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-16T05:48:39.3303619Z","primaryEndpoints":{"dfs":"https://zuhstoragev2.dfs.core.windows.net/","web":"https://zuhstoragev2.z3.web.core.windows.net/","blob":"https://zuhstoragev2.blob.core.windows.net/","queue":"https://zuhstoragev2.queue.core.windows.net/","table":"https://zuhstoragev2.table.core.windows.net/","file":"https://zuhstoragev2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtestasd","name":"zuhtestasd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-17T06:52:31.9737910Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-17T06:52:31.9737910Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-17T06:52:31.9425447Z","primaryEndpoints":{"dfs":"https://zuhtestasd.dfs.core.windows.net/","web":"https://zuhtestasd.z3.web.core.windows.net/","blob":"https://zuhtestasd.blob.core.windows.net/","queue":"https://zuhtestasd.queue.core.windows.net/","table":"https://zuhtestasd.table.core.windows.net/","file":"https://zuhtestasd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '32501' + - '63187' content-type: - application/json; charset=utf-8 date: - - Wed, 08 Jan 2020 01:31:58 GMT + - Sun, 19 Jan 2020 05:26:55 GMT expires: - '-1' pragma: @@ -95,10 +95,12 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 1f588c78-0416-4b40-a098-c72ec8cc4eeb - - 15ab003c-7faa-4bad-8482-45b9f87cf979 - - e452192f-9478-4714-add7-b869f8e37d9b - - cfda99b3-85f9-41a5-9352-aa8c791b7f49 + - c21a1bb1-8af3-4ac7-bbde-6b4cca8245df + - c928fb61-e1a2-4485-b16f-6c0f13bf9503 + - c105b6bb-5465-4f0f-8619-d4e440a2d504 + - 62394b2c-190b-452b-b5bb-241f6a14d187 + - 386025fb-5b2b-4f93-9df1-2e0f147aa8fe + - 6d40fef1-0b5d-464a-8b50-569cf5fb63f2 status: code: 200 message: OK @@ -124,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-08T01:31:35.6197480Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-08T01:31:35.6197480Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-08T01:31:35.5416315Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T05:26:31.1059892Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T05:26:31.1059892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T05:26:31.0278408Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -133,7 +135,7 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:31:59 GMT + - Sun, 19 Jan 2020 05:26:56 GMT expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --storage-account -n --share-quota --metadata + - --storage-account -n --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 @@ -186,9 +188,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:00 GMT + - Sun, 19 Jan 2020 05:26:57 GMT etag: - - '"0x8D793DA8E943378"' + - '"0x8D79CA034134BF4"' expires: - '-1' pragma: @@ -200,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -226,7 +228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -235,9 +237,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:00 GMT + - Sun, 19 Jan 2020 05:26:58 GMT etag: - - '"0x8D793DA8D0ED3CF"' + - '"0x8D79CA031E9030A"' expires: - '-1' pragma: @@ -277,7 +279,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -286,9 +288,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:01 GMT + - Sun, 19 Jan 2020 05:26:59 GMT etag: - - '"0x8D793DA8D0ED3CF"' + - '"0x8D79CA031E9030A"' expires: - '-1' pragma: @@ -328,7 +330,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -337,9 +339,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:02 GMT + - Sun, 19 Jan 2020 05:27:00 GMT etag: - - '"0x8D793DA8D0ED3CF"' + - '"0x8D79CA031E9030A"' expires: - '-1' pragma: @@ -379,7 +381,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -388,9 +390,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:03 GMT + - Sun, 19 Jan 2020 05:27:01 GMT etag: - - '"0x8D793DA8D0ED3CF"' + - '"0x8D79CA031E9030A"' expires: - '-1' pragma: @@ -430,7 +432,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -439,9 +441,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:03 GMT + - Sun, 19 Jan 2020 05:27:01 GMT etag: - - '"0x8D793DA8D0ED3CF"' + - '"0x8D79CA031E9030A"' expires: - '-1' pragma: @@ -481,7 +483,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA8D0ED3CF\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-08T01:31:57.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -490,9 +492,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:05 GMT + - Sun, 19 Jan 2020 05:27:02 GMT etag: - - '"0x8D793DA8D0ED3CF"' + - '"0x8D79CA031E9030A"' expires: - '-1' pragma: @@ -533,7 +535,7 @@ interactions: response: body: string: '{"error":{"code":"ShareNotFound","message":"The specified share does - not exist.\nRequestId:83acc531-e01a-010f-1ac3-c50368000000\nTime:2020-01-08T01:32:06.2202530Z"}}' + not exist.\nRequestId:0e84241d-a01a-0121-1189-ce83af000000\nTime:2020-01-19T05:27:03.9497048Z"}}' headers: cache-control: - no-cache @@ -542,7 +544,7 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:06 GMT + - Sun, 19 Jan 2020 05:27:03 GMT expires: - '-1' pragma: @@ -572,7 +574,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --storage-account -g -n --share-quota --metadata + - --storage-account -g -n --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 @@ -591,9 +593,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:06 GMT + - Sun, 19 Jan 2020 05:27:05 GMT etag: - - '"0x8D793DA92BA3314"' + - '"0x8D79CA038938992"' expires: - '-1' pragma: @@ -629,7 +631,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --storage-account -n --share-quota --metadata + - --storage-account -n --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 @@ -648,9 +650,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:07 GMT + - Sun, 19 Jan 2020 05:27:06 GMT etag: - - '"0x8D793DA935B726F"' + - '"0x8D79CA039596E4B"' expires: - '-1' pragma: @@ -686,7 +688,7 @@ interactions: Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --ids --share-quota --metadata + - --ids --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 @@ -705,9 +707,9 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:09 GMT + - Sun, 19 Jan 2020 05:27:06 GMT etag: - - '"0x8D793DA94449CF2"' + - '"0x8D79CA039DF3130"' expires: - '-1' pragma: @@ -749,7 +751,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares?api-version=2019-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA935B726F\"","properties":{"lastModifiedTime":"2020-01-08T01:32:08.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA94449CF2\"","properties":{"lastModifiedTime":"2020-01-08T01:32:09.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA039596E4B\"","properties":{"lastModifiedTime":"2020-01-19T05:27:06.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA039DF3130\"","properties":{"lastModifiedTime":"2020-01-19T05:27:07.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' headers: cache-control: - no-cache @@ -758,7 +760,7 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:32:10 GMT + - Sun, 19 Jan 2020 05:27:08 GMT expires: - '-1' pragma: @@ -798,7 +800,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares?api-version=2019-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA935B726F\"","properties":{"lastModifiedTime":"2020-01-08T01:32:08.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D793DA94449CF2\"","properties":{"lastModifiedTime":"2020-01-08T01:32:09.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA039596E4B\"","properties":{"lastModifiedTime":"2020-01-19T05:27:06.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA039DF3130\"","properties":{"lastModifiedTime":"2020-01-19T05:27:07.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' headers: cache-control: - no-cache @@ -807,7 +809,7 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:33:51 GMT + - Sun, 19 Jan 2020 05:27:08 GMT expires: - '-1' pragma: @@ -858,7 +860,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 08 Jan 2020 01:33:52 GMT + - Sun, 19 Jan 2020 05:27:10 GMT expires: - '-1' pragma: @@ -907,7 +909,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 08 Jan 2020 01:33:54 GMT + - Sun, 19 Jan 2020 05:27:11 GMT expires: - '-1' pragma: @@ -946,7 +948,7 @@ interactions: response: body: string: '{"error":{"code":"ShareNotFound","message":"The specified share does - not exist.\nRequestId:000e7150-001a-000a-6ec3-c5b142000000\nTime:2020-01-08T01:33:55.7401675Z"}}' + not exist.\nRequestId:0e842439-a01a-0121-1e89-ce83af000000\nTime:2020-01-19T05:27:12.6818664Z"}}' headers: cache-control: - no-cache @@ -955,7 +957,7 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:33:54 GMT + - Sun, 19 Jan 2020 05:27:11 GMT expires: - '-1' pragma: @@ -992,7 +994,7 @@ interactions: response: body: string: '{"error":{"code":"ShareNotFound","message":"The specified share does - not exist.\nRequestId:000e7152-001a-000a-6fc3-c5b142000000\nTime:2020-01-08T01:33:56.5837639Z"}}' + not exist.\nRequestId:0e84243c-a01a-0121-1f89-ce83af000000\nTime:2020-01-19T05:27:13.8897137Z"}}' headers: cache-control: - no-cache @@ -1001,7 +1003,7 @@ interactions: content-type: - application/json date: - - Wed, 08 Jan 2020 01:33:55 GMT + - Sun, 19 Jan 2020 05:27:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py index 64f8a4e22ed..0b07091d649 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py @@ -18,15 +18,15 @@ def test_storage_file_using_rm_main_scenario(self): # Create file share with storage account name and resource group. share_name_1 = self.create_random_name('share', 24) - initial_share_quota = 5 + initial_quota = 5 self.kwargs.update({ 'share_name_1': share_name_1, - 'initial_share_quota': initial_share_quota + 'initial_quota': initial_quota }) - result = self.cmd('storage share-rm create --storage-account {sa} -g {rg} -n {share_name_1} --share-quota {initial_share_quota} --metadata key1=value1').get_output_in_json() + result = self.cmd('storage share-rm create --storage-account {sa} -g {rg} -n {share_name_1} --quota {initial_quota} --metadata key1=value1').get_output_in_json() self.assertEqual(result['name'], share_name_1) - self.assertEqual(result['shareQuota'], initial_share_quota) + self.assertEqual(result['shareQuota'], initial_quota) self.assertEqual(result['metadata']['key1'], 'value1') share_id_1 = result['id'] @@ -43,9 +43,9 @@ def test_storage_file_using_rm_main_scenario(self): 'storage_account_id': storage_account_id }) - result = self.cmd('storage share-rm create --storage-account {storage_account_id} -n {share_name_2} --share-quota {initial_share_quota} --metadata key1=value1').get_output_in_json() + result = self.cmd('storage share-rm create --storage-account {storage_account_id} -n {share_name_2} --quota {initial_quota} --metadata key1=value1').get_output_in_json() self.assertEqual(result['name'], share_name_2) - self.assertEqual(result['shareQuota'], initial_share_quota) + self.assertEqual(result['shareQuota'], initial_quota) self.assertEqual(result['metadata']['key1'], 'value1') share_id_2 = result['id'] @@ -90,29 +90,29 @@ def test_storage_file_using_rm_main_scenario(self): self.cmd('storage share-rm show --storage-account {sa} -g {rg} -n {non_exist_share_name}') # 5. Test update command. - updated_share_quota = 10 + updated_quota = 10 self.kwargs.update({ - 'updated_share_quota': updated_share_quota + 'updated_quota': updated_quota }) # Update file share with storage account name and resource group. result = self.cmd( - 'storage share-rm update --storage-account {sa} -g {rg} -n {share_name_1} --share-quota {updated_share_quota} --metadata key2=value2').get_output_in_json() - self.assertEqual(result['shareQuota'], updated_share_quota) + 'storage share-rm update --storage-account {sa} -g {rg} -n {share_name_1} --quota {updated_quota} --metadata key2=value2').get_output_in_json() + self.assertEqual(result['shareQuota'], updated_quota) self.assertEqual(result['metadata']['key2'], 'value2') self.assertNotIn('key1', result['metadata']) # Update file share with storage account id. result = self.cmd( - 'storage share-rm update --storage-account {storage_account_id} -n {share_name_2} --share-quota {updated_share_quota} --metadata key2=value2').get_output_in_json() - self.assertEqual(result['shareQuota'], updated_share_quota) + 'storage share-rm update --storage-account {storage_account_id} -n {share_name_2} --quota {updated_quota} --metadata key2=value2').get_output_in_json() + self.assertEqual(result['shareQuota'], updated_quota) self.assertEqual(result['metadata']['key2'], 'value2') self.assertNotIn('key1', result['metadata']) # Update file share by resource id result = self.cmd( - 'storage share-rm update --ids {share_id_1} --share-quota {updated_share_quota} --metadata key2=value2').get_output_in_json() - self.assertEqual(result['shareQuota'], updated_share_quota) + 'storage share-rm update --ids {share_id_1} --quota {updated_quota} --metadata key2=value2').get_output_in_json() + self.assertEqual(result['shareQuota'], updated_quota) self.assertEqual(result['metadata']['key2'], 'value2') self.assertNotIn('key1', result['metadata']) From 54079693cdb7343cb296015ef5113229c5d80dfc Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Sun, 19 Jan 2020 14:33:44 +0800 Subject: [PATCH 6/9] add confirmation for delete command --- src/azure-cli/azure/cli/command_modules/storage/_help.py | 4 ++++ src/azure-cli/azure/cli/command_modules/storage/commands.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/storage/_help.py b/src/azure-cli/azure/cli/command_modules/storage/_help.py index c1ec91c8d15..710ed78ce08 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_help.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_help.py @@ -1189,6 +1189,10 @@ examples: - name: Create a new Azure file share 'MyFileShare' with metadata and quota as 10 GB under the storage account 'mystorageaccount'(account name) in resource group 'MyResourceGroup'. text: az storage share-rm create -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare --quota 10 --metadata key1=value1 key2=value2 + - name: Create a new Azure file share 'MyFileShare' with metadata and quota as 6000 GB under the storage account 'mystorageaccount'(account name) which enables large file share in resource group 'MyResourceGroup'. + text: | + az storage account update -g MyResourceGroup --name mystorageaccount --enable-large-file-share + az storage share-rm create -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare --quota 6000 --metadata key1=value1 key2=value2 - name: Create a new Azure file share 'MyFileShare' with metadata and quota as 10 GB under the storage account 'mystorageaccount' (account id). text: az storage share-rm create --storage-account mystorageaccount --name MyFileShare --quota 10 --metadata key1=value1 key2=value2 """ diff --git a/src/azure-cli/azure/cli/command_modules/storage/commands.py b/src/azure-cli/azure/cli/command_modules/storage/commands.py index e352bfedfed..023ebb62669 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/commands.py +++ b/src/azure-cli/azure/cli/command_modules/storage/commands.py @@ -332,7 +332,7 @@ def get_custom_sdk(custom_module, client_factory, resource_type=ResourceType.DAT resource_type=ResourceType.MGMT_STORAGE), resource_type=ResourceType.MGMT_STORAGE, min_api='2019-04-01', is_preview=True) as g: g.command('create', 'create') - g.command('delete', 'delete') + g.command('delete', 'delete', confirmation=True) g.custom_command('exists', '_file_share_exists', transform=create_boolean_result_output_transformer('exists')) g.command('list', 'list') g.show_command('show', 'get') From 4758f3f653042767bc04268c1d44a7f59232aaf2 Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Sun, 19 Jan 2020 15:02:13 +0800 Subject: [PATCH 7/9] make file share name lower case in help file --- .../cli/command_modules/storage/_help.py | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/storage/_help.py b/src/azure-cli/azure/cli/command_modules/storage/_help.py index 710ed78ce08..c685f4aa05b 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_help.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_help.py @@ -1187,24 +1187,24 @@ type: command short-summary: Create a new Azure file share under the specified storage account. examples: - - name: Create a new Azure file share 'MyFileShare' with metadata and quota as 10 GB under the storage account 'mystorageaccount'(account name) in resource group 'MyResourceGroup'. - text: az storage share-rm create -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare --quota 10 --metadata key1=value1 key2=value2 - - name: Create a new Azure file share 'MyFileShare' with metadata and quota as 6000 GB under the storage account 'mystorageaccount'(account name) which enables large file share in resource group 'MyResourceGroup'. + - name: Create a new Azure file share 'myfileshare' with metadata and quota as 10 GB under the storage account 'mystorageaccount'(account name) in resource group 'MyResourceGroup'. + text: az storage share-rm create -g MyResourceGroup --storage-account mystorageaccount --name myfileshare --quota 10 --metadata key1=value1 key2=value2 + - name: Create a new Azure file share 'myfileshare' with metadata and quota as 6000 GB under the storage account 'mystorageaccount'(account name) which enables large file share in resource group 'MyResourceGroup'. text: | az storage account update -g MyResourceGroup --name mystorageaccount --enable-large-file-share - az storage share-rm create -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare --quota 6000 --metadata key1=value1 key2=value2 - - name: Create a new Azure file share 'MyFileShare' with metadata and quota as 10 GB under the storage account 'mystorageaccount' (account id). - text: az storage share-rm create --storage-account mystorageaccount --name MyFileShare --quota 10 --metadata key1=value1 key2=value2 + az storage share-rm create -g MyResourceGroup --storage-account mystorageaccount --name myfileshare --quota 6000 --metadata key1=value1 key2=value2 + - name: Create a new Azure file share 'myfileshare' with metadata and quota as 10 GB under the storage account 'mystorageaccount' (account id). + text: az storage share-rm create --storage-account mystorageaccount --name myfileshare --quota 10 --metadata key1=value1 key2=value2 """ helps['storage share-rm delete'] = """ type: command short-summary: Delete the specified Azure file share. examples: - - name: Delete an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm delete -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare - - name: Delete an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account id). - text: az storage share-rm delete --storage-account mystorageaccount --name MyFileShare + - name: Delete an Azure file share 'myfileshare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm delete -g MyResourceGroup --storage-account mystorageaccount --name myfileshare + - name: Delete an Azure file share 'myfileshare' under the storage account 'mystorageaccount' (account id). + text: az storage share-rm delete --storage-account mystorageaccount --name myfileshare - name: Delete an Azure file share by resource id. text: az storage share-rm delete --ids file-share-id """ @@ -1213,10 +1213,10 @@ type: command short-summary: Check for the existence of an Azure file share. examples: - - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm exists -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare - - name: Check for the existence of an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account id). - text: az storage share-rm exists --storage-account mystorageaccount --name MyFileShare + - name: Check for the existence of an Azure file share 'myfileshare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm exists -g MyResourceGroup --storage-account mystorageaccount --name myfileshare + - name: Check for the existence of an Azure file share 'myfileshare' under the storage account 'mystorageaccount' (account id). + text: az storage share-rm exists --storage-account mystorageaccount --name myfileshare - name: Check for the existence of an Azure file share by resource id. text: az storage share-rm exists --ids file-share-id """ @@ -1226,7 +1226,7 @@ short-summary: List the Azure file shares under the specified storage account. examples: - name: List the Azure file shares under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm list -g MyResourceGroup --storage-account MyStorageAccount + text: az storage share-rm list -g MyResourceGroup --storage-account mystorageaccount - name: List the Azure file shares under the storage account 'mystorageaccount' (account id). text: az storage share-rm list --storage-account mystorageaccount """ @@ -1235,10 +1235,10 @@ type: command short-summary: Show the properties for a specified Azure file share. examples: - - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm show -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare - - name: Show the properties for an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account id). - text: az storage share-rm show --storage-account mystorageaccount --name MyFileShare + - name: Show the properties for an Azure file share 'myfileshare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm show -g MyResourceGroup --storage-account mystorageaccount --name myfileshare + - name: Show the properties for an Azure file share 'myfileshare' under the storage account 'mystorageaccount' (account id). + text: az storage share-rm show --storage-account mystorageaccount --name myfileshare - name: Show the properties of an Azure file shares by resource id. text: az storage share-rm show --ids file-share-id """ @@ -1247,10 +1247,10 @@ type: command short-summary: Update the properties for an Azure file share. examples: - - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. - text: az storage share-rm update -g MyResourceGroup --storage-account mystorageaccount --name MyFileShare --quota 3 --metadata key1=value1 key2=value2 - - name: Update the properties for an Azure file share 'MyFileShare' under the storage account 'mystorageaccount' (account id). - text: az storage share-rm update --storage-account mystorageaccount --name MyFileShare --quota 3 --metadata key1=value1 key2=value2 + - name: Update the properties for an Azure file share 'myfileshare' under the storage account 'mystorageaccount' (account name) in resource group 'MyResourceGroup'. + text: az storage share-rm update -g MyResourceGroup --storage-account mystorageaccount --name myfileshare --quota 3 --metadata key1=value1 key2=value2 + - name: Update the properties for an Azure file share 'myfileshare' under the storage account 'mystorageaccount' (account id). + text: az storage share-rm update --storage-account mystorageaccount --name myfileshare --quota 3 --metadata key1=value1 key2=value2 - name: Update the properties for an Azure file shares by resource id. text: az storage share-rm update --ids file-share-id --quota 3 --metadata key1=value1 key2=value2 """ From ca52d1f56e0733971d8f387651f0ade16aa252c1 Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Sun, 19 Jan 2020 15:06:33 +0800 Subject: [PATCH 8/9] update history --- src/azure-cli/HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index b84029887b7..8901c6bac49 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -25,7 +25,7 @@ Release History **Storage** -* Feat: Added a new command group `az storage share-rm` to use the Microsoft.Storage resource provider for Azure file share management operations. +* Add a new command group `az storage share-rm` to use the Microsoft.Storage resource provider for Azure file share management operations. 2.0.80 ++++++ From f928fc7851ed7809a6bae6ffef0de9d7659d537a Mon Sep 17 00:00:00 2001 From: Yu Chen Date: Sun, 19 Jan 2020 17:34:48 +0800 Subject: [PATCH 9/9] fix test --- ...t_storage_file_using_rm_main_scenario.yaml | 148 +++++++++--------- ..._file_using_resource_provider_scenarios.py | 4 +- 2 files changed, 76 insertions(+), 76 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml index 6de114fc705..7ebcf61dcec 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_file_using_rm_main_scenario.yaml @@ -18,7 +18,7 @@ interactions: - --storage-account -g -n --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT @@ -34,9 +34,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:26:53 GMT + - Sun, 19 Jan 2020 09:33:14 GMT etag: - - '"0x8D79CA031E9030A"' + - '"0x8D79CC29BD8DB60"' expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -67,14 +67,14 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag180","name":"azureclitestrgdiag180","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T03:44:58.5910120Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag180.blob.core.windows.net/","queue":"https://azureclitestrgdiag180.queue.core.windows.net/","table":"https://azureclitestrgdiag180.table.core.windows.net/","file":"https://azureclitestrgdiag180.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg/providers/Microsoft.Storage/storageAccounts/yusa","name":"yusa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"azureFilesIdentityBasedAuthentication":{"directoryServiceOptions":"None"},"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T03:22:16.1380808Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T03:22:16.1380808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-16T03:22:16.0599888Z","primaryEndpoints":{"dfs":"https://yusa.dfs.core.windows.net/","web":"https://yusa.z13.web.core.windows.net/","blob":"https://yusa.blob.core.windows.net/","queue":"https://yusa.queue.core.windows.net/","table":"https://yusa.table.core.windows.net/","file":"https://yusa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag","name":"azureclitestrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T02:54:26.8502755Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag.blob.core.windows.net/","queue":"https://azureclitestrgdiag.queue.core.windows.net/","table":"https://azureclitestrgdiag.table.core.windows.net/","file":"https://azureclitestrgdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T05:26:31.1059892Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T05:26:31.1059892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T05:26:31.0278408Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test/providers/Microsoft.Storage/storageAccounts/haroldtestdiag","name":"haroldtestdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-16T07:44:20.6757652Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-16T07:44:20.6757652Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-16T07:44:20.6132651Z","primaryEndpoints":{"blob":"https://haroldtestdiag.blob.core.windows.net/","queue":"https://haroldtestdiag.queue.core.windows.net/","table":"https://haroldtestdiag.table.core.windows.net/","file":"https://haroldtestdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaojianxu/providers/Microsoft.Storage/storageAccounts/xiaojianxudiag967","name":"xiaojianxudiag967","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T02:18:10.6614312Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T02:18:10.6614312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T02:18:10.5989517Z","primaryEndpoints":{"blob":"https://xiaojianxudiag967.blob.core.windows.net/","queue":"https://xiaojianxudiag967.queue.core.windows.net/","table":"https://xiaojianxudiag967.table.core.windows.net/","file":"https://xiaojianxudiag967.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs10b1f64711bf0x4ddaxaec","name":"cs10b1f64711bf0x4ddaxaec","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T02:34:30.2481666Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T02:34:30.2481666Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-19T02:34:30.2013009Z","primaryEndpoints":{"dfs":"https://cs10b1f64711bf0x4ddaxaec.dfs.core.windows.net/","web":"https://cs10b1f64711bf0x4ddaxaec.z23.web.core.windows.net/","blob":"https://cs10b1f64711bf0x4ddaxaec.blob.core.windows.net/","queue":"https://cs10b1f64711bf0x4ddaxaec.queue.core.windows.net/","table":"https://cs10b1f64711bf0x4ddaxaec.table.core.windows.net/","file":"https://cs10b1f64711bf0x4ddaxaec.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlcsst","name":"jlcsst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"jlvmlist":"vm12"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T08:25:41.0149573Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T08:25:41.0149573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-14T08:25:40.9837595Z","primaryEndpoints":{"dfs":"https://jlcsst.dfs.core.windows.net/","web":"https://jlcsst.z23.web.core.windows.net/","blob":"https://jlcsst.blob.core.windows.net/","queue":"https://jlcsst.queue.core.windows.net/","table":"https://jlcsst.table.core.windows.net/","file":"https://jlcsst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T10:41:22.0812304Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T10:41:22.0812304Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T10:41:22.0343487Z","primaryEndpoints":{"blob":"https://jlst.blob.core.windows.net/","queue":"https://jlst.queue.core.windows.net/","table":"https://jlst.table.core.windows.net/","file":"https://jlst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jlst-secondary.blob.core.windows.net/","queue":"https://jlst-secondary.queue.core.windows.net/","table":"https://jlst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jltestst","name":"jltestst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.2.0/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T09:47:19.0366594Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T09:47:19.0366594Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T09:47:18.9741606Z","primaryEndpoints":{"blob":"https://jltestst.blob.core.windows.net/","queue":"https://jltestst.queue.core.windows.net/","table":"https://jltestst.table.core.windows.net/","file":"https://jltestst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jltestst-secondary.blob.core.windows.net/","queue":"https://jltestst-secondary.queue.core.windows.net/","table":"https://jltestst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test/providers/Microsoft.Storage/storageAccounts/haroldtestdiag119","name":"haroldtestdiag119","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-16T13:20:18.7848214Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-16T13:20:18.7848214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-16T13:20:18.7223280Z","primaryEndpoints":{"blob":"https://haroldtestdiag119.blob.core.windows.net/","queue":"https://haroldtestdiag119.queue.core.windows.net/","table":"https://haroldtestdiag119.table.core.windows.net/","file":"https://haroldtestdiag119.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"992520e7-b604-4640-a561-1693e630a10b","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragev2","name":"zuhstoragev2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T05:48:39.3772205Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T05:48:39.3772205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-16T05:48:39.3303619Z","primaryEndpoints":{"dfs":"https://zuhstoragev2.dfs.core.windows.net/","web":"https://zuhstoragev2.z3.web.core.windows.net/","blob":"https://zuhstoragev2.blob.core.windows.net/","queue":"https://zuhstoragev2.queue.core.windows.net/","table":"https://zuhstoragev2.table.core.windows.net/","file":"https://zuhstoragev2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtestasd","name":"zuhtestasd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-17T06:52:31.9737910Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-17T06:52:31.9737910Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-17T06:52:31.9425447Z","primaryEndpoints":{"dfs":"https://zuhtestasd.dfs.core.windows.net/","web":"https://zuhtestasd.z3.web.core.windows.net/","blob":"https://zuhtestasd.blob.core.windows.net/","queue":"https://zuhtestasd.queue.core.windows.net/","table":"https://zuhtestasd.table.core.windows.net/","file":"https://zuhtestasd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag180","name":"azureclitestrgdiag180","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T03:44:58.5910120Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag180.blob.core.windows.net/","queue":"https://azureclitestrgdiag180.queue.core.windows.net/","table":"https://azureclitestrgdiag180.table.core.windows.net/","file":"https://azureclitestrgdiag180.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg/providers/Microsoft.Storage/storageAccounts/yusa","name":"yusa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"azureFilesIdentityBasedAuthentication":{"directoryServiceOptions":"None"},"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T03:22:16.1380808Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T03:22:16.1380808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-16T03:22:16.0599888Z","primaryEndpoints":{"dfs":"https://yusa.dfs.core.windows.net/","web":"https://yusa.z13.web.core.windows.net/","blob":"https://yusa.blob.core.windows.net/","queue":"https://yusa.queue.core.windows.net/","table":"https://yusa.table.core.windows.net/","file":"https://yusa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag","name":"azureclitestrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T02:54:26.8502755Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag.blob.core.windows.net/","queue":"https://azureclitestrgdiag.queue.core.windows.net/","table":"https://azureclitestrgdiag.table.core.windows.net/","file":"https://azureclitestrgdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T09:32:53.2947177Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T09:32:53.2947177Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T09:32:53.2165875Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test/providers/Microsoft.Storage/storageAccounts/haroldtestdiag","name":"haroldtestdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-16T07:44:20.6757652Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-16T07:44:20.6757652Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-16T07:44:20.6132651Z","primaryEndpoints":{"blob":"https://haroldtestdiag.blob.core.windows.net/","queue":"https://haroldtestdiag.queue.core.windows.net/","table":"https://haroldtestdiag.table.core.windows.net/","file":"https://haroldtestdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaojianxu/providers/Microsoft.Storage/storageAccounts/xiaojianxudiag967","name":"xiaojianxudiag967","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T02:18:10.6614312Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T02:18:10.6614312Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T02:18:10.5989517Z","primaryEndpoints":{"blob":"https://xiaojianxudiag967.blob.core.windows.net/","queue":"https://xiaojianxudiag967.queue.core.windows.net/","table":"https://xiaojianxudiag967.table.core.windows.net/","file":"https://xiaojianxudiag967.file.core.windows.net/"},"primaryLocation":"eastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs10b1f64711bf0x4ddaxaec","name":"cs10b1f64711bf0x4ddaxaec","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T02:34:30.2481666Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T02:34:30.2481666Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-19T02:34:30.2013009Z","primaryEndpoints":{"dfs":"https://cs10b1f64711bf0x4ddaxaec.dfs.core.windows.net/","web":"https://cs10b1f64711bf0x4ddaxaec.z23.web.core.windows.net/","blob":"https://cs10b1f64711bf0x4ddaxaec.blob.core.windows.net/","queue":"https://cs10b1f64711bf0x4ddaxaec.queue.core.windows.net/","table":"https://cs10b1f64711bf0x4ddaxaec.table.core.windows.net/","file":"https://cs10b1f64711bf0x4ddaxaec.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlcsst","name":"jlcsst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"jlvmlist":"vm12"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T08:25:41.0149573Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T08:25:41.0149573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-14T08:25:40.9837595Z","primaryEndpoints":{"dfs":"https://jlcsst.dfs.core.windows.net/","web":"https://jlcsst.z23.web.core.windows.net/","blob":"https://jlcsst.blob.core.windows.net/","queue":"https://jlcsst.queue.core.windows.net/","table":"https://jlcsst.table.core.windows.net/","file":"https://jlcsst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T10:41:22.0812304Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T10:41:22.0812304Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T10:41:22.0343487Z","primaryEndpoints":{"blob":"https://jlst.blob.core.windows.net/","queue":"https://jlst.queue.core.windows.net/","table":"https://jlst.table.core.windows.net/","file":"https://jlst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jlst-secondary.blob.core.windows.net/","queue":"https://jlst-secondary.queue.core.windows.net/","table":"https://jlst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jltestst","name":"jltestst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"23.45.1.0/24","action":"Allow"},{"value":"23.45.2.0/24","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T09:47:19.0366594Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T09:47:19.0366594Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T09:47:18.9741606Z","primaryEndpoints":{"blob":"https://jltestst.blob.core.windows.net/","queue":"https://jltestst.queue.core.windows.net/","table":"https://jltestst.table.core.windows.net/","file":"https://jltestst.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jltestst-secondary.blob.core.windows.net/","queue":"https://jltestst-secondary.queue.core.windows.net/","table":"https://jltestst-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test/providers/Microsoft.Storage/storageAccounts/haroldtestdiag119","name":"haroldtestdiag119","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-16T13:20:18.7848214Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-16T13:20:18.7848214Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-16T13:20:18.7223280Z","primaryEndpoints":{"blob":"https://haroldtestdiag119.blob.core.windows.net/","queue":"https://haroldtestdiag119.queue.core.windows.net/","table":"https://haroldtestdiag119.table.core.windows.net/","file":"https://haroldtestdiag119.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}},{"identity":{"principalId":"992520e7-b604-4640-a561-1693e630a10b","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragev2","name":"zuhstoragev2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T05:48:39.3772205Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-16T05:48:39.3772205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-16T05:48:39.3303619Z","primaryEndpoints":{"dfs":"https://zuhstoragev2.dfs.core.windows.net/","web":"https://zuhstoragev2.z3.web.core.windows.net/","blob":"https://zuhstoragev2.blob.core.windows.net/","queue":"https://zuhstoragev2.queue.core.windows.net/","table":"https://zuhstoragev2.table.core.windows.net/","file":"https://zuhstoragev2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtestasd","name":"zuhtestasd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-17T06:52:31.9737910Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-17T06:52:31.9737910Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-17T06:52:31.9425447Z","primaryEndpoints":{"dfs":"https://zuhtestasd.dfs.core.windows.net/","web":"https://zuhtestasd.z3.web.core.windows.net/","blob":"https://zuhtestasd.blob.core.windows.net/","queue":"https://zuhtestasd.queue.core.windows.net/","table":"https://zuhtestasd.table.core.windows.net/","file":"https://zuhtestasd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 19 Jan 2020 05:26:55 GMT + - Sun, 19 Jan 2020 09:33:16 GMT expires: - '-1' pragma: @@ -95,12 +95,12 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - c21a1bb1-8af3-4ac7-bbde-6b4cca8245df - - c928fb61-e1a2-4485-b16f-6c0f13bf9503 - - c105b6bb-5465-4f0f-8619-d4e440a2d504 - - 62394b2c-190b-452b-b5bb-241f6a14d187 - - 386025fb-5b2b-4f93-9df1-2e0f147aa8fe - - 6d40fef1-0b5d-464a-8b50-569cf5fb63f2 + - 2f6077af-a494-400a-9308-0b61269e784a + - a9a1e7d9-34c0-4189-9d80-5b24a6b2e63d + - ecbfe636-7406-4211-af57-3a9eeba43427 + - e301aae2-d7a3-4880-9ffd-ea5a6cfab564 + - ff9e79ab-0a6b-4759-a623-7770dea1f42b + - 98d2ef02-d0e8-438c-841b-725dcd6281ac status: code: 200 message: OK @@ -119,14 +119,14 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T05:26:31.1059892Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T05:26:31.1059892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T05:26:31.0278408Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-19T09:32:53.2947177Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-19T09:32:53.2947177Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-19T09:32:53.2165875Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:26:56 GMT + - Sun, 19 Jan 2020 09:33:17 GMT expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: - --storage-account -n --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT @@ -188,9 +188,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:26:57 GMT + - Sun, 19 Jan 2020 09:33:18 GMT etag: - - '"0x8D79CA034134BF4"' + - '"0x8D79CC29E11F5D2"' expires: - '-1' pragma: @@ -221,14 +221,14 @@ interactions: - --storage-account -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC29BD8DB60\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T09:33:14.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -237,9 +237,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:26:58 GMT + - Sun, 19 Jan 2020 09:33:18 GMT etag: - - '"0x8D79CA031E9030A"' + - '"0x8D79CC29BD8DB60"' expires: - '-1' pragma: @@ -272,14 +272,14 @@ interactions: - --storage-account -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC29BD8DB60\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T09:33:14.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -288,9 +288,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:26:59 GMT + - Sun, 19 Jan 2020 09:33:20 GMT etag: - - '"0x8D79CA031E9030A"' + - '"0x8D79CC29BD8DB60"' expires: - '-1' pragma: @@ -323,14 +323,14 @@ interactions: - --ids User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC29BD8DB60\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T09:33:14.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -339,9 +339,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:00 GMT + - Sun, 19 Jan 2020 09:33:20 GMT etag: - - '"0x8D79CA031E9030A"' + - '"0x8D79CC29BD8DB60"' expires: - '-1' pragma: @@ -374,14 +374,14 @@ interactions: - --storage-account -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC29BD8DB60\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T09:33:14.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -390,9 +390,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:01 GMT + - Sun, 19 Jan 2020 09:33:21 GMT etag: - - '"0x8D79CA031E9030A"' + - '"0x8D79CC29BD8DB60"' expires: - '-1' pragma: @@ -425,14 +425,14 @@ interactions: - --storage-account -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC29BD8DB60\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T09:33:14.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -441,9 +441,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:01 GMT + - Sun, 19 Jan 2020 09:33:23 GMT etag: - - '"0x8D79CA031E9030A"' + - '"0x8D79CC29BD8DB60"' expires: - '-1' pragma: @@ -476,14 +476,14 @@ interactions: - --ids User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA031E9030A\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T05:26:54.0000000Z","shareQuota":5}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC29BD8DB60\"","properties":{"metadata":{"key1":"value1"},"lastModifiedTime":"2020-01-19T09:33:14.0000000Z","shareQuota":5}}' headers: cache-control: - no-cache @@ -492,9 +492,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:02 GMT + - Sun, 19 Jan 2020 09:33:23 GMT etag: - - '"0x8D79CA031E9030A"' + - '"0x8D79CC29BD8DB60"' expires: - '-1' pragma: @@ -527,7 +527,7 @@ interactions: - --storage-account -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -535,7 +535,7 @@ interactions: response: body: string: '{"error":{"code":"ShareNotFound","message":"The specified share does - not exist.\nRequestId:0e84241d-a01a-0121-1189-ce83af000000\nTime:2020-01-19T05:27:03.9497048Z"}}' + not exist.\nRequestId:f393fdf4-701a-0027-57ab-cef24e000000\nTime:2020-01-19T09:33:25.2164052Z"}}' headers: cache-control: - no-cache @@ -544,7 +544,7 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:03 GMT + - Sun, 19 Jan 2020 09:33:24 GMT expires: - '-1' pragma: @@ -577,7 +577,7 @@ interactions: - --storage-account -g -n --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PATCH @@ -593,9 +593,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:05 GMT + - Sun, 19 Jan 2020 09:33:25 GMT etag: - - '"0x8D79CA038938992"' + - '"0x8D79CC2A2951E03"' expires: - '-1' pragma: @@ -634,7 +634,7 @@ interactions: - --storage-account -n --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PATCH @@ -650,9 +650,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:06 GMT + - Sun, 19 Jan 2020 09:33:26 GMT etag: - - '"0x8D79CA039596E4B"' + - '"0x8D79CC2A3138CF8"' expires: - '-1' pragma: @@ -691,7 +691,7 @@ interactions: - --ids --quota --metadata User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PATCH @@ -707,9 +707,9 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:06 GMT + - Sun, 19 Jan 2020 09:33:28 GMT etag: - - '"0x8D79CA039DF3130"' + - '"0x8D79CC2A3D9722D"' expires: - '-1' pragma: @@ -744,14 +744,14 @@ interactions: - --storage-account -g --query User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares?api-version=2019-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA039596E4B\"","properties":{"lastModifiedTime":"2020-01-19T05:27:06.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA039DF3130\"","properties":{"lastModifiedTime":"2020-01-19T05:27:07.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC2A3D9722D\"","properties":{"lastModifiedTime":"2020-01-19T09:33:28.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC2A3138CF8\"","properties":{"lastModifiedTime":"2020-01-19T09:33:26.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' headers: cache-control: - no-cache @@ -760,7 +760,7 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:08 GMT + - Sun, 19 Jan 2020 09:33:28 GMT expires: - '-1' pragma: @@ -793,14 +793,14 @@ interactions: - --storage-account --query User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares?api-version=2019-06-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA039596E4B\"","properties":{"lastModifiedTime":"2020-01-19T05:27:06.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CA039DF3130\"","properties":{"lastModifiedTime":"2020-01-19T05:27:07.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000003","name":"share000003","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC2A3D9722D\"","properties":{"lastModifiedTime":"2020-01-19T09:33:28.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/fileServices/default/shares/share000004","name":"share000004","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D79CC2A3138CF8\"","properties":{"lastModifiedTime":"2020-01-19T09:33:26.0000000Z","shareQuota":10,"enabledProtocols":"SMB"}}]}' headers: cache-control: - no-cache @@ -809,7 +809,7 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:08 GMT + - Sun, 19 Jan 2020 09:33:29 GMT expires: - '-1' pragma: @@ -841,10 +841,10 @@ interactions: Content-Length: - '0' ParameterSetName: - - --storage-account -g -n + - --storage-account -g -n -y User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE @@ -860,7 +860,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 19 Jan 2020 05:27:10 GMT + - Sun, 19 Jan 2020 09:33:31 GMT expires: - '-1' pragma: @@ -890,10 +890,10 @@ interactions: Content-Length: - '0' ParameterSetName: - - --ids + - --ids -y User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE @@ -909,7 +909,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 19 Jan 2020 05:27:11 GMT + - Sun, 19 Jan 2020 09:33:31 GMT expires: - '-1' pragma: @@ -921,7 +921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK @@ -940,7 +940,7 @@ interactions: - --storage-account -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -948,7 +948,7 @@ interactions: response: body: string: '{"error":{"code":"ShareNotFound","message":"The specified share does - not exist.\nRequestId:0e842439-a01a-0121-1e89-ce83af000000\nTime:2020-01-19T05:27:12.6818664Z"}}' + not exist.\nRequestId:f393fe07-701a-0027-64ab-cef24e000000\nTime:2020-01-19T09:33:33.0439720Z"}}' headers: cache-control: - no-cache @@ -957,7 +957,7 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:11 GMT + - Sun, 19 Jan 2020 09:33:33 GMT expires: - '-1' pragma: @@ -986,7 +986,7 @@ interactions: - --ids User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -994,7 +994,7 @@ interactions: response: body: string: '{"error":{"code":"ShareNotFound","message":"The specified share does - not exist.\nRequestId:0e84243c-a01a-0121-1f89-ce83af000000\nTime:2020-01-19T05:27:13.8897137Z"}}' + not exist.\nRequestId:f393fe09-701a-0027-65ab-cef24e000000\nTime:2020-01-19T09:33:33.7834949Z"}}' headers: cache-control: - no-cache @@ -1003,7 +1003,7 @@ interactions: content-type: - application/json date: - - Sun, 19 Jan 2020 05:27:13 GMT + - Sun, 19 Jan 2020 09:33:33 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py index 0b07091d649..15c2d4da797 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_file_using_resource_provider_scenarios.py @@ -129,10 +129,10 @@ def test_storage_file_using_rm_main_scenario(self): # 7. Test delete command. # Delete file shares with storage account name and resource group. - self.cmd('storage share-rm delete --storage-account {sa} -g {rg} -n {share_name_1}') + self.cmd('storage share-rm delete --storage-account {sa} -g {rg} -n {share_name_1} -y') # Delete file share by resource id. - self.cmd('storage share-rm delete --ids {share_id_2}') + self.cmd('storage share-rm delete --ids {share_id_2} -y') # 8. Test exists command (the file share doesn't exist). result = self.cmd('storage share-rm exists --storage-account {sa} -g {rg} -n {share_name_1}').get_output_in_json()