From b9093cb4b716b31e2b77e9c9c2d30d9bfa4fa993 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 14:58:05 +0800 Subject: [PATCH 01/21] update index.json --- src/index.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.json b/src/index.json index 1e59691dd8f..fbea5736c78 100644 --- a/src/index.json +++ b/src/index.json @@ -2173,8 +2173,8 @@ ], "storage-preview": [ { - "downloadUrl": "https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.8-py2.py3-none-any.whl", - "filename": "storage_preview-0.2.8-py2.py3-none-any.whl", + "downloadUrl": "https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.9-py2.py3-none-any.whl", + "filename": "storage_preview-0.2.9-py2.py3-none-any.whl", "metadata": { "azext.isPreview": true, "azext.minCliCoreVersion": "2.0.52", @@ -2213,9 +2213,9 @@ "metadata_version": "2.0", "name": "storage-preview", "summary": "Provides a preview for upcoming storage features.", - "version": "0.2.8" + "version": "0.2.9" }, - "sha256Digest": "a3d48247051e95847ded28217433c4b98fc02d6ee21eedfcb24dd43f7360569d" + "sha256Digest": "1ceb595e69826c02bcdac1ca11f1a79bd762263d63e4bf21587c7260dd2885c0" } ], "subscription": [ From 9c71e80f6e9648230b247100ea1d093b4658db85 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 16:20:22 +0800 Subject: [PATCH 02/21] Refine help message --- src/storage-preview/azext_storage_preview/_help.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/storage-preview/azext_storage_preview/_help.py b/src/storage-preview/azext_storage_preview/_help.py index a91ea49293c..2f2a8349b62 100644 --- a/src/storage-preview/azext_storage_preview/_help.py +++ b/src/storage-preview/azext_storage_preview/_help.py @@ -143,8 +143,12 @@ type: command short-summary: Update the access control properties of a directory. examples: - - name: Update the access control properties of a directory. + - name: Update the access permissions of a directory. text: az storage blob directory access update --permissions "rwxrwxrwx" -d MyDirectoryPath -c MyContainer --account-name MyStorageAccount + - name: Update the owning user of a directory. + text: az storage blob directory access update --owner [entity id or UPN] -d MyDirectoryPath -c MyContainer --account-name MyStorageAccount + - name: Update the owning group of a directory. + text: az storage blob directory access update --group [entity id or UPN] -d MyDirectoryPath -c MyContainer --account-name MyStorageAccount """ helps['storage blob directory create'] = """ @@ -235,7 +239,7 @@ short-summary: Show a storage blob directory properties in a storage container. examples: - name: Show a storage blob directory properties in a storage container. - text: az storage blob show -c MyContainer -d MyDirectoryPath --account-name MyStorageAccount + text: az storage blob directory show -c MyContainer -d MyDirectoryPath --account-name MyStorageAccount """ helps['storage blob directory upload'] = """ @@ -244,8 +248,8 @@ examples: - name: Upload a single blob to a storage blob directory. text: az storage blob directory upload -c MyContainer --account-name MyStorageAccount -s "path/to/file" -d directory - - name: Upload a directory to a container. + - name: Upload a local directory to a storage blob directory. text: az storage blob directory upload -c MyContainer --account-name MyStorageAccount -s "path/to/directory" -d directory --recursive - - name: Upload the contents of a directory to a container. - text: az storage blob directory upload -c MyContainer --account-name MyStorageAccount -s "path/to/directory/*" -d directory --recursive + - name: Upload a set of files in a local directory to a storage blob directory. + text: az storage blob directory upload -c MyContainer --account-name MyStorageAccount -s "path/to/file*" -d directory --recursive """ From 8ccb2e8745ddc1af6c12b9250241ac44b976c70f Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 16:41:19 +0800 Subject: [PATCH 03/21] add az storage blob move command --- .../azext_storage_preview/_params.py | 15 ++++++++++++++- .../azext_storage_preview/commands.py | 19 +++---------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/storage-preview/azext_storage_preview/_params.py b/src/storage-preview/azext_storage_preview/_params.py index dc7193cb2d5..086c9efb018 100644 --- a/src/storage-preview/azext_storage_preview/_params.py +++ b/src/storage-preview/azext_storage_preview/_params.py @@ -24,12 +24,16 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem from .sdkutil import get_table_data_type from .completers import get_storage_name_completion_list, get_container_name_completions + t_base_blob_service = self.get_sdk('blob.baseblobservice#BaseBlobService') t_file_service = self.get_sdk('file#FileService') t_table_service = get_table_data_type(self.cli_ctx, 'table', 'TableService') 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')) + blob_name_type = CLIArgumentType(options_list=['--blob-name', '-b'], help='The blob name.', + completer=get_storage_name_completion_list(t_base_blob_service, 'list_blobs', + parent='container_name')) container_name_type = CLIArgumentType(options_list=['--container-name', '-c'], help='The container name.', completer=get_container_name_completions) directory_path_type = CLIArgumentType(options_list=['--directory-path', '-d'], help='The directory path name.', @@ -202,7 +206,16 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage azcopy run-command') as c: c.positional('command_args', help='Command to run using azcopy. Please start commands with "azcopy ".') - # New commands parameters for ADLS Gen2 + with self.argument_context('storage blob move') as c: + c.argument('source_path', options_list=['--source-blob', '-s'], + help="The source blob name. It should be an absolute path under the container. e.g." + "'topdir1/dirsubfoo'.") + c.argument('new_path', options_list=['--destination-blob', '-d'], + help="The source blob name. It should be an absolute path under the container. e.g." + "'topdir1/dirbar'.") + c.argument('container_name', container_name_type) + c.ignore('marker') + with self.argument_context('storage blob directory') as c: c.argument('directory_path', directory_path_type) c.argument('container_name', container_name_type) diff --git a/src/storage-preview/azext_storage_preview/commands.py b/src/storage-preview/azext_storage_preview/commands.py index db1556af80a..33d5e69a956 100644 --- a/src/storage-preview/azext_storage_preview/commands.py +++ b/src/storage-preview/azext_storage_preview/commands.py @@ -114,27 +114,14 @@ def get_custom_sdk(custom_module, client_factory, resource_type=CUSTOM_DATA_STOR client_factory=adls_blob_data_service_factory, resource_type=CUSTOM_DATA_STORAGE_ADLS) - # New commands for ADLS Gen2 - # Blob Pipeline + # Blob directory Commands Group with self.command_group('storage blob', command_type=adls_base_blob_sdk, custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, CUSTOM_DATA_STORAGE_ADLS), resource_type=CUSTOM_DATA_STORAGE_ADLS) as g: - from ._format import transform_blob_output - from ._transformers import transform_storage_list_output - g.storage_custom_command_oauth('move', 'rename_directory') - g.storage_command_oauth('list', 'list_blobs', transform=transform_storage_list_output, - table_transformer=transform_blob_output) - g.storage_custom_command_oauth('show', 'show_blob') - - with self.command_group('storage blob access', command_type=adls_base_blob_sdk, - custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, - CUSTOM_DATA_STORAGE_ADLS), - resource_type=CUSTOM_DATA_STORAGE_ADLS) as g: - g.storage_custom_command_oauth('set', 'rename_directory') - g.storage_custom_command_oauth('update', 'show_blob') + g.storage_command_oauth('move', 'rename_path') - # Blob directory Pipeline + # Blob directory Commands Group with self.command_group('storage blob directory', command_type=adls_base_blob_sdk, custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, CUSTOM_DATA_STORAGE_ADLS), From a0e4f89db30211523415c36d07d692ceb6833cf0 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 16:51:14 +0800 Subject: [PATCH 04/21] update help for blob move and add blob access command group --- .../azext_storage_preview/_help.py | 8 +++++++ .../azext_storage_preview/_params.py | 21 +++++++++++++++++++ .../azext_storage_preview/commands.py | 8 +++++++ 3 files changed, 37 insertions(+) diff --git a/src/storage-preview/azext_storage_preview/_help.py b/src/storage-preview/azext_storage_preview/_help.py index 2f2a8349b62..29033be7eeb 100644 --- a/src/storage-preview/azext_storage_preview/_help.py +++ b/src/storage-preview/azext_storage_preview/_help.py @@ -112,6 +112,14 @@ short-summary: Run a command directly using the AzCopy CLI. Please use SAS tokens for authentication. """ +helps['storage blob move'] = """ + type: command + short-summary: Move a blob in a storage container. + examples: + - name: Move a blob in a storage container. + text: az storage blob move -c MyContainer -d DestinationBlobPath -s SourceBlobPath --account-name MyStorageAccount +""" + helps['storage blob directory'] = """ type: group short-summary: Manage blob directories in storage account container. diff --git a/src/storage-preview/azext_storage_preview/_params.py b/src/storage-preview/azext_storage_preview/_params.py index 086c9efb018..56e651068b0 100644 --- a/src/storage-preview/azext_storage_preview/_params.py +++ b/src/storage-preview/azext_storage_preview/_params.py @@ -206,6 +206,27 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage azcopy run-command') as c: c.positional('command_args', help='Command to run using azcopy. Please start commands with "azcopy ".') + with self.argument_context('storage blob access') as c: + c.argument('path', blob_name_type) + + with self.argument_context('storage blob access set') as c: + c.argument('acl', options_list=['--acl-spec', '-a'], required=True, + help='The ACL specification to set on the path in the format ' + '"[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,' + '[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,...".') + c.ignore('owner', 'group', 'permissions') + + with self.argument_context('storage blob access update') as c: + c.argument('acl', options_list=['--acl-spec', '-a'], + help='The ACL specification to set on the path in the format ' + '"[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,' + '[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,...".') + c.argument('owner', help='The owning user for the directory.') + c.argument('group', help='The owning group for the directory.') + c.argument('permissions', help='The POSIX access permissions for the file owner,' + 'the file owning group, and others. Both symbolic (rwxrw-rw-) and 4-digit ' + 'octal notation (e.g. 0766) are supported.') + with self.argument_context('storage blob move') as c: c.argument('source_path', options_list=['--source-blob', '-s'], help="The source blob name. It should be an absolute path under the container. e.g." diff --git a/src/storage-preview/azext_storage_preview/commands.py b/src/storage-preview/azext_storage_preview/commands.py index 33d5e69a956..5efe46e1624 100644 --- a/src/storage-preview/azext_storage_preview/commands.py +++ b/src/storage-preview/azext_storage_preview/commands.py @@ -121,6 +121,14 @@ def get_custom_sdk(custom_module, client_factory, resource_type=CUSTOM_DATA_STOR resource_type=CUSTOM_DATA_STORAGE_ADLS) as g: g.storage_command_oauth('move', 'rename_path') + with self.command_group('storage blob access', command_type=adls_base_blob_sdk, + custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, + CUSTOM_DATA_STORAGE_ADLS), + resource_type=CUSTOM_DATA_STORAGE_ADLS) as g: + g.storage_command_oauth('set', 'set_path_access_control') + g.storage_command_oauth('update', 'set_path_access_control') + g.storage_command_oauth('show', 'get_path_access_control') + # Blob directory Commands Group with self.command_group('storage blob directory', command_type=adls_base_blob_sdk, custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, From 87ea315c37b3f47baeb053f9bf420c8cc053df80 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 16:57:43 +0800 Subject: [PATCH 05/21] Add help for blob access ccommand group --- .../azext_storage_preview/_help.py | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/src/storage-preview/azext_storage_preview/_help.py b/src/storage-preview/azext_storage_preview/_help.py index 29033be7eeb..bdc8ad1607a 100644 --- a/src/storage-preview/azext_storage_preview/_help.py +++ b/src/storage-preview/azext_storage_preview/_help.py @@ -112,6 +112,39 @@ short-summary: Run a command directly using the AzCopy CLI. Please use SAS tokens for authentication. """ +helps['storage blob access'] = """ + type: group + short-summary: Manage the access control properties of a blob when Hierarchical Namespace is enabled +""" + +helps['storage blob access set'] = """ + type: command + short-summary: Set the access control properties of a blob. + examples: + - name: Set the access control properties of a blob. + text: az storage blob access set -a "user::rwx,group::r--,other::---" -b MyBlob -c MyContainer --account-name MyStorageAccount +""" + +helps['storage blob access show'] = """ + type: command + short-summary: Show the access control properties of a blob. + examples: + - name: Show the access control properties of a blob. + text: az storage blob access show -b MyBlob -c MyContainer --account-name MyStorageAccount +""" + +helps['storage blob access update'] = """ + type: command + short-summary: Update the access control properties of a blob. + examples: + - name: Update the access permissions of a blob. + text: az storage blob access update --permissions "rwxrwxrwx" -b MyBlob -c MyContainer --account-name MyStorageAccount + - name: Update the owning user of a blob. + text: az storage blob access update --owner [entity id or UPN] -b MyBlob -c MyContainer --account-name MyStorageAccount + - name: Update the owning group of a blob. + text: az storage blob access update --group [entity id or UPN] -b MyBlob -c MyContainer --account-name MyStorageAccount +""" + helps['storage blob move'] = """ type: command short-summary: Move a blob in a storage container. From 1c9ce5fe573aec1ec21e190a0f4b663752c55537 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 17:16:00 +0800 Subject: [PATCH 06/21] add test for blob commands --- .../test_storage_blob_directory.yaml | 1010 ++++++++++++----- .../latest/test_storage_adls_scenarios.py | 19 + 2 files changed, 720 insertions(+), 309 deletions(-) diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_directory.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_directory.yaml index 84b03bb22d1..759d2259797 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_directory.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_directory.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-30T11:54:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-31T09:12:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:22 GMT + - Thu, 31 Oct 2019 09:12:27 GMT expires: - '-1' pragma: @@ -80,11 +80,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:27 GMT + - Thu, 31 Oct 2019 09:12:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/84b6bdaa-0712-4096-b3a8-1089a6901c60?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/755950f9-a35e-4df0-a3f6-d3bac91d05bf?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -94,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -115,10 +115,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/84b6bdaa-0712-4096-b3a8-1089a6901c60?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/755950f9-a35e-4df0-a3f6-d3bac91d05bf?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitestaldsaccount000002","name":"clitestaldsaccount000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:26.9893726Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:26.9893726Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:26.9268511Z","primaryEndpoints":{"dfs":"https://clitestaldsaccount000002.dfs.core.windows.net/","web":"https://clitestaldsaccount000002.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002.blob.core.windows.net/","queue":"https://clitestaldsaccount000002.queue.core.windows.net/","table":"https://clitestaldsaccount000002.table.core.windows.net/","file":"https://clitestaldsaccount000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestaldsaccount000002-secondary.dfs.core.windows.net/","web":"https://clitestaldsaccount000002-secondary.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002-secondary.blob.core.windows.net/","queue":"https://clitestaldsaccount000002-secondary.queue.core.windows.net/","table":"https://clitestaldsaccount000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitestaldsaccount000002","name":"clitestaldsaccount000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T09:12:31.6696806Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T09:12:31.6696806Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-31T09:12:31.6071550Z","primaryEndpoints":{"dfs":"https://clitestaldsaccount000002.dfs.core.windows.net/","web":"https://clitestaldsaccount000002.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002.blob.core.windows.net/","queue":"https://clitestaldsaccount000002.queue.core.windows.net/","table":"https://clitestaldsaccount000002.table.core.windows.net/","file":"https://clitestaldsaccount000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestaldsaccount000002-secondary.dfs.core.windows.net/","web":"https://clitestaldsaccount000002-secondary.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002-secondary.blob.core.windows.net/","queue":"https://clitestaldsaccount000002-secondary.queue.core.windows.net/","table":"https://clitestaldsaccount000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -127,7 +127,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:44 GMT + - Thu, 31 Oct 2019 09:12:49 GMT expires: - '-1' pragma: @@ -178,7 +178,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:48 GMT + - Thu, 31 Oct 2019 09:12:52 GMT expires: - '-1' pragma: @@ -208,7 +208,7 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:49 GMT + - Thu, 31 Oct 2019 09:12:53 GMT x-ms-version: - '2018-11-09' method: PUT @@ -220,11 +220,11 @@ interactions: content-length: - '0' date: - - Wed, 30 Oct 2019 11:54:54 GMT + - Thu, 31 Oct 2019 09:13:12 GMT etag: - - '"0x8D75D2FF90E97AB"' + - '"0x8D75DE2848B11D2"' last-modified: - - Wed, 30 Oct 2019 11:54:51 GMT + - Thu, 31 Oct 2019 09:12:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -240,7 +240,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:54 GMT + - Thu, 31 Oct 2019 09:13:12 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -250,7 +250,7 @@ interactions: string: '' headers: date: - - Wed, 30 Oct 2019 11:54:57 GMT + - Thu, 31 Oct 2019 09:13:16 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -272,7 +272,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:58 GMT + - Thu, 31 Oct 2019 09:13:18 GMT x-ms-version: - '2019-02-02' method: PUT @@ -284,11 +284,11 @@ interactions: content-length: - '0' date: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT etag: - - '"0x8D75D2FFD840B71"' + - '"0x8D75DE29268D6E8"' last-modified: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -304,7 +304,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:20 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -320,11 +320,11 @@ interactions: content-type: - application/octet-stream date: - - Wed, 30 Oct 2019 11:55:00 GMT + - Thu, 31 Oct 2019 09:13:24 GMT etag: - - '"0x8D75D2FFD840B71"' + - '"0x8D75DE29268D6E8"' last-modified: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-access-tier: @@ -334,7 +334,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -354,34 +354,34 @@ interactions: Connection: - keep-alive User-Agent: - - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:55:02 GMT + - Thu, 31 Oct 2019 09:13:24 GMT x-ms-version: - - '2019-02-02' + - '2018-11-09' method: GET - uri: https://clitestaldsaccount000002.blob.core.windows.net/cont000003?restype=container&comp=list + uri: https://clitestaldsaccount000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000 response: body: string: "\uFEFFtestdirectoryWed, - 30 Oct 2019 11:54:59 GMTWed, 30 Oct 2019 11:54:59 - GMT0x8D75D2FFD840B710application/octet-streamAAAAAAAAAAA=BlockBlobHottrueunlockedtrue5000testdirectoryThu, + 31 Oct 2019 09:13:19 GMTThu, 31 Oct 2019 09:13:19 + GMT0x8D75DE29268D6E80application/octet-streamBlockBlobHottrueunlockedtrue" headers: content-type: - application/xml date: - - Wed, 30 Oct 2019 11:55:03 GMT + - Thu, 31 Oct 2019 09:13:26 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: - chunked x-ms-version: - - '2019-02-02' + - '2018-11-09' status: code: 200 message: OK @@ -393,7 +393,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:55:04 GMT + - Thu, 31 Oct 2019 09:13:27 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -409,11 +409,11 @@ interactions: content-type: - application/octet-stream date: - - Wed, 30 Oct 2019 11:55:05 GMT + - Thu, 31 Oct 2019 09:13:27 GMT etag: - - '"0x8D75D2FFD840B71"' + - '"0x8D75DE29268D6E8"' last-modified: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-access-tier: @@ -423,7 +423,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -445,7 +445,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:55:11 GMT + - Thu, 31 Oct 2019 09:13:51 GMT x-ms-version: - '2019-02-02' method: GET @@ -454,9 +454,9 @@ interactions: body: string: "\uFEFFtestdirectory/testdirectory/readmeWed, - 30 Oct 2019 11:55:09 GMTWed, 30 Oct 2019 11:55:09 - GMT0x8D75D30036E066B87text/plain; + ContainerName=\"cont000003\">testdirectory/testdirectory/readmeThu, + 31 Oct 2019 09:13:47 GMTThu, 31 Oct 2019 09:13:47 + GMT0x8D75DE2A2E8184887text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruetestdirectory/testdirectory/appleWed, - 30 Oct 2019 11:55:14 GMTWed, 30 Oct 2019 11:55:14 - GMT0x8D75D30069F2EEA0testdirectory/testdirectory/appleThu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75695250BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006D6D067128text/plain; + />BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A7572CD8128text/plain; charset=utf-8oea9ZAT8Pg4pIQdaKoTAdw==7siMFbxf8eKRt4Wqbk868Q==BlockBlobHottrueunlockedtruetestdirectory/apple/file_1Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D30071505C0128text/plain; + />testdirectory/apple/file_1Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A76D8A57128text/plain; charset=utf-8kt9N5OQQiHSLa3jJ1gF9Rw==q32PYmYeXhORLc0sBlEEyA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_2Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3007226179128text/plain; + />testdirectory/apple/file_2Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A789A0B1128text/plain; charset=utf-86uun3SPHG7pzmnNmmB03lA==hQFbdeblZzqLkNB7a/+GsQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_3Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D300708D3BF128text/plain; + />testdirectory/apple/file_3Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A78C7092128text/plain; charset=utf-88wwFh1cusJc77k6MHlYYPQ==AVl+FH80SNqSfLI8wDloWA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_4Wed, - 30 Oct 2019 11:55:14 GMTWed, 30 Oct 2019 11:55:14 - GMT0x8D75D30069FC39C128text/plain; + />testdirectory/apple/file_4Thu, + 31 Oct 2019 09:13:57 GMTThu, 31 Oct 2019 09:13:57 + GMT0x8D75DE2A8EAF0DA128text/plain; charset=utf-8gZg/z7/mT4b91RE+Su86Uw==utBanbGUxjzfRny3vfaDqw==BlockBlobHottrueunlockedtruetestdirectory/apple/file_5Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006E649DD128text/plain; + />testdirectory/apple/file_5Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A79688F6128text/plain; charset=utf-83kn+HUpYIQKekgVXD+IT0Q==WLxo/te6JhiFX3VIWJyQ4g==BlockBlobHottrueunlockedtruetestdirectory/apple/file_6Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3007600DF8128text/plain; + />testdirectory/apple/file_6Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A7CA9D41128text/plain; charset=utf-8r6SVAXp/TNGImU8lSg5mKQ==9nrbm9GMDAuJJRP16BpcPQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_7Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D30071CFA0A128text/plain; + />testdirectory/apple/file_7Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75BC6AB128text/plain; charset=utf-8tCztJKXFy3cEfXBdyLE9hQ==PN5SgZB2W4edNPz6d7Cxag==BlockBlobHottrueunlockedtruetestdirectory/apple/file_8Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006F9E061128text/plain; + />testdirectory/apple/file_8Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75BC7E3128text/plain; charset=utf-8ogQCNebMwPb+/eSR5mcfBQ==sdp2YPHcYEMEVaMAEnCxhA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_9Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006DE97DB128text/plain; + />testdirectory/apple/file_9Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A7D25A2A128text/plain; charset=utf-8ldQ6l2aRCQcDgQx7sPo93w==ErRj2XFvK89TB88MdnZWrQ==BlockBlobHottrueunlockedtruetestdirectory/readmeWed, - 30 Oct 2019 11:55:09 GMTWed, 30 Oct 2019 11:55:09 - GMT0x8D75D30036E066B87text/plain; + />testdirectory/readmeThu, + 31 Oct 2019 09:13:47 GMTThu, 31 Oct 2019 09:13:47 + GMT0x8D75DE2A2E8184887text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruetestdirectory/testdirectory/appleWed, - 30 Oct 2019 11:55:14 GMTWed, 30 Oct 2019 11:55:14 - GMT0x8D75D30069F2EEA0testdirectory/testdirectory/appleThu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75695250BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006D6D067128text/plain; + />BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A7572CD8128text/plain; charset=utf-8oea9ZAT8Pg4pIQdaKoTAdw==7siMFbxf8eKRt4Wqbk868Q==BlockBlobHottrueunlockedtruetestdirectory/apple/file_1Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D30071505C0128text/plain; + />testdirectory/apple/file_1Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A76D8A57128text/plain; charset=utf-8kt9N5OQQiHSLa3jJ1gF9Rw==q32PYmYeXhORLc0sBlEEyA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_2Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3007226179128text/plain; + />testdirectory/apple/file_2Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A789A0B1128text/plain; charset=utf-86uun3SPHG7pzmnNmmB03lA==hQFbdeblZzqLkNB7a/+GsQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_3Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D300708D3BF128text/plain; + />testdirectory/apple/file_3Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A78C7092128text/plain; charset=utf-88wwFh1cusJc77k6MHlYYPQ==AVl+FH80SNqSfLI8wDloWA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_4Wed, - 30 Oct 2019 11:55:14 GMTWed, 30 Oct 2019 11:55:14 - GMT0x8D75D30069FC39C128text/plain; + />testdirectory/apple/file_4Thu, + 31 Oct 2019 09:13:57 GMTThu, 31 Oct 2019 09:13:57 + GMT0x8D75DE2A8EAF0DA128text/plain; charset=utf-8gZg/z7/mT4b91RE+Su86Uw==utBanbGUxjzfRny3vfaDqw==BlockBlobHottrueunlockedtruetestdirectory/apple/file_5Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006E649DD128text/plain; + />testdirectory/apple/file_5Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A79688F6128text/plain; charset=utf-83kn+HUpYIQKekgVXD+IT0Q==WLxo/te6JhiFX3VIWJyQ4g==BlockBlobHottrueunlockedtruetestdirectory/apple/file_6Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3007600DF8128text/plain; + />testdirectory/apple/file_6Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A7CA9D41128text/plain; charset=utf-8r6SVAXp/TNGImU8lSg5mKQ==9nrbm9GMDAuJJRP16BpcPQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_7Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D30071CFA0A128text/plain; + />testdirectory/apple/file_7Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75BC6AB128text/plain; charset=utf-8tCztJKXFy3cEfXBdyLE9hQ==PN5SgZB2W4edNPz6d7Cxag==BlockBlobHottrueunlockedtruetestdirectory/apple/file_8Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006F9E061128text/plain; + />testdirectory/apple/file_8Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75BC7E3128text/plain; charset=utf-8ogQCNebMwPb+/eSR5mcfBQ==sdp2YPHcYEMEVaMAEnCxhA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_9Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006DE97DB128text/plain; + />testdirectory/apple/file_9Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A7D25A2A128text/plain; charset=utf-8ldQ6l2aRCQcDgQx7sPo93w==ErRj2XFvK89TB88MdnZWrQ==BlockBlobHottrueunlockedtruetestdirectory/file_0Wed, - 30 Oct 2019 11:55:28 GMTWed, 30 Oct 2019 11:55:28 - GMT0x8D75D300EA8CF22129text/plain; + />testdirectory/file_0Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACC124E9129text/plain; charset=utf-8bJ/F+JLp1wbl0CyNZUZgdg==OY/RWH3D3naoLuF+o6uxWA==BlockBlobHottrueunlockedtruetestdirectory/file_1Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B17FCA5129text/plain; + />testdirectory/file_1Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC66F3C6129text/plain; charset=utf-84CM7cBiJJypee5JX5ajtIg==xgnEmfJpfcMP1KSzZ7ALdQ==BlockBlobHottrueunlockedtruetestdirectory/file_2Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B739AE9129text/plain; + />testdirectory/file_2Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC671CF4129text/plain; charset=utf-8PTvNosWEV/VFhLuq5PebjA==MHkBN2opqGK/cOTAPkSrFQ==BlockBlobHottrueunlockedtruetestdirectory/file_3Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B2E6D2A129text/plain; + />testdirectory/file_3Thu, + 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 + GMT0x8D75DE2AD00F559129text/plain; charset=utf-8TpjyrQ3K1gI3sZw1jHHUIA==hq8Ei31kkCBe99YcmbSQKw==BlockBlobHottrueunlockedtruetestdirectory/file_4Wed, - 30 Oct 2019 11:55:21 GMTWed, 30 Oct 2019 11:55:21 - GMT0x8D75D300AAAB372129text/plain; + />testdirectory/file_4Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACA2FDE9129text/plain; charset=utf-8GUCGzENNhXDShh7lwn3Rbg==+j59DUtcoH+UNFRxyytSvA==BlockBlobHottrueunlockedtruetestdirectory/file_5Wed, - 30 Oct 2019 11:55:21 GMTWed, 30 Oct 2019 11:55:21 - GMT0x8D75D300A95B81E129text/plain; + />testdirectory/file_5Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACA586DC129text/plain; charset=utf-8rXgh4aFeDl+XgMuMu/1S/w==ZkxhWTE9LycEqoAjXsFOGQ==BlockBlobHottrueunlockedtruetestdirectory/file_6Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B439ED4129text/plain; + />testdirectory/file_6Thu, + 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 + GMT0x8D75DE2AD889610129text/plain; charset=utf-8FR809ZZbr4ZrgBEUS7z2Sw==lW+xch52GoISJeNBylaxVQ==BlockBlobHottrueunlockedtruetestdirectory/file_7Wed, - 30 Oct 2019 11:55:21 GMTWed, 30 Oct 2019 11:55:21 - GMT0x8D75D300A945E41129text/plain; + />testdirectory/file_7Thu, + 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 + GMT0x8D75DE2AD86FBD1129text/plain; charset=utf-8UBpvSg50g1yvYnYWDw2juw==u6huDG+SZRtVjyDwOjXeTw==BlockBlobHottrueunlockedtruetestdirectory/file_8Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B7D9DC2129text/plain; + />testdirectory/file_8Thu, + 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 + GMT0x8D75DE2ACDFEC70129text/plain; charset=utf-88vwp6GmPlJmapmYad1w/QQ==6TbWapEQD52gVyoAB1kBig==BlockBlobHottrueunlockedtruetestdirectory/file_9Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B5D9B96129text/plain; + />testdirectory/file_9Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC7E6A70129text/plain; charset=utf-8li4qOJCjNLpP2H0NsNLyfg==sAK28Vc0bdU6AkZAJdBX9g==BlockBlobHottrueunlockedtruetestdirectory/readmeWed, - 30 Oct 2019 11:55:09 GMTWed, 30 Oct 2019 11:55:09 - GMT0x8D75D30036E066B87text/plain; + />testdirectory/readmeThu, + 31 Oct 2019 09:13:47 GMTThu, 31 Oct 2019 09:13:47 + GMT0x8D75DE2A2E8184887text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruedesdirectory/desdirectory/appleWed, - 30 Oct 2019 11:55:14 GMTWed, 30 Oct 2019 11:55:14 - GMT0x8D75D30069F2EEA0desdirectory/desdirectory/appleThu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75695250BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006D6D067128text/plain; + />BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A7572CD8128text/plain; charset=utf-8oea9ZAT8Pg4pIQdaKoTAdw==7siMFbxf8eKRt4Wqbk868Q==BlockBlobHottrueunlockedtruedesdirectory/apple/file_1Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D30071505C0128text/plain; + />desdirectory/apple/file_1Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A76D8A57128text/plain; charset=utf-8kt9N5OQQiHSLa3jJ1gF9Rw==q32PYmYeXhORLc0sBlEEyA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_2Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3007226179128text/plain; + />desdirectory/apple/file_2Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A789A0B1128text/plain; charset=utf-86uun3SPHG7pzmnNmmB03lA==hQFbdeblZzqLkNB7a/+GsQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_3Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D300708D3BF128text/plain; + />desdirectory/apple/file_3Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A78C7092128text/plain; charset=utf-88wwFh1cusJc77k6MHlYYPQ==AVl+FH80SNqSfLI8wDloWA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_4Wed, - 30 Oct 2019 11:55:14 GMTWed, 30 Oct 2019 11:55:14 - GMT0x8D75D30069FC39C128text/plain; + />desdirectory/apple/file_4Thu, + 31 Oct 2019 09:13:57 GMTThu, 31 Oct 2019 09:13:57 + GMT0x8D75DE2A8EAF0DA128text/plain; charset=utf-8gZg/z7/mT4b91RE+Su86Uw==utBanbGUxjzfRny3vfaDqw==BlockBlobHottrueunlockedtruedesdirectory/apple/file_5Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006E649DD128text/plain; + />desdirectory/apple/file_5Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A79688F6128text/plain; charset=utf-83kn+HUpYIQKekgVXD+IT0Q==WLxo/te6JhiFX3VIWJyQ4g==BlockBlobHottrueunlockedtruedesdirectory/apple/file_6Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3007600DF8128text/plain; + />desdirectory/apple/file_6Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A7CA9D41128text/plain; charset=utf-8r6SVAXp/TNGImU8lSg5mKQ==9nrbm9GMDAuJJRP16BpcPQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_7Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D30071CFA0A128text/plain; + />desdirectory/apple/file_7Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75BC6AB128text/plain; charset=utf-8tCztJKXFy3cEfXBdyLE9hQ==PN5SgZB2W4edNPz6d7Cxag==BlockBlobHottrueunlockedtruedesdirectory/apple/file_8Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006F9E061128text/plain; + />desdirectory/apple/file_8Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75BC7E3128text/plain; charset=utf-8ogQCNebMwPb+/eSR5mcfBQ==sdp2YPHcYEMEVaMAEnCxhA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_9Wed, - 30 Oct 2019 11:55:15 GMTWed, 30 Oct 2019 11:55:15 - GMT0x8D75D3006DE97DB128text/plain; + />desdirectory/apple/file_9Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A7D25A2A128text/plain; charset=utf-8ldQ6l2aRCQcDgQx7sPo93w==ErRj2XFvK89TB88MdnZWrQ==BlockBlobHottrueunlockedtruedesdirectory/file_0Wed, - 30 Oct 2019 11:55:28 GMTWed, 30 Oct 2019 11:55:28 - GMT0x8D75D300EA8CF22129text/plain; + />desdirectory/file_0Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACC124E9129text/plain; charset=utf-8bJ/F+JLp1wbl0CyNZUZgdg==OY/RWH3D3naoLuF+o6uxWA==BlockBlobHottrueunlockedtruedesdirectory/file_1Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B17FCA5129text/plain; + />desdirectory/file_1Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC66F3C6129text/plain; charset=utf-84CM7cBiJJypee5JX5ajtIg==xgnEmfJpfcMP1KSzZ7ALdQ==BlockBlobHottrueunlockedtruedesdirectory/file_2Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B739AE9129text/plain; + />desdirectory/file_2Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC671CF4129text/plain; charset=utf-8PTvNosWEV/VFhLuq5PebjA==MHkBN2opqGK/cOTAPkSrFQ==BlockBlobHottrueunlockedtruedesdirectory/file_3Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B2E6D2A129text/plain; + />desdirectory/file_3Thu, + 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 + GMT0x8D75DE2AD00F559129text/plain; charset=utf-8TpjyrQ3K1gI3sZw1jHHUIA==hq8Ei31kkCBe99YcmbSQKw==BlockBlobHottrueunlockedtruedesdirectory/file_4Wed, - 30 Oct 2019 11:55:21 GMTWed, 30 Oct 2019 11:55:21 - GMT0x8D75D300AAAB372129text/plain; + />desdirectory/file_4Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACA2FDE9129text/plain; charset=utf-8GUCGzENNhXDShh7lwn3Rbg==+j59DUtcoH+UNFRxyytSvA==BlockBlobHottrueunlockedtruedesdirectory/file_5Wed, - 30 Oct 2019 11:55:21 GMTWed, 30 Oct 2019 11:55:21 - GMT0x8D75D300A95B81E129text/plain; + />desdirectory/file_5Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACA586DC129text/plain; charset=utf-8rXgh4aFeDl+XgMuMu/1S/w==ZkxhWTE9LycEqoAjXsFOGQ==BlockBlobHottrueunlockedtruedesdirectory/file_6Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B439ED4129text/plain; + />desdirectory/file_6Thu, + 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 + GMT0x8D75DE2AD889610129text/plain; charset=utf-8FR809ZZbr4ZrgBEUS7z2Sw==lW+xch52GoISJeNBylaxVQ==BlockBlobHottrueunlockedtruedesdirectory/file_7Wed, - 30 Oct 2019 11:55:21 GMTWed, 30 Oct 2019 11:55:21 - GMT0x8D75D300A945E41129text/plain; + />desdirectory/file_7Thu, + 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 + GMT0x8D75DE2AD86FBD1129text/plain; charset=utf-8UBpvSg50g1yvYnYWDw2juw==u6huDG+SZRtVjyDwOjXeTw==BlockBlobHottrueunlockedtruedesdirectory/file_8Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B7D9DC2129text/plain; + />desdirectory/file_8Thu, + 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 + GMT0x8D75DE2ACDFEC70129text/plain; charset=utf-88vwp6GmPlJmapmYad1w/QQ==6TbWapEQD52gVyoAB1kBig==BlockBlobHottrueunlockedtruedesdirectory/file_9Wed, - 30 Oct 2019 11:55:22 GMTWed, 30 Oct 2019 11:55:22 - GMT0x8D75D300B5D9B96129text/plain; + />desdirectory/file_9Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC7E6A70129text/plain; charset=utf-8li4qOJCjNLpP2H0NsNLyfg==sAK28Vc0bdU6AkZAJdBX9g==BlockBlobHottrueunlockedtruedesdirectory/readmeWed, - 30 Oct 2019 11:55:09 GMTWed, 30 Oct 2019 11:55:09 - GMT0x8D75D30036E066B87text/plain; + />desdirectory/readmeThu, + 31 Oct 2019 09:13:47 GMTThu, 31 Oct 2019 09:13:47 + GMT0x8D75DE2A2E8184887text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruedesdirectory/desdirectory/appleThu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75695250BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A7572CD8128text/plain; + charset=utf-87siMFbxf8eKRt4Wqbk868Q==BlockBlobHottrueunlockedtruedesdirectory/apple/file_1Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A76D8A57128text/plain; + charset=utf-8q32PYmYeXhORLc0sBlEEyA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_2Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A789A0B1128text/plain; + charset=utf-8hQFbdeblZzqLkNB7a/+GsQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_3Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A78C7092128text/plain; + charset=utf-8AVl+FH80SNqSfLI8wDloWA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_4Thu, + 31 Oct 2019 09:13:57 GMTThu, 31 Oct 2019 09:13:57 + GMT0x8D75DE2A8EAF0DA128text/plain; + charset=utf-8utBanbGUxjzfRny3vfaDqw==BlockBlobHottrueunlockedtruedesdirectory/apple/file_5Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A79688F6128text/plain; + charset=utf-8WLxo/te6JhiFX3VIWJyQ4g==BlockBlobHottrueunlockedtruedesdirectory/apple/file_6Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A7CA9D41128text/plain; + charset=utf-89nrbm9GMDAuJJRP16BpcPQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_7Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75BC6AB128text/plain; + charset=utf-8PN5SgZB2W4edNPz6d7Cxag==BlockBlobHottrueunlockedtruedesdirectory/apple/file_8Thu, + 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 + GMT0x8D75DE2A75BC7E3128text/plain; + charset=utf-8sdp2YPHcYEMEVaMAEnCxhA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_9Thu, + 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 + GMT0x8D75DE2A7D25A2A128text/plain; + charset=utf-8ErRj2XFvK89TB88MdnZWrQ==BlockBlobHottrueunlockedtruedesdirectory/file_0Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACC124E9129text/plain; + charset=utf-8OY/RWH3D3naoLuF+o6uxWA==BlockBlobHottrueunlockedtruedesdirectory/file_1Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC66F3C6129text/plain; + charset=utf-8xgnEmfJpfcMP1KSzZ7ALdQ==BlockBlobHottrueunlockedtruedesdirectory/file_2Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC671CF4129text/plain; + charset=utf-8MHkBN2opqGK/cOTAPkSrFQ==BlockBlobHottrueunlockedtruedesdirectory/file_3Thu, + 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 + GMT0x8D75DE2AD00F559129text/plain; + charset=utf-8hq8Ei31kkCBe99YcmbSQKw==BlockBlobHottrueunlockedtruedesdirectory/file_4Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACA2FDE9129text/plain; + charset=utf-8+j59DUtcoH+UNFRxyytSvA==BlockBlobHottrueunlockedtruedesdirectory/file_5Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2ACA586DC129text/plain; + charset=utf-8ZkxhWTE9LycEqoAjXsFOGQ==BlockBlobHottrueunlockedtruedesdirectory/file_6Thu, + 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 + GMT0x8D75DE2AD889610129text/plain; + charset=utf-8lW+xch52GoISJeNBylaxVQ==BlockBlobHottrueunlockedtruedesdirectory/file_7Thu, + 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 + GMT0x8D75DE2AD86FBD1129text/plain; + charset=utf-8u6huDG+SZRtVjyDwOjXeTw==BlockBlobHottrueunlockedtruedesdirectory/file_8Thu, + 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 + GMT0x8D75DE2ACDFEC70129text/plain; + charset=utf-86TbWapEQD52gVyoAB1kBig==BlockBlobHottrueunlockedtruedesdirectory/file_9Thu, + 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 + GMT0x8D75DE2AC7E6A70129text/plain; + charset=utf-8sAK28Vc0bdU6AkZAJdBX9g==BlockBlobHottrueunlockedtrue" + headers: + content-type: + - application/xml + date: + - Thu, 31 Oct 2019 09:14:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2019-02-02' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 + x-ms-date: + - Thu, 31 Oct 2019 09:14:42 GMT + x-ms-version: + - '2018-11-09' + method: HEAD + uri: https://clitestaldsaccount000002.blob.core.windows.net/cont000003/readme + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '87' + content-md5: + - sYGKK8OX+WLKH+2bAe4tSQ== + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 31 Oct 2019 09:14:43 GMT + etag: + - '"0x8D75DE2A2E81848"' + last-modified: + - Thu, 31 Oct 2019 09:13:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-access-tier: + - Hot + x-ms-access-tier-inferred: + - 'true' + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Thu, 31 Oct 2019 09:13:47 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-11-09' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 + x-ms-acl: + - user::rwx,group::r--,other::--- + x-ms-date: + - Thu, 31 Oct 2019 09:14:44 GMT + x-ms-version: + - '2019-02-02' + method: PATCH + uri: https://clitestaldsaccount000002.dfs.core.windows.net/cont000003/readme?action=setAccessControl + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 31 Oct 2019 09:14:45 GMT + etag: + - '"0x8D75DE2A2E81848"' + last-modified: + - Thu, 31 Oct 2019 09:13:47 GMT + server: + - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 + x-ms-namespace-enabled: + - 'true' + x-ms-version: + - '2019-02-02' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 + x-ms-date: + - Thu, 31 Oct 2019 09:14:46 GMT + x-ms-version: + - '2019-02-02' + method: HEAD + uri: https://clitestaldsaccount000002.dfs.core.windows.net/cont000003/readme?action=getAccessControl&upn=False + response: + body: + string: '' + headers: + date: + - Thu, 31 Oct 2019 09:14:47 GMT + etag: + - '"0x8D75DE2A2E81848"' + last-modified: + - Thu, 31 Oct 2019 09:13:47 GMT + server: + - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 + x-ms-acl: + - user::rwx,group::r--,other::--- + x-ms-group: + - $superuser + x-ms-owner: + - $superuser + x-ms-permissions: + - rwxr----- + x-ms-version: + - '2019-02-02' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 + x-ms-date: + - Thu, 31 Oct 2019 09:14:48 GMT + x-ms-permissions: + - rwxrwxrwx + x-ms-version: + - '2019-02-02' + method: PATCH + uri: https://clitestaldsaccount000002.dfs.core.windows.net/cont000003/readme?action=setAccessControl + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 31 Oct 2019 09:14:49 GMT + etag: + - '"0x8D75DE2A2E81848"' + last-modified: + - Thu, 31 Oct 2019 09:13:47 GMT + server: + - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 + x-ms-namespace-enabled: + - 'true' + x-ms-version: + - '2019-02-02' + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 + x-ms-date: + - Thu, 31 Oct 2019 09:14:50 GMT + x-ms-version: + - '2019-02-02' + method: HEAD + uri: https://clitestaldsaccount000002.dfs.core.windows.net/cont000003/readme?action=getAccessControl&upn=False + response: + body: + string: '' + headers: + date: + - Thu, 31 Oct 2019 09:14:50 GMT + etag: + - '"0x8D75DE2A2E81848"' + last-modified: + - Thu, 31 Oct 2019 09:13:47 GMT + server: + - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 + x-ms-acl: + - user::rwx,group::rwx,other::rwx + x-ms-group: + - $superuser + x-ms-owner: + - $superuser + x-ms-permissions: + - rwxrwxrwx + x-ms-version: + - '2019-02-02' + status: + code: 200 + message: OK - request: body: null headers: @@ -1057,7 +1449,7 @@ interactions: x-ms-acl: - user::rwx,group::r--,other::--- x-ms-date: - - Wed, 30 Oct 2019 11:56:26 GMT + - Thu, 31 Oct 2019 09:14:52 GMT x-ms-version: - '2019-02-02' method: PATCH @@ -1069,11 +1461,11 @@ interactions: content-length: - '0' date: - - Wed, 30 Oct 2019 11:56:26 GMT + - Thu, 31 Oct 2019 09:14:52 GMT etag: - - '"0x8D75D2FFD840B71"' + - '"0x8D75DE29268D6E8"' last-modified: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1091,7 +1483,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:56:28 GMT + - Thu, 31 Oct 2019 09:14:54 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1101,11 +1493,11 @@ interactions: string: '' headers: date: - - Wed, 30 Oct 2019 11:56:28 GMT + - Thu, 31 Oct 2019 09:14:54 GMT etag: - - '"0x8D75D2FFD840B71"' + - '"0x8D75DE29268D6E8"' last-modified: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1131,7 +1523,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:56:29 GMT + - Thu, 31 Oct 2019 09:14:56 GMT x-ms-permissions: - rwxrwxrwx x-ms-version: @@ -1145,11 +1537,11 @@ interactions: content-length: - '0' date: - - Wed, 30 Oct 2019 11:56:31 GMT + - Thu, 31 Oct 2019 09:14:56 GMT etag: - - '"0x8D75D2FFD840B71"' + - '"0x8D75DE29268D6E8"' last-modified: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1167,7 +1559,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:56:32 GMT + - Thu, 31 Oct 2019 09:14:58 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1177,11 +1569,11 @@ interactions: string: '' headers: date: - - Wed, 30 Oct 2019 11:56:32 GMT + - Thu, 31 Oct 2019 09:14:58 GMT etag: - - '"0x8D75D2FFD840B71"' + - '"0x8D75DE29268D6E8"' last-modified: - - Wed, 30 Oct 2019 11:54:59 GMT + - Thu, 31 Oct 2019 09:13:19 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1207,7 +1599,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:56:34 GMT + - Thu, 31 Oct 2019 09:14:59 GMT x-ms-meta-tag1: - value1 x-ms-version: @@ -1221,11 +1613,11 @@ interactions: content-length: - '0' date: - - Wed, 30 Oct 2019 11:56:35 GMT + - Thu, 31 Oct 2019 09:15:00 GMT etag: - - '"0x8D75D30372EE944"' + - '"0x8D75DE2CF3E15C9"' last-modified: - - Wed, 30 Oct 2019 11:56:36 GMT + - Thu, 31 Oct 2019 09:15:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -1243,7 +1635,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:56:36 GMT + - Thu, 31 Oct 2019 09:15:02 GMT x-ms-version: - '2019-02-02' method: GET @@ -1255,11 +1647,11 @@ interactions: content-length: - '0' date: - - Wed, 30 Oct 2019 11:56:37 GMT + - Thu, 31 Oct 2019 09:15:03 GMT etag: - - '"0x8D75D30372EE944"' + - '"0x8D75DE2CF3E15C9"' last-modified: - - Wed, 30 Oct 2019 11:56:36 GMT + - Thu, 31 Oct 2019 09:15:01 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-meta-hdi_isfolder: @@ -1281,7 +1673,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:56:39 GMT + - Thu, 31 Oct 2019 09:15:04 GMT x-ms-version: - '2019-02-02' method: DELETE @@ -1293,7 +1685,7 @@ interactions: content-length: - '0' date: - - Wed, 30 Oct 2019 11:56:39 GMT + - Thu, 31 Oct 2019 09:15:05 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1309,7 +1701,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:56:41 GMT + - Thu, 31 Oct 2019 09:15:06 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1319,7 +1711,7 @@ interactions: string: '' headers: date: - - Wed, 30 Oct 2019 11:56:42 GMT + - Thu, 31 Oct 2019 09:15:07 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py index 641ca9707dd..e29b0e812fc 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py +++ b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py @@ -87,6 +87,25 @@ def test_storage_blob_directory(self, resource_group, test_dir): self.storage_cmd('storage blob directory list -c {} -d {}', account_info, container, des_directory) \ .assert_with_checks(JMESPathCheck('length(@)', 22)) + blob = 'readme' + # Move a blob in a container + self.storage_cmd('storage blob move -c {} -d {} -s {}', account_info, + container, blob, '/'.join([des_directory, 'readme'])) + self.storage_cmd('storage blob directory list -c {} -d {}', account_info, container, des_directory) \ + .assert_with_checks(JMESPathCheck('length(@)', 21)) + self.storage_cmd('storage blob exists -c {} -n {} ', account_info, container, blob) \ + .assert_with_checks(JMESPathCheck('exists', True)) + + # Storage blob access control + acl = "user::rwx,group::r--,other::---" + self.storage_cmd('storage blob access set -c {} -b {} -a "{}"', account_info, container, blob, acl) + self.storage_cmd('storage blob access show -c {} -b {}', account_info, container, blob) \ + .assert_with_checks(JMESPathCheck('acl', acl)) + self.storage_cmd('storage blob access update -c {} -b {} --permissions "rwxrwxrwx"', account_info, + container, blob, acl) + self.storage_cmd('storage blob access show -c {} -b {}', account_info, container, blob)\ + .assert_with_checks(JMESPathCheck('permissions', "rwxrwxrwx")) + # Storage blob directory access control acl = "user::rwx,group::r--,other::---" self.storage_cmd('storage blob directory access set -c {} -d {} -a "{}"', account_info, container, des_directory, acl) From 4639717663b1ee0f4b561dbc9cff960c5ad30f90 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 17:26:24 +0800 Subject: [PATCH 07/21] update history.rst --- src/storage-preview/HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/src/storage-preview/HISTORY.rst b/src/storage-preview/HISTORY.rst index 4843355046f..623b64121e7 100644 --- a/src/storage-preview/HISTORY.rst +++ b/src/storage-preview/HISTORY.rst @@ -7,6 +7,7 @@ ++++++++++++++++ * Integrate Azcopy v10.3.1 * Add `az storage blob directory` command group +* Add blob move command and blob access command group 0.2.8 (2019-7-5) ++++++++++++++++ From fb837c51aa8e9eb01b57d25c9c456c9f2a7b9112 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 17:30:36 +0800 Subject: [PATCH 08/21] update index.json --- src/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.json b/src/index.json index fbea5736c78..b8b57d95183 100644 --- a/src/index.json +++ b/src/index.json @@ -2215,7 +2215,7 @@ "summary": "Provides a preview for upcoming storage features.", "version": "0.2.9" }, - "sha256Digest": "1ceb595e69826c02bcdac1ca11f1a79bd762263d63e4bf21587c7260dd2885c0" + "sha256Digest": "9c222b957342f9694b74157825b53392110e3d61f4d87e4a9525dbc829e94022" } ], "subscription": [ From dcc15bc5451bc6859140d65255aae63cebf2eb55 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 17:33:03 +0800 Subject: [PATCH 09/21] update comment message --- src/storage-preview/azext_storage_preview/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage-preview/azext_storage_preview/commands.py b/src/storage-preview/azext_storage_preview/commands.py index 5efe46e1624..53b5710e9b0 100644 --- a/src/storage-preview/azext_storage_preview/commands.py +++ b/src/storage-preview/azext_storage_preview/commands.py @@ -114,7 +114,7 @@ def get_custom_sdk(custom_module, client_factory, resource_type=CUSTOM_DATA_STOR client_factory=adls_blob_data_service_factory, resource_type=CUSTOM_DATA_STORAGE_ADLS) - # Blob directory Commands Group + # New Blob Commands with self.command_group('storage blob', command_type=adls_base_blob_sdk, custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, CUSTOM_DATA_STORAGE_ADLS), From 0dec0f73f0a11e891c67316f8a53731955682a5b Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 17:38:19 +0800 Subject: [PATCH 10/21] fix style --- src/storage-preview/azext_storage_preview/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage-preview/azext_storage_preview/commands.py b/src/storage-preview/azext_storage_preview/commands.py index 53b5710e9b0..a15270bc483 100644 --- a/src/storage-preview/azext_storage_preview/commands.py +++ b/src/storage-preview/azext_storage_preview/commands.py @@ -114,7 +114,7 @@ def get_custom_sdk(custom_module, client_factory, resource_type=CUSTOM_DATA_STOR client_factory=adls_blob_data_service_factory, resource_type=CUSTOM_DATA_STORAGE_ADLS) - # New Blob Commands + # New Blob Commands with self.command_group('storage blob', command_type=adls_base_blob_sdk, custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, CUSTOM_DATA_STORAGE_ADLS), From 2377d88e7c1d90bc1aec679d3957b048e418c39c Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 17:44:57 +0800 Subject: [PATCH 11/21] Mark all new commands as preview --- .../azext_storage_preview/commands.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/storage-preview/azext_storage_preview/commands.py b/src/storage-preview/azext_storage_preview/commands.py index a15270bc483..f4bcf226bee 100644 --- a/src/storage-preview/azext_storage_preview/commands.py +++ b/src/storage-preview/azext_storage_preview/commands.py @@ -119,12 +119,12 @@ def get_custom_sdk(custom_module, client_factory, resource_type=CUSTOM_DATA_STOR custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, CUSTOM_DATA_STORAGE_ADLS), resource_type=CUSTOM_DATA_STORAGE_ADLS) as g: - g.storage_command_oauth('move', 'rename_path') + g.storage_command_oauth('move', 'rename_path', is_preview=True) with self.command_group('storage blob access', command_type=adls_base_blob_sdk, custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, CUSTOM_DATA_STORAGE_ADLS), - resource_type=CUSTOM_DATA_STORAGE_ADLS) as g: + resource_type=CUSTOM_DATA_STORAGE_ADLS, is_preview=True) as g: g.storage_command_oauth('set', 'set_path_access_control') g.storage_command_oauth('update', 'set_path_access_control') g.storage_command_oauth('show', 'get_path_access_control') @@ -133,7 +133,7 @@ def get_custom_sdk(custom_module, client_factory, resource_type=CUSTOM_DATA_STOR with self.command_group('storage blob directory', command_type=adls_base_blob_sdk, custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, CUSTOM_DATA_STORAGE_ADLS), - resource_type=CUSTOM_DATA_STORAGE_ADLS) as g: + resource_type=CUSTOM_DATA_STORAGE_ADLS, is_preview=True) as g: from ._format import transform_blob_output from ._transformers import (transform_storage_list_output, create_boolean_result_output_transformer) g.storage_command_oauth('create', 'create_directory') @@ -148,12 +148,12 @@ def get_custom_sdk(custom_module, client_factory, resource_type=CUSTOM_DATA_STOR 'metadata show', 'get_blob_metadata', exception_handler=show_exception_handler) g.storage_command_oauth('metadata update', 'set_blob_metadata') - with self.command_group('storage blob directory', - custom_command_type=get_custom_sdk('azcopy', blob_data_service_factory)) as g: + with self.command_group('storage blob directory', is_preview=True, + custom_command_type=get_custom_sdk('azcopy', blob_data_service_factory))as g: g.storage_custom_command_oauth('upload', 'storage_blob_upload') g.storage_custom_command_oauth('download', 'storage_blob_download') - with self.command_group('storage blob directory access', command_type=adls_base_blob_sdk, + with self.command_group('storage blob directory access', command_type=adls_base_blob_sdk, is_preview=True, custom_command_type=get_custom_sdk('blob', adls_blob_data_service_factory, CUSTOM_DATA_STORAGE_ADLS), resource_type=CUSTOM_DATA_STORAGE_ADLS) as g: From 6f36e87e4fea098e330589802e60616bc49a17ea Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 18:12:03 +0800 Subject: [PATCH 12/21] add help for blob directory show --- src/storage-preview/azext_storage_preview/_params.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/storage-preview/azext_storage_preview/_params.py b/src/storage-preview/azext_storage_preview/_params.py index 56e651068b0..994e9c8f611 100644 --- a/src/storage-preview/azext_storage_preview/_params.py +++ b/src/storage-preview/azext_storage_preview/_params.py @@ -296,7 +296,13 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem # c.argument('snapshot', help='The snapshot parameter is an opaque DateTime value that, ' # 'when present, specifies the directory snapshot to retrieve.') c.ignore('snapshot') - c.argument('lease-id', help='Required if the blob has an active lease.') + c.argument('lease_id', help='Required if the blob has an active lease.') + c.argument('if_match', help="An ETag value, or the wildcard character (*). Specify this header to perform the" + "operation only if the resource's ETag matches the value specified") + c.argument('if_none_match', help="An ETag value, or the wildcard character (*). Specify this header to perform" + "the operation only if the resource's ETag does not match the value specified. Specify the wildcard" + "character (*) to perform the operation only if the resource does not exist, and fail the operation" + "if it does exist.") with self.argument_context('storage blob directory upload') as c: c.extra('destination_container', options_list=['--container', '-c'], required=True, From be6e441757588cf84487afd8378c6388d08994c1 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 18:16:16 +0800 Subject: [PATCH 13/21] fix style --- src/storage-preview/azext_storage_preview/_params.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage-preview/azext_storage_preview/_params.py b/src/storage-preview/azext_storage_preview/_params.py index 994e9c8f611..5ae83cb0d74 100644 --- a/src/storage-preview/azext_storage_preview/_params.py +++ b/src/storage-preview/azext_storage_preview/_params.py @@ -299,9 +299,9 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem c.argument('lease_id', help='Required if the blob has an active lease.') c.argument('if_match', help="An ETag value, or the wildcard character (*). Specify this header to perform the" "operation only if the resource's ETag matches the value specified") - c.argument('if_none_match', help="An ETag value, or the wildcard character (*). Specify this header to perform" + c.argument('if_none_match', help="An ETag value, or the wildcard character (*). Specify this header to perform" "the operation only if the resource's ETag does not match the value specified. Specify the wildcard" - "character (*) to perform the operation only if the resource does not exist, and fail the operation" + "character (*) to perform the operation only if the resource does not exist, and fail the operation" "if it does exist.") with self.argument_context('storage blob directory upload') as c: From d7c85fc3bd05187a5dad9d9075d2195f78a713b3 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 18:25:41 +0800 Subject: [PATCH 14/21] update index.json --- src/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.json b/src/index.json index 7f699bb3d58..00b3c0083c1 100644 --- a/src/index.json +++ b/src/index.json @@ -2170,7 +2170,7 @@ "summary": "Provides a preview for upcoming storage features.", "version": "0.2.9" }, - "sha256Digest": "9c222b957342f9694b74157825b53392110e3d61f4d87e4a9525dbc829e94022" + "sha256Digest": "02656d02639b32b0ab096253264a2f8a7f7d6c0a04b05275aa685ccba952d80f" } ], "subscription": [ From 8ec0cf5ee829690c38109da82a2dce993319c1fd Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 18:40:13 +0800 Subject: [PATCH 15/21] update help --- src/storage-preview/azext_storage_preview/_help.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/storage-preview/azext_storage_preview/_help.py b/src/storage-preview/azext_storage_preview/_help.py index bdc8ad1607a..560edb4e038 100644 --- a/src/storage-preview/azext_storage_preview/_help.py +++ b/src/storage-preview/azext_storage_preview/_help.py @@ -140,9 +140,9 @@ - name: Update the access permissions of a blob. text: az storage blob access update --permissions "rwxrwxrwx" -b MyBlob -c MyContainer --account-name MyStorageAccount - name: Update the owning user of a blob. - text: az storage blob access update --owner [entity id or UPN] -b MyBlob -c MyContainer --account-name MyStorageAccount + text: az storage blob access update --owner [entityId/UPN] -b MyBlob -c MyContainer --account-name MyStorageAccount - name: Update the owning group of a blob. - text: az storage blob access update --group [entity id or UPN] -b MyBlob -c MyContainer --account-name MyStorageAccount + text: az storage blob access update --group [entityId/UPN] -b MyBlob -c MyContainer --account-name MyStorageAccount """ helps['storage blob move'] = """ @@ -187,9 +187,9 @@ - name: Update the access permissions of a directory. text: az storage blob directory access update --permissions "rwxrwxrwx" -d MyDirectoryPath -c MyContainer --account-name MyStorageAccount - name: Update the owning user of a directory. - text: az storage blob directory access update --owner [entity id or UPN] -d MyDirectoryPath -c MyContainer --account-name MyStorageAccount + text: az storage blob directory access update --owner [entityId/UPN] -d MyDirectoryPath -c MyContainer --account-name MyStorageAccount - name: Update the owning group of a directory. - text: az storage blob directory access update --group [entity id or UPN] -d MyDirectoryPath -c MyContainer --account-name MyStorageAccount + text: az storage blob directory access update --group [entityId/UPN] -d MyDirectoryPath -c MyContainer --account-name MyStorageAccount """ helps['storage blob directory create'] = """ From 87105057a9e37dba62857d2824bd607c14db314c Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 31 Oct 2019 18:48:05 +0800 Subject: [PATCH 16/21] update index.json --- src/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.json b/src/index.json index 00b3c0083c1..842520ee219 100644 --- a/src/index.json +++ b/src/index.json @@ -2170,7 +2170,7 @@ "summary": "Provides a preview for upcoming storage features.", "version": "0.2.9" }, - "sha256Digest": "02656d02639b32b0ab096253264a2f8a7f7d6c0a04b05275aa685ccba952d80f" + "sha256Digest": "bafa644582d2a6f063d7a94fa5aa8ba760db26898499d642b8a89f4d7040623d" } ], "subscription": [ From 81975e66173fd5c1cc3df098e665e20b0b015cb0 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Fri, 1 Nov 2019 17:33:10 +0800 Subject: [PATCH 17/21] re-record test --- .../test_create_storage_account.yaml | 1129 ++++++++++------- ...torage_account_hierarchical_namespace.yaml | 261 ++-- ...st_create_storage_account_premium_sku.yaml | 40 +- ...torage_account_with_assigned_identity.yaml | 18 +- .../recordings/test_management_policy.yaml | 42 +- .../latest/recordings/test_show_usage.yaml | 66 +- ...ctory.yaml => test_storage_adls_blob.yaml} | 826 ++++++------ ...torage_blob_update_service_properties.yaml | 42 +- .../test_storage_create_default_sku.yaml | 18 +- ...torage_account_with_assigned_identity.yaml | 28 +- .../latest/test_storage_adls_scenarios.py | 5 +- 11 files changed, 1373 insertions(+), 1102 deletions(-) rename src/storage-preview/azext_storage_preview/tests/latest/recordings/{test_storage_blob_directory.yaml => test_storage_adls_blob.yaml} (74%) diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account.yaml index debc49c7dcb..0cb24c9317b 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account.yaml @@ -1,297 +1,409 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-10-03T23:53:08Z"}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group create] - Connection: [keep-alive] - Content-Length: ['110'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-10-03T23:53:08Z"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['384'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 03 Oct 2018 23:53:10 GMT'] - expires: ['-1'] - pragma: [no-cache] - 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: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account create] - Connection: [keep-alive] - Content-Length: ['74'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --sku -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-01 response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - content-type: [text/plain; charset=utf-8] - date: ['Wed, 03 Oct 2018 23:53:11 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/daab470a-133c-4d83-a405-48ccaeac1d92?monitor=true&api-version=2018-07-01'] - 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: 202, message: Accepted} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 01 Nov 2019 06:38:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e92a03db-657e-4900-87ca-9181100b5d5a?monitor=true&api-version=2018-07-01 + 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: + - '1195' + status: + code: 202 + message: Accepted - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/daab470a-133c-4d83-a405-48ccaeac1d92?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e92a03db-657e-4900-87ca-9181100b5d5a?monitor=true&api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1231'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:28 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} + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1169' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:14 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: 'b''{"name": "cli000002", "type": "Microsoft.Storage/storageAccounts"}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account check-name] - Connection: [keep-alive] - Content-Length: ['81'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + body: '{"name": "cli000002", "type": "Microsoft.Storage/storageAccounts"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account check-name + Connection: + - keep-alive + Content-Length: + - '81' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01 response: - body: {string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The - storage account named cli000002 is already taken."}'} - headers: - cache-control: [no-cache] - content-length: ['129'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:30 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} + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The storage + account named cli000002 is already taken."}' + headers: + cache-control: + - no-cache + content-length: + - '129' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:16 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 account list] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01 response: - body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}'} - headers: - cache-control: [no-cache] - content-length: ['1243'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:30 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} + body: + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1181' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:17 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 account show] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1231'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:31 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} + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1169' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:19 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 account show] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + 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/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01 response: - body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amar/providers/Microsoft.Storage/storageAccounts/amardiag596","name":"amardiag596","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-08T16:10:29.0593763Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-08T16:10:29.0593763Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-08-08T16:10:28.8562508Z","primaryEndpoints":{"blob":"https://amardiag596.blob.core.windows.net/","queue":"https://amardiag596.queue.core.windows.net/","table":"https://amardiag596.table.core.windows.net/","file":"https://amardiag596.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/amar/providers/Microsoft.Storage/storageAccounts/nodetest12","name":"nodetest12","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-11T22:34:54.8545695Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-11T22:34:54.8545695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-06-11T22:34:54.6358258Z","primaryEndpoints":{"dfs":"https://nodetest12.dfs.core.windows.net/","web":"https://nodetest12.z13.web.core.windows.net/","blob":"https://nodetest12.blob.core.windows.net/","queue":"https://nodetest12.queue.core.windows.net/","table":"https://nodetest12.table.core.windows.net/","file":"https://nodetest12.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvazkuv27uljwvz2tmnmecw5nuqramhayk7uqkl67gjxfsjfpxhfyxg45cxg2lqz6u/providers/Microsoft.Storage/storageAccounts/clistoragevi5fudbnsq","name":"clistoragevi5fudbnsq","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-14T21:27:33.4336328Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-14T21:27:33.4336328Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-14T21:27:33.3241912Z","primaryEndpoints":{"web":"https://clistoragevi5fudbnsq.z22.web.core.windows.net/","blob":"https://clistoragevi5fudbnsq.blob.core.windows.net/","queue":"https://clistoragevi5fudbnsq.queue.core.windows.net/","table":"https://clistoragevi5fudbnsq.table.core.windows.net/","file":"https://clistoragevi5fudbnsq.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistoragevi5fudbnsq-secondary.z22.web.core.windows.net/","blob":"https://clistoragevi5fudbnsq-secondary.blob.core.windows.net/","queue":"https://clistoragevi5fudbnsq-secondary.queue.core.windows.net/","table":"https://clistoragevi5fudbnsq-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgelvypcebie75casshjcdfo3gxybms7xn6zp46gdvihhxdcqaqcrmdtbx2ldm7e7l2/providers/Microsoft.Storage/storageAccounts/clistorageqnmno3yrja","name":"clistorageqnmno3yrja","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-22T17:36:54.9267813Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-22T17:36:54.9267813Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-22T17:36:54.7702516Z","primaryEndpoints":{"web":"https://clistorageqnmno3yrja.z22.web.core.windows.net/","blob":"https://clistorageqnmno3yrja.blob.core.windows.net/","queue":"https://clistorageqnmno3yrja.queue.core.windows.net/","table":"https://clistorageqnmno3yrja.table.core.windows.net/","file":"https://clistorageqnmno3yrja.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistorageqnmno3yrja-secondary.z22.web.core.windows.net/","blob":"https://clistorageqnmno3yrja-secondary.blob.core.windows.net/","queue":"https://clistorageqnmno3yrja-secondary.queue.core.windows.net/","table":"https://clistorageqnmno3yrja-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6lcblrcfuy56nybdtlwez5kpklvczltjbt5u6yqiamvlkisyw53gbzepfvipm6opr/providers/Microsoft.Storage/storageAccounts/clistoragenwbh6jsk37","name":"clistoragenwbh6jsk37","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-16T00:11:59.1916112Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-16T00:11:59.1916112Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-16T00:11:59.0978516Z","primaryEndpoints":{"web":"https://clistoragenwbh6jsk37.z22.web.core.windows.net/","blob":"https://clistoragenwbh6jsk37.blob.core.windows.net/","queue":"https://clistoragenwbh6jsk37.queue.core.windows.net/","table":"https://clistoragenwbh6jsk37.table.core.windows.net/","file":"https://clistoragenwbh6jsk37.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistoragenwbh6jsk37-secondary.z22.web.core.windows.net/","blob":"https://clistoragenwbh6jsk37-secondary.blob.core.windows.net/","queue":"https://clistoragenwbh6jsk37-secondary.queue.core.windows.net/","table":"https://clistoragenwbh6jsk37-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjfd2y6zx7tea3hqe3tqomekc5vxp3tgo6gpuoledm6wo3a2ugtowyy4waukv5rjy/providers/Microsoft.Storage/storageAccounts/clistoragevkmaf7jdkq","name":"clistoragevkmaf7jdkq","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-14T01:00:09.5288450Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-14T01:00:09.5288450Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-14T01:00:09.4192315Z","primaryEndpoints":{"web":"https://clistoragevkmaf7jdkq.z22.web.core.windows.net/","blob":"https://clistoragevkmaf7jdkq.blob.core.windows.net/","queue":"https://clistoragevkmaf7jdkq.queue.core.windows.net/","table":"https://clistoragevkmaf7jdkq.table.core.windows.net/","file":"https://clistoragevkmaf7jdkq.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistoragevkmaf7jdkq-secondary.z22.web.core.windows.net/","blob":"https://clistoragevkmaf7jdkq-secondary.blob.core.windows.net/","queue":"https://clistoragevkmaf7jdkq-secondary.queue.core.windows.net/","table":"https://clistoragevkmaf7jdkq-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgck524lxhki2ki4rxnew5gl7cjisgc3nch5mdttubhuzu6qbdipbf2uhoe73wtyzhn/providers/Microsoft.Storage/storageAccounts/clistoragehda7raqo3s","name":"clistoragehda7raqo3s","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-16T17:49:00.7139157Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-16T17:49:00.7139157Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-16T17:49:00.4482840Z","primaryEndpoints":{"web":"https://clistoragehda7raqo3s.z22.web.core.windows.net/","blob":"https://clistoragehda7raqo3s.blob.core.windows.net/","queue":"https://clistoragehda7raqo3s.queue.core.windows.net/","table":"https://clistoragehda7raqo3s.table.core.windows.net/","file":"https://clistoragehda7raqo3s.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistoragehda7raqo3s-secondary.z22.web.core.windows.net/","blob":"https://clistoragehda7raqo3s-secondary.blob.core.windows.net/","queue":"https://clistoragehda7raqo3s-secondary.queue.core.windows.net/","table":"https://clistoragehda7raqo3s-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmtgeyhv55fxzhqjkb3ynjqw5ljlhjp3btqdavs7hcmx33z7vu6ytan6ere7n5c4x5/providers/Microsoft.Storage/storageAccounts/clistoragejqhqxuct23","name":"clistoragejqhqxuct23","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-10T22:36:17.3820701Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-10T22:36:17.3820701Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-10T22:36:17.2883235Z","primaryEndpoints":{"web":"https://clistoragejqhqxuct23.z22.web.core.windows.net/","blob":"https://clistoragejqhqxuct23.blob.core.windows.net/","queue":"https://clistoragejqhqxuct23.queue.core.windows.net/","table":"https://clistoragejqhqxuct23.table.core.windows.net/","file":"https://clistoragejqhqxuct23.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistoragejqhqxuct23-secondary.z22.web.core.windows.net/","blob":"https://clistoragejqhqxuct23-secondary.blob.core.windows.net/","queue":"https://clistoragejqhqxuct23-secondary.queue.core.windows.net/","table":"https://clistoragejqhqxuct23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpamvtezmteh7zp2bdt3y4idc7mmbzvf6sdzjynqmht26jisd4amljydqqa32zckbx/providers/Microsoft.Storage/storageAccounts/clistoragewr2qjfjhzb","name":"clistoragewr2qjfjhzb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-16T00:13:04.0707837Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-16T00:13:04.0707837Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-16T00:13:03.9614281Z","primaryEndpoints":{"web":"https://clistoragewr2qjfjhzb.z22.web.core.windows.net/","blob":"https://clistoragewr2qjfjhzb.blob.core.windows.net/","queue":"https://clistoragewr2qjfjhzb.queue.core.windows.net/","table":"https://clistoragewr2qjfjhzb.table.core.windows.net/","file":"https://clistoragewr2qjfjhzb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistoragewr2qjfjhzb-secondary.z22.web.core.windows.net/","blob":"https://clistoragewr2qjfjhzb-secondary.blob.core.windows.net/","queue":"https://clistoragewr2qjfjhzb-secondary.queue.core.windows.net/","table":"https://clistoragewr2qjfjhzb-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgooetcw3locipbmar4742ebvhztivldtfcwdo5kmhnouyr44vufpxzhgplrrvk56gs/providers/Microsoft.Storage/storageAccounts/clistorage5uh2sd5di6","name":"clistorage5uh2sd5di6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-10T21:53:58.5156654Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-10T21:53:58.5156654Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-10T21:53:58.4219023Z","primaryEndpoints":{"web":"https://clistorage5uh2sd5di6.z22.web.core.windows.net/","blob":"https://clistorage5uh2sd5di6.blob.core.windows.net/","queue":"https://clistorage5uh2sd5di6.queue.core.windows.net/","table":"https://clistorage5uh2sd5di6.table.core.windows.net/","file":"https://clistorage5uh2sd5di6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistorage5uh2sd5di6-secondary.z22.web.core.windows.net/","blob":"https://clistorage5uh2sd5di6-secondary.blob.core.windows.net/","queue":"https://clistorage5uh2sd5di6-secondary.queue.core.windows.net/","table":"https://clistorage5uh2sd5di6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtg6bh4bbk6ihd7m24ktzhvdb5oqztkv4zx63r7xqkiggambffyitl2m2yx2fssywe/providers/Microsoft.Storage/storageAccounts/clistorage7jvvytqmtd","name":"clistorage7jvvytqmtd","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-11T23:59:47.3696626Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-11T23:59:47.3696626Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-11T23:59:46.6511608Z","primaryEndpoints":{"web":"https://clistorage7jvvytqmtd.z22.web.core.windows.net/","blob":"https://clistorage7jvvytqmtd.blob.core.windows.net/","queue":"https://clistorage7jvvytqmtd.queue.core.windows.net/","table":"https://clistorage7jvvytqmtd.table.core.windows.net/","file":"https://clistorage7jvvytqmtd.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistorage7jvvytqmtd-secondary.z22.web.core.windows.net/","blob":"https://clistorage7jvvytqmtd-secondary.blob.core.windows.net/","queue":"https://clistorage7jvvytqmtd-secondary.queue.core.windows.net/","table":"https://clistorage7jvvytqmtd-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgypr6blmisj5pyxrjphnwbifkmsdyk3igstozydzondjnuhgq2e5zirlvz5rl3n6gk/providers/Microsoft.Storage/storageAccounts/clistorage7de3dm4xlr","name":"clistorage7de3dm4xlr","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-14T20:49:50.7380783Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-14T20:49:50.7380783Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-14T20:49:50.6443644Z","primaryEndpoints":{"web":"https://clistorage7de3dm4xlr.z22.web.core.windows.net/","blob":"https://clistorage7de3dm4xlr.blob.core.windows.net/","queue":"https://clistorage7de3dm4xlr.queue.core.windows.net/","table":"https://clistorage7de3dm4xlr.table.core.windows.net/","file":"https://clistorage7de3dm4xlr.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistorage7de3dm4xlr-secondary.z22.web.core.windows.net/","blob":"https://clistorage7de3dm4xlr-secondary.blob.core.windows.net/","queue":"https://clistorage7de3dm4xlr-secondary.queue.core.windows.net/","table":"https://clistorage7de3dm4xlr-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi2biwne2krt426d7syiwaouiedbqykuhgys7oag2c3twjzz4c7pup26vc226txaua/providers/Microsoft.Storage/storageAccounts/clistorageayl5jkq6ty","name":"clistorageayl5jkq6ty","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-14T16:54:41.5707757Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-14T16:54:41.5707757Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-14T16:54:41.4614062Z","primaryEndpoints":{"web":"https://clistorageayl5jkq6ty.z22.web.core.windows.net/","blob":"https://clistorageayl5jkq6ty.blob.core.windows.net/","queue":"https://clistorageayl5jkq6ty.queue.core.windows.net/","table":"https://clistorageayl5jkq6ty.table.core.windows.net/","file":"https://clistorageayl5jkq6ty.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistorageayl5jkq6ty-secondary.z22.web.core.windows.net/","blob":"https://clistorageayl5jkq6ty-secondary.blob.core.windows.net/","queue":"https://clistorageayl5jkq6ty-secondary.queue.core.windows.net/","table":"https://clistorageayl5jkq6ty-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxtest/providers/Microsoft.Storage/storageAccounts/wilxtesting","name":"wilxtesting","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-28T17:41:10.2771663Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-28T17:41:10.2771663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-08-28T17:41:10.1061835Z","primaryEndpoints":{"blob":"https://wilxtesting.blob.core.windows.net/","queue":"https://wilxtesting.queue.core.windows.net/","table":"https://wilxtesting.table.core.windows.net/","file":"https://wilxtesting.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://wilxtesting-secondary.blob.core.windows.net/","queue":"https://wilxtesting-secondary.queue.core.windows.net/","table":"https://wilxtesting-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/Microsoft.Storage/storageAccounts/clistorage2jbmemj6cj","name":"clistorage2jbmemj6cj","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-12T19:25:59.1461511Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-12T19:25:59.1461511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-12T19:25:58.8961261Z","primaryEndpoints":{"web":"https://clistorage2jbmemj6cj.z22.web.core.windows.net/","blob":"https://clistorage2jbmemj6cj.blob.core.windows.net/","queue":"https://clistorage2jbmemj6cj.queue.core.windows.net/","table":"https://clistorage2jbmemj6cj.table.core.windows.net/","file":"https://clistorage2jbmemj6cj.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistorage2jbmemj6cj-secondary.z22.web.core.windows.net/","blob":"https://clistorage2jbmemj6cj-secondary.blob.core.windows.net/","queue":"https://clistorage2jbmemj6cj-secondary.queue.core.windows.net/","table":"https://clistorage2jbmemj6cj-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/Microsoft.Storage/storageAccounts/clistoragehhbuuxg3tu","name":"clistoragehhbuuxg3tu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-27T00:17:56.8422453Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-27T00:17:56.8422453Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-06-27T00:17:56.7015542Z","primaryEndpoints":{"web":"https://clistoragehhbuuxg3tu.z22.web.core.windows.net/","blob":"https://clistoragehhbuuxg3tu.blob.core.windows.net/","queue":"https://clistoragehhbuuxg3tu.queue.core.windows.net/","table":"https://clistoragehhbuuxg3tu.table.core.windows.net/","file":"https://clistoragehhbuuxg3tu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://clistoragehhbuuxg3tu-secondary.z22.web.core.windows.net/","blob":"https://clistoragehhbuuxg3tu-secondary.blob.core.windows.net/","queue":"https://clistoragehhbuuxg3tu-secondary.queue.core.windows.net/","table":"https://clistoragehhbuuxg3tu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Storage/storageAccounts/eventgridtestin9c1e","name":"eventgridtestin9c1e","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-30T22:57:11.1008680Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-30T22:57:11.1008680Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-30T22:57:10.9915110Z","primaryEndpoints":{"blob":"https://eventgridtestin9c1e.blob.core.windows.net/","queue":"https://eventgridtestin9c1e.queue.core.windows.net/","table":"https://eventgridtestin9c1e.table.core.windows.net/","file":"https://eventgridtestin9c1e.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-testcapture/providers/Microsoft.Storage/storageAccounts/lmazueltestcapture451","name":"lmazueltestcapture451","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-06T16:46:02.5308824Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-06T16:46:02.5308824Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-06T16:46:02.4527298Z","primaryEndpoints":{"blob":"https://lmazueltestcapture451.blob.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"dfs":"https://wilxstorage0.dfs.core.windows.net/","web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguls4pvt2vfixca74vtdlg2wzaos77fo6h7us6bkztrwd4yxg7ittubedcfi7bvrjg/providers/Microsoft.Storage/storageAccounts/account233k7lftb3wifqfop","name":"account233k7lftb3wifqfop","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:12.6309469Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:12.6309469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:12.5840228Z","primaryEndpoints":{"dfs":"https://account233k7lftb3wifqfop.dfs.core.windows.net/","web":"https://account233k7lftb3wifqfop.z4.web.core.windows.net/","blob":"https://account233k7lftb3wifqfop.blob.core.windows.net/","queue":"https://account233k7lftb3wifqfop.queue.core.windows.net/","table":"https://account233k7lftb3wifqfop.table.core.windows.net/","file":"https://account233k7lftb3wifqfop.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://account233k7lftb3wifqfop-secondary.dfs.core.windows.net/","web":"https://account233k7lftb3wifqfop-secondary.z4.web.core.windows.net/","blob":"https://account233k7lftb3wifqfop-secondary.blob.core.windows.net/","queue":"https://account233k7lftb3wifqfop-secondary.queue.core.windows.net/","table":"https://account233k7lftb3wifqfop-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxremove/providers/Microsoft.Storage/storageAccounts/wilxrem","name":"wilxrem","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:29:21.4353414Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:29:21.4353414Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-03T23:29:21.4040921Z","primaryEndpoints":{"dfs":"https://wilxrem.dfs.core.windows.net/","web":"https://wilxrem.z4.web.core.windows.net/","blob":"https://wilxrem.blob.core.windows.net/","queue":"https://wilxrem.queue.core.windows.net/","table":"https://wilxrem.table.core.windows.net/","file":"https://wilxrem.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://wilxrem-secondary.dfs.core.windows.net/","web":"https://wilxrem-secondary.z4.web.core.windows.net/","blob":"https://wilxrem-secondary.blob.core.windows.net/","queue":"https://wilxrem-secondary.queue.core.windows.net/","table":"https://wilxrem-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"web":"https://wilxstorageworm.z3.web.core.windows.net/","blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstorageworm-secondary.z3.web.core.windows.net/","blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzhnckmw5ftoqmm2b5gezwgslvfm2dqg7ldpwvuukicy7ca4unquohsptfrbddr2a/providers/Microsoft.Storage/storageAccounts/clitestvjlqxa4ctzkwwpg4b","name":"clitestvjlqxa4ctzkwwpg4b","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.5165939Z","primaryEndpoints":{"blob":"https://clitestvjlqxa4ctzkwwpg4b.blob.core.windows.net/","queue":"https://clitestvjlqxa4ctzkwwpg4b.queue.core.windows.net/","table":"https://clitestvjlqxa4ctzkwwpg4b.table.core.windows.net/","file":"https://clitestvjlqxa4ctzkwwpg4b.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv6extdlzddtno2qf5o37e5g2n2d2x5ah4gq2olmpqezmxibj4h36focak4y6dose7/providers/Microsoft.Storage/storageAccounts/clitestcushmpfbtkste2a2a","name":"clitestcushmpfbtkste2a2a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:20:25.0780033Z","primaryEndpoints":{"blob":"https://clitestcushmpfbtkste2a2a.blob.core.windows.net/","queue":"https://clitestcushmpfbtkste2a2a.queue.core.windows.net/","table":"https://clitestcushmpfbtkste2a2a.table.core.windows.net/","file":"https://clitestcushmpfbtkste2a2a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6xf4idvnxclgamrcp2ezv54qhk3doyffriwiegbm7ouxjbfmd2cj7izni3bhdv4wf/providers/Microsoft.Storage/storageAccounts/clitestoj23vdhimampujgji","name":"clitestoj23vdhimampujgji","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:09:49.3684695Z","primaryEndpoints":{"blob":"https://clitestoj23vdhimampujgji.blob.core.windows.net/","queue":"https://clitestoj23vdhimampujgji.queue.core.windows.net/","table":"https://clitestoj23vdhimampujgji.table.core.windows.net/","file":"https://clitestoj23vdhimampujgji.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfhep77mmcmcn3afvnvskjk3g27ybc7gq6kh5c6vu7ugy7e3ykawkib6u7st25kbi/providers/Microsoft.Storage/storageAccounts/clitest5o5upfigqe5aenkc3","name":"clitest5o5upfigqe5aenkc3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:22:12.4388487Z","primaryEndpoints":{"blob":"https://clitest5o5upfigqe5aenkc3.blob.core.windows.net/","queue":"https://clitest5o5upfigqe5aenkc3.queue.core.windows.net/","table":"https://clitest5o5upfigqe5aenkc3.table.core.windows.net/","file":"https://clitest5o5upfigqe5aenkc3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} - headers: - cache-control: [no-cache] - content-length: ['52820'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 03 Oct 2018 23:53:31 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: [b10176d6-da28-452f-9e1e-7199adbf9166, d48b4d66-d47c-4594-b263-a2361127065a, - 489a1436-5f42-4af6-ad51-e5e12ec1f8d8, 8d24199f-787d-4ed0-b998-af88faea9cc6, - 2adc9d44-7cfa-4b99-adbf-bec62b67d9c8, c22a7ee6-b559-4d38-9288-1ee8d35e4241, - fc392903-6a47-4ddc-af17-6022fba08c5a] - status: {code: 200, message: OK} + body: + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/afdavd","name":"afdavd","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"tag1":"zuh"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-28T06:33:43.0429887Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-28T06:33:43.0429887Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-28T06:33:42.9961348Z","primaryEndpoints":{"dfs":"https://afdavd.dfs.core.windows.net/","web":"https://afdavd.z13.web.core.windows.net/","blob":"https://afdavd.blob.core.windows.net/","queue":"https://afdavd.queue.core.windows.net/","table":"https://afdavd.table.core.windows.net/","file":"https://afdavd.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://afdavd-secondary.dfs.core.windows.net/","web":"https://afdavd-secondary.z13.web.core.windows.net/","blob":"https://afdavd-secondary.blob.core.windows.net/","queue":"https://afdavd-secondary.queue.core.windows.net/","table":"https://afdavd-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/ttttttt","name":"ttttttt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-28T06:29:02.5993637Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-28T06:29:02.5993637Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-28T06:29:02.5525396Z","primaryEndpoints":{"dfs":"https://ttttttt.dfs.core.windows.net/","web":"https://ttttttt.z13.web.core.windows.net/","blob":"https://ttttttt.blob.core.windows.net/","queue":"https://ttttttt.queue.core.windows.net/","table":"https://ttttttt.table.core.windows.net/","file":"https://ttttttt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ttttttt-secondary.dfs.core.windows.net/","web":"https://ttttttt-secondary.z13.web.core.windows.net/","blob":"https://ttttttt-secondary.blob.core.windows.net/","queue":"https://ttttttt-secondary.queue.core.windows.net/","table":"https://ttttttt-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhclistoarge","name":"zuhclistoarge","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-25T09:00:47.7047629Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-25T09:00:47.7047629Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-25T09:00:47.6265845Z","primaryEndpoints":{"dfs":"https://zuhclistoarge.dfs.core.windows.net/","web":"https://zuhclistoarge.z13.web.core.windows.net/","blob":"https://zuhclistoarge.blob.core.windows.net/","queue":"https://zuhclistoarge.queue.core.windows.net/","table":"https://zuhclistoarge.table.core.windows.net/","file":"https://zuhclistoarge.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhclistoarge-secondary.dfs.core.windows.net/","web":"https://zuhclistoarge-secondary.z13.web.core.windows.net/","blob":"https://zuhclistoarge-secondary.blob.core.windows.net/","queue":"https://zuhclistoarge-secondary.queue.core.windows.net/","table":"https://zuhclistoarge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhdiag","name":"zuhdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-05T03:18:20.4126854Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-05T03:18:20.4126854Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-05T03:18:20.3345713Z","primaryEndpoints":{"blob":"https://zuhdiag.blob.core.windows.net/","queue":"https://zuhdiag.queue.core.windows.net/","table":"https://zuhdiag.table.core.windows.net/","file":"https://zuhdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstorageeastus","name":"zuhstorageeastus","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/storagerule/subnets/default","action":"Allow","state":"Succeeded"}],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-22T15:21:02.7577816Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-22T15:21:02.7577816Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-22T15:21:02.6952562Z","primaryEndpoints":{"dfs":"https://zuhstorageeastus.dfs.core.windows.net/","web":"https://zuhstorageeastus.z13.web.core.windows.net/","blob":"https://zuhstorageeastus.blob.core.windows.net/","queue":"https://zuhstorageeastus.queue.core.windows.net/","table":"https://zuhstorageeastus.table.core.windows.net/","file":"https://zuhstorageeastus.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhstorageeastus-secondary.dfs.core.windows.net/","web":"https://zuhstorageeastus-secondary.z13.web.core.windows.net/","blob":"https://zuhstorageeastus-secondary.blob.core.windows.net/","queue":"https://zuhstorageeastus-secondary.queue.core.windows.net/","table":"https://zuhstorageeastus-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetest2","name":"zuhstoragetest2","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-09T03:07:48.4130141Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-09T03:07:48.4130141Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-09T03:07:48.3348347Z","primaryEndpoints":{"dfs":"https://zuhstoragetest2.dfs.core.windows.net/","web":"https://zuhstoragetest2.z13.web.core.windows.net/","blob":"https://zuhstoragetest2.blob.core.windows.net/","queue":"https://zuhstoragetest2.queue.core.windows.net/","table":"https://zuhstoragetest2.table.core.windows.net/","file":"https://zuhstoragetest2.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhstoragetest2-secondary.dfs.core.windows.net/","web":"https://zuhstoragetest2-secondary.z13.web.core.windows.net/","blob":"https://zuhstoragetest2-secondary.blob.core.windows.net/","queue":"https://zuhstoragetest2-secondary.queue.core.windows.net/","table":"https://zuhstoragetest2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlst2","name":"jlst2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-30T02:17:20.3072327Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-30T02:17:20.3072327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-30T02:17:20.2447612Z","primaryEndpoints":{"blob":"https://jlst2.blob.core.windows.net/","queue":"https://jlst2.queue.core.windows.net/","table":"https://jlst2.table.core.windows.net/","file":"https://jlst2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlst3","name":"jlst3","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-30T02:20:15.0744778Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-30T02:20:15.0744778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-30T02:20:15.0276687Z","primaryEndpoints":{"blob":"https://jlst3.blob.core.windows.net/","queue":"https://jlst3.queue.core.windows.net/","table":"https://jlst3.table.core.windows.net/","file":"https://jlst3.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.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.rgzzbngtpx6allrms53ctz7ase4ssdvzlqlvhcrw7nhyk73hil4w4xno7x3zsf5gtfx/providers/Microsoft.Storage/storageAccounts/clitestana7lc5pf7gntz5jq","name":"clitestana7lc5pf7gntz5jq","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.6013238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.6013238Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.5232751Z","primaryEndpoints":{"blob":"https://clitestana7lc5pf7gntz5jq.blob.core.windows.net/","queue":"https://clitestana7lc5pf7gntz5jq.queue.core.windows.net/","table":"https://clitestana7lc5pf7gntz5jq.table.core.windows.net/","file":"https://clitestana7lc5pf7gntz5jq.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.rgneijckznnsopq5ia2oaurmb7ineqdng3jg2imyrmflhruybo7bc5x7xlc3aytqa5x/providers/Microsoft.Storage/storageAccounts/clitestdkasueppjmgbgoekv","name":"clitestdkasueppjmgbgoekv","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:57.5544747Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:57.5544747Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:57.4919967Z","primaryEndpoints":{"blob":"https://clitestdkasueppjmgbgoekv.blob.core.windows.net/","queue":"https://clitestdkasueppjmgbgoekv.queue.core.windows.net/","table":"https://clitestdkasueppjmgbgoekv.table.core.windows.net/","file":"https://clitestdkasueppjmgbgoekv.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs40b1f64711bf0x4ddaxaec","name":"cs40b1f64711bf0x4ddaxaec","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-28T12:13:38.1677790Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-28T12:13:38.1677790Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-28T12:13:38.1208852Z","primaryEndpoints":{"dfs":"https://cs40b1f64711bf0x4ddaxaec.dfs.core.windows.net/","web":"https://cs40b1f64711bf0x4ddaxaec.z22.web.core.windows.net/","blob":"https://cs40b1f64711bf0x4ddaxaec.blob.core.windows.net/","queue":"https://cs40b1f64711bf0x4ddaxaec.queue.core.windows.net/","table":"https://cs40b1f64711bf0x4ddaxaec.table.core.windows.net/","file":"https://cs40b1f64711bf0x4ddaxaec.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fozippy98/providers/Microsoft.Storage/storageAccounts/foozip7898","name":"foozip7898","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-03T05:27:54.8015489Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-03T05:27:54.8015489Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-03T05:27:54.7234181Z","primaryEndpoints":{"blob":"https://foozip7898.blob.core.windows.net/","queue":"https://foozip7898.queue.core.windows.net/","table":"https://foozip7898.table.core.windows.net/","file":"https://foozip7898.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fozippy98/providers/Microsoft.Storage/storageAccounts/foozip7899","name":"foozip7899","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-03T06:20:15.7083543Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-03T06:20:15.7083543Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-03T06:20:15.6614614Z","primaryEndpoints":{"blob":"https://foozip7899.blob.core.windows.net/","queue":"https://foozip7899.queue.core.windows.net/","table":"https://foozip7899.table.core.windows.net/","file":"https://foozip7899.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fozippy98/providers/Microsoft.Storage/storageAccounts/foozip7900","name":"foozip7900","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-03T06:21:45.0426725Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-03T06:21:45.0426725Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-03T06:21:44.9645423Z","primaryEndpoints":{"dfs":"https://foozip7900.dfs.core.windows.net/","web":"https://foozip7900.z22.web.core.windows.net/","blob":"https://foozip7900.blob.core.windows.net/","queue":"https://foozip7900.queue.core.windows.net/","table":"https://foozip7900.table.core.windows.net/","file":"https://foozip7900.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fozippy98/providers/Microsoft.Storage/storageAccounts/foozip7901","name":"foozip7901","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-03T06:31:10.7771905Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-03T06:31:10.7771905Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-03T06:31:10.7303381Z","primaryEndpoints":{"dfs":"https://foozip7901.dfs.core.windows.net/","web":"https://foozip7901.z22.web.core.windows.net/","blob":"https://foozip7901.blob.core.windows.net/","queue":"https://foozip7901.queue.core.windows.net/","table":"https://foozip7901.table.core.windows.net/","file":"https://foozip7901.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-rsg-01/providers/Microsoft.Storage/storageAccounts/haroldrsg01diag","name":"haroldrsg01diag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T03:31:12.0528768Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T03:31:12.0528768Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T03:31:11.9904088Z","primaryEndpoints":{"blob":"https://haroldrsg01diag.blob.core.windows.net/","queue":"https://haroldrsg01diag.queue.core.windows.net/","table":"https://haroldrsg01diag.table.core.windows.net/","file":"https://haroldrsg01diag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mc01zip99/providers/Microsoft.Storage/storageAccounts/mc01zip99","name":"mc01zip99","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-04T06:06:04.4529342Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-04T06:06:04.4529342Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-04T06:06:04.3904163Z","primaryEndpoints":{"blob":"https://mc01zip99.blob.core.windows.net/","queue":"https://mc01zip99.queue.core.windows.net/","table":"https://mc01zip99.table.core.windows.net/","file":"https://mc01zip99.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/mystorageaccount73","name":"mystorageaccount73","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-20T08:30:54.4729370Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-20T08:30:54.4729370Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-20T08:30:54.4104579Z","primaryEndpoints":{"dfs":"https://mystorageaccount73.dfs.core.windows.net/","web":"https://mystorageaccount73.z22.web.core.windows.net/","blob":"https://mystorageaccount73.blob.core.windows.net/","queue":"https://mystorageaccount73.queue.core.windows.net/","table":"https://mystorageaccount73.table.core.windows.net/","file":"https://mystorageaccount73.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://mystorageaccount73-secondary.dfs.core.windows.net/","web":"https://mystorageaccount73-secondary.z22.web.core.windows.net/","blob":"https://mystorageaccount73-secondary.blob.core.windows.net/","queue":"https://mystorageaccount73-secondary.queue.core.windows.net/","table":"https://mystorageaccount73-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-sample-compute-group/providers/Microsoft.Storage/storageAccounts/rubystor786","name":"rubystor786","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T07:46:26.2234373Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T07:46:26.2234373Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T07:46:26.1452662Z","primaryEndpoints":{"blob":"https://rubystor786.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/sfhyurag","name":"sfhyurag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T01:42:41.7138283Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T01:42:41.7138283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T01:42:41.6357235Z","primaryEndpoints":{"dfs":"https://sfhyurag.dfs.core.windows.net/","web":"https://sfhyurag.z22.web.core.windows.net/","blob":"https://sfhyurag.blob.core.windows.net/","queue":"https://sfhyurag.queue.core.windows.net/","table":"https://sfhyurag.table.core.windows.net/","file":"https://sfhyurag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/testfeng1234","name":"testfeng1234","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T05:27:33.5945121Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T05:27:33.5945121Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T05:27:33.5163754Z","primaryEndpoints":{"web":"https://testfeng1234.z22.web.core.windows.net/","blob":"https://testfeng1234.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/testfeng12345","name":"testfeng12345","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T07:08:47.1462943Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T07:08:47.1462943Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T07:08:47.0681900Z","primaryEndpoints":{"web":"https://testfeng12345.z22.web.core.windows.net/","blob":"https://testfeng12345.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/testfeng1235","name":"testfeng1235","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T05:32:42.3254496Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T05:32:42.3254496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T05:32:42.2473334Z","primaryEndpoints":{"web":"https://testfeng1235.z22.web.core.windows.net/","blob":"https://testfeng1235.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/testfeng1237","name":"testfeng1237","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T06:49:32.8827257Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T06:49:32.8827257Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T06:49:32.8045771Z","primaryEndpoints":{"web":"https://testfeng1237.z22.web.core.windows.net/","blob":"https://testfeng1237.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/testfeng1238","name":"testfeng1238","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T06:50:25.3529839Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T06:50:25.3529839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T06:50:25.2748594Z","primaryEndpoints":{"web":"https://testfeng1238.z22.web.core.windows.net/","blob":"https://testfeng1238.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/testfeng1239","name":"testfeng1239","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T06:51:37.8239782Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T06:51:37.8239782Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T06:51:37.7458852Z","primaryEndpoints":{"web":"https://testfeng1239.z22.web.core.windows.net/","blob":"https://testfeng1239.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/testfeng1240","name":"testfeng1240","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T07:04:01.3298608Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T07:04:01.3298608Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T07:04:01.2517546Z","primaryEndpoints":{"web":"https://testfeng1240.z22.web.core.windows.net/","blob":"https://testfeng1240.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/testlargefile","name":"testlargefile","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T08:42:51.9857778Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T08:42:51.9857778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T08:42:51.9076430Z","primaryEndpoints":{"blob":"https://testlargefile.blob.core.windows.net/","queue":"https://testlargefile.queue.core.windows.net/","table":"https://testlargefile.table.core.windows.net/","file":"https://testlargefile.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/teststoragesku","name":"teststoragesku","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-27T05:58:19.6035321Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-27T05:58:19.6035321Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-27T05:58:19.5410291Z","primaryEndpoints":{"blob":"https://teststoragesku.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/image-copy-rg/providers/Microsoft.Storage/storageAccounts/westusb1y76k5z258svs3hih","name":"westusb1y76k5z258svs3hih","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"created_by":"image-copy-extension"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-09T03:36:15.4861865Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-09T03:36:15.4861865Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-09T03:36:15.4393350Z","primaryEndpoints":{"blob":"https://westusb1y76k5z258svs3hih.blob.core.windows.net/","queue":"https://westusb1y76k5z258svs3hih.queue.core.windows.net/","table":"https://westusb1y76k5z258svs3hih.table.core.windows.net/","file":"https://westusb1y76k5z258svs3hih.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zimsstuff/providers/Microsoft.Storage/storageAccounts/zimsstuffdiag","name":"zimsstuffdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-22T00:52:09.9722338Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-22T00:52:09.9722338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-22T00:52:09.9097076Z","primaryEndpoints":{"blob":"https://zimsstuffdiag.blob.core.windows.net/","queue":"https://zimsstuffdiag.queue.core.windows.net/","table":"https://zimsstuffdiag.table.core.windows.net/","file":"https://zimsstuffdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetest3","name":"zuhstoragetest3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh2/providers/Microsoft.Network/virtualNetworks/zuhtest/subnets/testsubnet","action":"Allow","state":"Succeeded"}],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-26T05:22:47.9972735Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-26T05:22:47.9972735Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-26T05:22:47.9191787Z","primaryEndpoints":{"dfs":"https://zuhstoragetest3.dfs.core.windows.net/","web":"https://zuhstoragetest3.z22.web.core.windows.net/","blob":"https://zuhstoragetest3.blob.core.windows.net/","queue":"https://zuhstoragetest3.queue.core.windows.net/","table":"https://zuhstoragetest3.table.core.windows.net/","file":"https://zuhstoragetest3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhstoragetest3-secondary.dfs.core.windows.net/","web":"https://zuhstoragetest3-secondary.z22.web.core.windows.net/","blob":"https://zuhstoragetest3-secondary.blob.core.windows.net/","queue":"https://zuhstoragetest3-secondary.queue.core.windows.net/","table":"https://zuhstoragetest3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetest5","name":"zuhstoragetest5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T08:59:58.3156766Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T08:59:58.3156766Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T08:59:58.2531793Z","primaryEndpoints":{"blob":"https://zuhstoragetest5.blob.core.windows.net/","queue":"https://zuhstoragetest5.queue.core.windows.net/","table":"https://zuhstoragetest5.table.core.windows.net/","file":"https://zuhstoragetest5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetest6","name":"zuhstoragetest6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-09T09:02:28.5796834Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-09T09:02:28.5796834Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-09T09:02:28.5015767Z","primaryEndpoints":{"blob":"https://zuhstoragetest6.blob.core.windows.net/","queue":"https://zuhstoragetest6.queue.core.windows.net/","table":"https://zuhstoragetest6.table.core.windows.net/","file":"https://zuhstoragetest6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetesttest34","name":"zuhstoragetesttest34","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T15:20:24.3308839Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T15:20:24.3308839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T15:20:24.2528016Z","primaryEndpoints":{"blob":"https://zuhstoragetesttest34.blob.core.windows.net/","queue":"https://zuhstoragetesttest34.queue.core.windows.net/","table":"https://zuhstoragetesttest34.table.core.windows.net/","file":"https://zuhstoragetesttest34.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhstoragetesttest34-secondary.blob.core.windows.net/","queue":"https://zuhstoragetesttest34-secondary.queue.core.windows.net/","table":"https://zuhstoragetesttest34-secondary.table.core.windows.net/"}}},{"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":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-28T05:08:44.7225098Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-28T05:08:44.7225098Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-08-28T05:08:44.6756089Z","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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Storage/storageAccounts/fengtestdiag","name":"fengtestdiag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-11T07:11:23.2854367Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-11T07:11:23.2854367Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-11T07:11:23.2541899Z","primaryEndpoints":{"blob":"https://fengtestdiag.blob.core.windows.net/","queue":"https://fengtestdiag.queue.core.windows.net/","table":"https://fengtestdiag.table.core.windows.net/","file":"https://fengtestdiag.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/jlst","name":"jlst","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-02T02:12:35.8666234Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-02T02:12:35.8666234Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-02T02:12:35.8041120Z","primaryEndpoints":{"dfs":"https://jlst.dfs.core.windows.net/","web":"https://jlst.z23.web.core.windows.net/","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"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlst4","name":"jlst4","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T01:48:32.4314788Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T01:48:32.4314788Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-16T01:48:32.3689985Z","primaryEndpoints":{"blob":"https://jlst4.blob.core.windows.net/","queue":"https://jlst4.queue.core.windows.net/","table":"https://jlst4.table.core.windows.net/","file":"https://jlst4.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://jlst4-secondary.blob.core.windows.net/","queue":"https://jlst4-secondary.queue.core.windows.net/","table":"https://jlst4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhdiag262","name":"zuhdiag262","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-10T07:06:30.1983509Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-10T07:06:30.1983509Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-10T07:06:30.1358641Z","primaryEndpoints":{"blob":"https://zuhdiag262.blob.core.windows.net/","queue":"https://zuhdiag262.queue.core.windows.net/","table":"https://zuhdiag262.table.core.windows.net/","file":"https://zuhdiag262.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"identity":{"principalId":"1486e5d6-a0d3-4411-8703-127bf0b859e8","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgen4446li7u6sz6i3ifgwqs2iucjcu2t4tr32pgzlx3ko65dduzk3nkib2rlm6xb5o/providers/Microsoft.Storage/storageAccounts/cliczi2k3riqnpu55moat4kh","name":"cliczi2k3riqnpu55moat4kh","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:02.5622104Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:02.5622104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:02.5153133Z","primaryEndpoints":{"blob":"https://cliczi2k3riqnpu55moat4kh.blob.core.windows.net/","queue":"https://cliczi2k3riqnpu55moat4kh.queue.core.windows.net/","table":"https://cliczi2k3riqnpu55moat4kh.table.core.windows.net/","file":"https://cliczi2k3riqnpu55moat4kh.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/safvrd","name":"safvrd","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-14T01:19:43.3900125Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-14T01:19:43.3900125Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-14T01:19:43.2962916Z","primaryEndpoints":{"blob":"https://safvrd.blob.core.windows.net/","queue":"https://safvrd.queue.core.windows.net/","table":"https://safvrd.table.core.windows.net/","file":"https://safvrd.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://safvrd-secondary.blob.core.windows.net/","queue":"https://safvrd-secondary.queue.core.windows.net/","table":"https://safvrd-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/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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":{"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/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/testasfcac","name":"testasfcac","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-03T08:57:20.8454033Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-03T08:57:20.8454033Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-03T08:57:20.7517141Z","primaryEndpoints":{"blob":"https://testasfcac.blob.core.windows.net/","queue":"https://testasfcac.queue.core.windows.net/","table":"https://testasfcac.table.core.windows.net/","file":"https://testasfcac.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://testasfcac-secondary.blob.core.windows.net/","queue":"https://testasfcac-secondary.queue.core.windows.net/","table":"https://testasfcac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/testfrtfctia","name":"testfrtfctia","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-08T01:06:08.1736863Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-08T01:06:08.1736863Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-08T01:06:08.0799343Z","primaryEndpoints":{"web":"https://testfrtfctia.z19.web.core.windows.net/","blob":"https://testfrtfctia.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bin_test/providers/Microsoft.Storage/storageAccounts/teststorage1022","name":"teststorage1022","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-22T02:04:49.9642286Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-22T02:04:49.9642286Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-22T02:04:49.8704779Z","primaryEndpoints":{"dfs":"https://teststorage1022.dfs.core.windows.net/","web":"https://teststorage1022.z19.web.core.windows.net/","blob":"https://teststorage1022.blob.core.windows.net/","queue":"https://teststorage1022.queue.core.windows.net/","table":"https://teststorage1022.table.core.windows.net/","file":"https://teststorage1022.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://teststorage1022-secondary.dfs.core.windows.net/","web":"https://teststorage1022-secondary.z19.web.core.windows.net/","blob":"https://teststorage1022-secondary.blob.core.windows.net/","queue":"https://teststorage1022-secondary.queue.core.windows.net/","table":"https://teststorage1022-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/vfygciav","name":"vfygciav","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-12T07:13:49.1334952Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-12T07:13:49.1334952Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-12T07:13:49.0084623Z","primaryEndpoints":{"web":"https://vfygciav.z19.web.core.windows.net/","blob":"https://vfygciav.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/vfygcivrav","name":"vfygcivrav","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-12T07:21:34.6134691Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-12T07:21:34.6134691Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-12T07:21:34.5197185Z","primaryEndpoints":{"web":"https://vfygcivrav.z19.web.core.windows.net/","blob":"https://vfygcivrav.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"identity":{"principalId":"c26d52f8-2960-40e5-8763-204fb953481d","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/vfyggstcivrabfdsntvdsgb","name":"vfyggstcivrabfdsntvdsgb","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-12T07:59:45.1072772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-12T07:59:45.1072772Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-12T07:59:45.0291498Z","primaryEndpoints":{"blob":"https://vfyggstcivrabfdsntvdsgb.blob.core.windows.net/","queue":"https://vfyggstcivrabfdsntvdsgb.queue.core.windows.net/","table":"https://vfyggstcivrabfdsntvdsgb.table.core.windows.net/","file":"https://vfyggstcivrabfdsntvdsgb.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://vfyggstcivrabfdsntvdsgb-secondary.blob.core.windows.net/","queue":"https://vfyggstcivrabfdsntvdsgb-secondary.queue.core.windows.net/","table":"https://vfyggstcivrabfdsntvdsgb-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/vfyggstcivrabfdsntvmh","name":"vfyggstcivrabfdsntvmh","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-12T07:56:45.0066228Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-12T07:56:45.0066228Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-12T07:56:44.9128897Z","primaryEndpoints":{"blob":"https://vfyggstcivrabfdsntvmh.blob.core.windows.net/","queue":"https://vfyggstcivrabfdsntvmh.queue.core.windows.net/","table":"https://vfyggstcivrabfdsntvmh.table.core.windows.net/","file":"https://vfyggstcivrabfdsntvmh.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://vfyggstcivrabfdsntvmh-secondary.blob.core.windows.net/","queue":"https://vfyggstcivrabfdsntvmh-secondary.queue.core.windows.net/","table":"https://vfyggstcivrabfdsntvmh-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/vfyggstcivrasntv","name":"vfyggstcivrasntv","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-12T07:38:05.7921749Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-12T07:38:05.7921749Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-12T07:38:05.7296834Z","primaryEndpoints":{"web":"https://vfyggstcivrasntv.z19.web.core.windows.net/","blob":"https://vfyggstcivrasntv.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/vfyggstcivrasntvmh","name":"vfyggstcivrasntvmh","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-12T07:55:38.2846926Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-12T07:55:38.2846926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-12T07:55:38.1909265Z","primaryEndpoints":{"blob":"https://vfyggstcivrasntvmh.blob.core.windows.net/","queue":"https://vfyggstcivrasntvmh.queue.core.windows.net/","table":"https://vfyggstcivrasntvmh.table.core.windows.net/","file":"https://vfyggstcivrasntvmh.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://vfyggstcivrasntvmh-secondary.blob.core.windows.net/","queue":"https://vfyggstcivrasntvmh-secondary.queue.core.windows.net/","table":"https://vfyggstcivrasntvmh-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/vfyggstcivrav","name":"vfyggstcivrav","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-12T07:35:24.9704826Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-12T07:35:24.9704826Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-12T07:35:24.8923734Z","primaryEndpoints":{"web":"https://vfyggstcivrav.z19.web.core.windows.net/","blob":"https://vfyggstcivrav.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/ygciav","name":"ygciav","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-12T07:12:41.8305812Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-12T07:12:41.8305812Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-12T07:12:41.7680289Z","primaryEndpoints":{"web":"https://ygciav.z19.web.core.windows.net/","blob":"https://ygciav.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/yongtest123","name":"yongtest123","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-28T09:03:38.9695991Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-28T09:03:38.9695991Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-28T09:03:38.8763349Z","primaryEndpoints":{"dfs":"https://yongtest123.dfs.core.windows.net/","web":"https://yongtest123.z19.web.core.windows.net/","blob":"https://yongtest123.blob.core.windows.net/","queue":"https://yongtest123.queue.core.windows.net/","table":"https://yongtest123.table.core.windows.net/","file":"https://yongtest123.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yongtest123-secondary.dfs.core.windows.net/","web":"https://yongtest123-secondary.z19.web.core.windows.net/","blob":"https://yongtest123-secondary.blob.core.windows.net/","queue":"https://yongtest123-secondary.queue.core.windows.net/","table":"https://yongtest123-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhadls2","name":"zuhadls2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-21T11:20:28.6756138Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-21T11:20:28.6756138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-21T11:20:28.5818652Z","primaryEndpoints":{"dfs":"https://zuhadls2.dfs.core.windows.net/","web":"https://zuhadls2.z19.web.core.windows.net/","blob":"https://zuhadls2.blob.core.windows.net/","queue":"https://zuhadls2.queue.core.windows.net/","table":"https://zuhadls2.table.core.windows.net/","file":"https://zuhadls2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zuhadls2-secondary.dfs.core.windows.net/","web":"https://zuhadls2-secondary.z19.web.core.windows.net/","blob":"https://zuhadls2-secondary.blob.core.windows.net/","queue":"https://zuhadls2-secondary.queue.core.windows.net/","table":"https://zuhadls2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhpremium","name":"zuhpremium","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-25T01:21:42.7421754Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-25T01:21:42.7421754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-25T01:21:42.6952807Z","primaryEndpoints":{"web":"https://zuhpremium.z19.web.core.windows.net/","blob":"https://zuhpremium.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"identity":{"principalId":"d4245c27-6059-44d1-8340-1fcfd62e634f","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetest1","name":"zuhstoragetest1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[{"value":"112.64.71.69","action":"Allow"}],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-05T07:40:19.3472335Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-05T07:40:19.3472335Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-05T07:40:19.2221362Z","primaryEndpoints":{"blob":"https://zuhstoragetest1.blob.core.windows.net/","queue":"https://zuhstoragetest1.queue.core.windows.net/","table":"https://zuhstoragetest1.table.core.windows.net/","file":"https://zuhstoragetest1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetest4","name":"zuhstoragetest4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-24T02:59:53.3596151Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-24T02:59:53.3596151Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-24T02:59:53.2815086Z","primaryEndpoints":{"blob":"https://zuhstoragetest4.blob.core.windows.net/","queue":"https://zuhstoragetest4.queue.core.windows.net/","table":"https://zuhstoragetest4.table.core.windows.net/","file":"https://zuhstoragetest4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhstoragetest4-secondary.blob.core.windows.net/","queue":"https://zuhstoragetest4-secondary.queue.core.windows.net/","table":"https://zuhstoragetest4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetestagisn","name":"zuhstoragetestagisn","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-04T05:56:48.1333524Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-04T05:56:48.1333524Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-04T05:56:48.0395970Z","primaryEndpoints":{"blob":"https://zuhstoragetestagisn.blob.core.windows.net/","queue":"https://zuhstoragetestagisn.queue.core.windows.net/","table":"https://zuhstoragetestagisn.table.core.windows.net/","file":"https://zuhstoragetestagisn.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhstoragetestagisn-secondary.blob.core.windows.net/","queue":"https://zuhstoragetestagisn-secondary.queue.core.windows.net/","table":"https://zuhstoragetestagisn-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetesttest3","name":"zuhstoragetesttest3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T15:18:52.7545393Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T15:18:52.7545393Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T15:18:52.6771976Z","primaryEndpoints":{"blob":"https://zuhstoragetesttest3.blob.core.windows.net/","queue":"https://zuhstoragetesttest3.queue.core.windows.net/","table":"https://zuhstoragetesttest3.table.core.windows.net/","file":"https://zuhstoragetesttest3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhstoragetesttest3-secondary.blob.core.windows.net/","queue":"https://zuhstoragetesttest3-secondary.queue.core.windows.net/","table":"https://zuhstoragetesttest3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtest123","name":"zuhtest123","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-30T02:49:05.0564700Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-30T02:49:05.0564700Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-30T02:49:04.9627323Z","primaryEndpoints":{"blob":"https://zuhtest123.blob.core.windows.net/","queue":"https://zuhtest123.queue.core.windows.net/","table":"https://zuhtest123.table.core.windows.net/","file":"https://zuhtest123.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhtest123-secondary.blob.core.windows.net/","queue":"https://zuhtest123-secondary.queue.core.windows.net/","table":"https://zuhtest123-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaktkss2izg7bwirexrs5f5dcuds6awdwgl34hm6lvfft6redsq3ummc6zvjg3oukg/providers/Microsoft.Storage/storageAccounts/cliuuxxq7auimiulyku7ljhd","name":"cliuuxxq7auimiulyku7ljhd","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:59.2406430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:59.2406430Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:59.1780980Z","primaryEndpoints":{"dfs":"https://cliuuxxq7auimiulyku7ljhd.dfs.core.windows.net/","web":"https://cliuuxxq7auimiulyku7ljhd.z16.web.core.windows.net/","blob":"https://cliuuxxq7auimiulyku7ljhd.blob.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6k5g6qvzha6sbmgq643vqggpclg4uxkpyltuy2ra2vww5d4akwks7tjfewsdnbein/providers/Microsoft.Storage/storageAccounts/clirlzcnbgkienk4u2nndghq","name":"clirlzcnbgkienk4u2nndghq","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:58.4470723Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:58.4470723Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:58.4157922Z","primaryEndpoints":{"dfs":"https://clirlzcnbgkienk4u2nndghq.dfs.core.windows.net/","web":"https://clirlzcnbgkienk4u2nndghq.z5.web.core.windows.net/","blob":"https://clirlzcnbgkienk4u2nndghq.blob.core.windows.net/","queue":"https://clirlzcnbgkienk4u2nndghq.queue.core.windows.net/","table":"https://clirlzcnbgkienk4u2nndghq.table.core.windows.net/","file":"https://clirlzcnbgkienk4u2nndghq.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clirlzcnbgkienk4u2nndghq-secondary.dfs.core.windows.net/","web":"https://clirlzcnbgkienk4u2nndghq-secondary.z5.web.core.windows.net/","blob":"https://clirlzcnbgkienk4u2nndghq-secondary.blob.core.windows.net/","queue":"https://clirlzcnbgkienk4u2nndghq-secondary.queue.core.windows.net/","table":"https://clirlzcnbgkienk4u2nndghq-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragetesttest","name":"zuhstoragetesttest","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T15:17:55.4772066Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T15:17:55.4772066Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T15:17:55.4147051Z","primaryEndpoints":{"blob":"https://zuhstoragetesttest.blob.core.windows.net/","queue":"https://zuhstoragetesttest.queue.core.windows.net/","table":"https://zuhstoragetesttest.table.core.windows.net/","file":"https://zuhstoragetesttest.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhstoragetesttest-secondary.blob.core.windows.net/","queue":"https://zuhstoragetesttest-secondary.queue.core.windows.net/","table":"https://zuhstoragetesttest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglug4y67d6j2z2mqs3ygozsk2kbhieu7xsm355ynnepfimxx2i57rnaap5pjrbc3re/providers/Microsoft.Storage/storageAccounts/cliq66t7vvpyc6ivqazcqi3p","name":"cliq66t7vvpyc6ivqazcqi3p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:00.9380077Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:00.9380077Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:00.8911525Z","primaryEndpoints":{"dfs":"https://cliq66t7vvpyc6ivqazcqi3p.dfs.core.windows.net/","web":"https://cliq66t7vvpyc6ivqazcqi3p.z3.web.core.windows.net/","blob":"https://cliq66t7vvpyc6ivqazcqi3p.blob.core.windows.net/","queue":"https://cliq66t7vvpyc6ivqazcqi3p.queue.core.windows.net/","table":"https://cliq66t7vvpyc6ivqazcqi3p.table.core.windows.net/","file":"https://cliq66t7vvpyc6ivqazcqi3p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://cliq66t7vvpyc6ivqazcqi3p-secondary.dfs.core.windows.net/","web":"https://cliq66t7vvpyc6ivqazcqi3p-secondary.z3.web.core.windows.net/","blob":"https://cliq66t7vvpyc6ivqazcqi3p-secondary.blob.core.windows.net/","queue":"https://cliq66t7vvpyc6ivqazcqi3p-secondary.queue.core.windows.net/","table":"https://cliq66t7vvpyc6ivqazcqi3p-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/sfhyuravarg","name":"sfhyuravarg","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-16T01:46:06.0059502Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-16T01:46:06.0059502Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-16T01:46:05.9590754Z","primaryEndpoints":{"dfs":"https://sfhyuravarg.dfs.core.windows.net/","web":"https://sfhyuravarg.z3.web.core.windows.net/","blob":"https://sfhyuravarg.blob.core.windows.net/","queue":"https://sfhyuravarg.queue.core.windows.net/","table":"https://sfhyuravarg.table.core.windows.net/","file":"https://sfhyuravarg.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sfhyuravarg-secondary.dfs.core.windows.net/","web":"https://sfhyuravarg-secondary.z3.web.core.windows.net/","blob":"https://sfhyuravarg-secondary.blob.core.windows.net/","queue":"https://sfhyuravarg-secondary.queue.core.windows.net/","table":"https://sfhyuravarg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/testlargefile1","name":"testlargefile1","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T01:40:58.9468617Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T01:40:58.9468617Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T01:40:58.8843645Z","primaryEndpoints":{"blob":"https://testlargefile1.blob.core.windows.net/","queue":"https://testlargefile1.queue.core.windows.net/","table":"https://testlargefile1.table.core.windows.net/","file":"https://testlargefile1.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhcar2r","name":"zuhcar2r","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-15T16:49:07.5887557Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-15T16:49:07.5887557Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-15T16:49:07.5263219Z","primaryEndpoints":{"blob":"https://zuhcar2r.blob.core.windows.net/","queue":"https://zuhcar2r.queue.core.windows.net/","table":"https://zuhcar2r.table.core.windows.net/","file":"https://zuhcar2r.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhcarr","name":"zuhcarr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-15T16:48:11.9466753Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-15T16:48:11.9466753Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-15T16:48:11.8841926Z","primaryEndpoints":{"blob":"https://zuhcarr.blob.core.windows.net/","queue":"https://zuhcarr.queue.core.windows.net/","table":"https://zuhcarr.table.core.windows.net/","file":"https://zuhcarr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhlrs","name":"zuhlrs","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-21T14:37:54.8068434Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-21T14:37:54.8068434Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-21T14:37:54.7443112Z","primaryEndpoints":{"blob":"https://zuhlrs.blob.core.windows.net/","queue":"https://zuhlrs.queue.core.windows.net/","table":"https://zuhlrs.table.core.windows.net/","file":"https://zuhlrs.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhtestfilead","name":"zuhtestfilead","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-23T08:14:46.7193427Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-23T08:14:46.7193427Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-23T08:14:46.6724790Z","primaryEndpoints":{"blob":"https://zuhtestfilead.blob.core.windows.net/","queue":"https://zuhtestfilead.queue.core.windows.net/","table":"https://zuhtestfilead.table.core.windows.net/","file":"https://zuhtestfilead.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://zuhtestfilead-secondary.blob.core.windows.net/","queue":"https://zuhtestfilead-secondary.queue.core.windows.net/","table":"https://zuhtestfilead-secondary.table.core.windows.net/"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '127068' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 01 Nov 2019 06:39:21 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: + - 2b85be58-3aa2-4ec1-a845-b335434e37d2 + - c0dd3574-e510-4999-bfba-f0fa8759ca28 + - dc750535-8907-4d82-82af-c389c6026ab3 + - 5e380e96-b6ec-458e-9b3b-187a437be52e + - 63ed873d-f0ed-47f4-b467-4b934e0d0d8b + - e126aeca-e74f-4e36-9164-5eb7fffa3be4 + - a637c7ef-1ffc-4ca8-ab6d-8121564250c3 + - 5446e1fc-bc25-451d-bb1b-08d4fe908d73 + - 65c8e458-1876-4ff7-95b6-0dafba8dca39 + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account show] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + 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/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1231'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:32 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 account show-connection-string] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/listKeys?api-version=2018-07-01 - response: - body: {string: '{"keys":[{"keyName":"key1","value":"oefSrMm5Ffl4/jprvZYgN7wvf4j3EVEDdYqHIbpUHYxtcuUB4kmiVTfjCPbv0T0KdvoUJRvBiLSI7x/tvbcZ5A==","permissions":"FULL"},{"keyName":"key2","value":"Pw21ixHKz+d2tzzssMWiEM7ADowKJ1ku6IrAbGWAbdLChKcqm4jtS5+atX0MQao91iv1pskWoymxejhchcbF3Q==","permissions":"FULL"}]}'} - headers: - cache-control: [no-cache] - content-length: ['288'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:32 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] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 200, message: OK} + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1169' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:22 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 account update] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account update + Connection: + - keep-alive + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1231'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:33 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} + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1169' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:23 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: '{"sku": {"name": "Standard_LRS"}, "tags": {"foo": "bar", "cat": ""}, "properties": {"encryption": {"services": {"blob": {"enabled": true}, "file": {"enabled": @@ -299,62 +411,107 @@ interactions: "networkAcls": {"bypass": "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": "Allow"}}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account update] - Connection: [keep-alive] - Content-Length: ['349'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account update + Connection: + - keep-alive + Content-Length: + - '349' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --tags + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"foo":"bar","cat":""},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1251'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:34 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] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] - status: {code: 200, message: OK} + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"foo":"bar","cat":""},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1189' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:26 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 + 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 account update] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account update + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --tags + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"foo":"bar","cat":""},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1251'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:34 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} + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"foo":"bar","cat":""},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1189' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:27 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: '{"sku": {"name": "Standard_GRS"}, "tags": {}, "properties": {"encryption": {"services": {"blob": {"enabled": true}, "file": {"enabled": true}}, "keySource": @@ -362,62 +519,107 @@ interactions: "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": "Allow"}}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account update] - Connection: [keep-alive] - Content-Length: ['326'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account update + Connection: + - keep-alive + Content-Length: + - '326' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --sku --tags + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1292'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:36 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] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - status: {code: 200, message: OK} + body: + string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1230' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:30 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 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account update] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account update + Connection: + - keep-alive + ParameterSetName: + - -g -n --set + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1292'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:36 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} + body: + string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1230' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:30 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: '{"sku": {"name": "Standard_GRS"}, "tags": {"test": "success"}, "properties": {"encryption": {"services": {"blob": {"enabled": true}, "file": {"enabled": @@ -425,119 +627,158 @@ interactions: "networkAcls": {"bypass": "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": "Allow"}}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account update] - Connection: [keep-alive] - Content-Length: ['343'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account update + Connection: + - keep-alive + Content-Length: + - '343' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --set + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"test":"success"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:11.4881932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:11.4096992Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}}'} - headers: - cache-control: [no-cache] - content-length: ['1308'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:37 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] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] - status: {code: 200, message: OK} + body: + string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"test":"success"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:56.4450712Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:56.3982495Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1246' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:33 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 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: OK - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account delete] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-01 response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - content-type: [text/plain; charset=utf-8] - date: ['Wed, 03 Oct 2018 23:53:38 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} + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 01 Nov 2019 06:39:37 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: + - '14998' + status: + code: 200 + message: OK - request: - body: 'b''{"name": "cli000002", "type": "Microsoft.Storage/storageAccounts"}''' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account check-name] - Connection: [keep-alive] - Content-Length: ['81'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + body: '{"name": "cli000002", "type": "Microsoft.Storage/storageAccounts"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account check-name + Connection: + - keep-alive + Content-Length: + - '81' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01 response: - body: {string: '{"nameAvailable":true}'} - headers: - cache-control: [no-cache] - content-length: ['22'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:53:38 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: [group delete] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - date: ['Wed, 03 Oct 2018 23:53:39 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1WDRVUEhFN1hISE00Q0tWNTZYM1ozN1VKUE1PT0RLUENUNHwyRTFFRkEyMjNBOUEyQ0FFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] - status: {code: 202, message: Accepted} + body: + string: '{"nameAvailable":true}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:38 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 version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_hierarchical_namespace.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_hierarchical_namespace.yaml index d76ea7316f5..7eb8d83f8fb 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_hierarchical_namespace.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_hierarchical_namespace.yaml @@ -1,148 +1,157 @@ interactions: -- request: - body: '{"location": "westus2", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-10-03T23:53:43Z"}}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [group create] - Connection: [keep-alive] - Content-Length: ['111'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2018-10-03T23:53:43Z"},"properties":{"provisioningState":"Succeeded"}}'} - headers: - cache-control: [no-cache] - content-length: ['385'] - content-type: [application/json; charset=utf-8] - date: ['Wed, 03 Oct 2018 23:53:44 GMT'] - expires: ['-1'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] - status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_RAGRS"}, "kind": "StorageV2", "location": "westus2", "properties": {"isHnsEnabled": true}}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account create] - Connection: [keep-alive] - Content-Length: ['117'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + Content-Length: + - '117' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --kind --hierarchical-namespace + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-01 response: - body: {string: ''} + body: + string: '' headers: - cache-control: [no-cache] - content-length: ['0'] - content-type: [text/plain; charset=utf-8] - date: ['Wed, 03 Oct 2018 23:53:45 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/3273b060-c481-4c30-bd07-e03a0a20f730?monitor=true&api-version=2018-07-01'] - 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: ['1198'] - status: {code: 202, message: Accepted} + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 01 Nov 2019 06:38:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/1180d5e3-7105-4eb3-b37a-fa30e9d3d1d1?monitor=true&api-version=2018-07-01 + 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: + - '1197' + status: + code: 202 + message: Accepted - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account create] - Connection: [keep-alive] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.47] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --kind --hierarchical-namespace + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/3273b060-c481-4c30-bd07-e03a0a20f730?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/1180d5e3-7105-4eb3-b37a-fa30e9d3d1d1?monitor=true&api-version=2018-07-01 response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:45.5090235Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-03T23:53:45.5090235Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-03T23:53:45.4621610Z","primaryEndpoints":{"web":"https://cli000002.z5.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://cli000002-secondary.z5.web.core.windows.net/","blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}'} + body: + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:58.4470723Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:58.4470723Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:58.4157922Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z5.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://cli000002-secondary.dfs.core.windows.net/","web":"https://cli000002-secondary.z5.web.core.windows.net/","blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' headers: - cache-control: [no-cache] - content-length: ['1738'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:54:02 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} + cache-control: + - no-cache + content-length: + - '1812' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:15 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: 'b''{"name": "cli000002", "type": "Microsoft.Storage/storageAccounts"}''' + body: '{"name": "cli000002", "type": "Microsoft.Storage/storageAccounts"}' headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account check-name] - Connection: [keep-alive] - Content-Length: ['81'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account check-name + Connection: + - keep-alive + Content-Length: + - '81' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01 response: - body: {string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The - storage account named cli000002 is already taken."}'} - headers: - cache-control: [no-cache] - content-length: ['129'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:54: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: [group delete] - Connection: [keep-alive] - Content-Length: ['0'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 resourcemanagementclient/2.0.0 Azure-SDK-For-Python - AZURECLI/2.0.47] - accept-language: [en-US] - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 - response: - body: {string: ''} + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The storage + account named cli000002 is already taken."}' headers: - cache-control: [no-cache] - content-length: ['0'] - date: ['Wed, 03 Oct 2018 23:54:04 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdDUFRURFE1VzZEV1FZSERYQ1RBNFdRV0tVTVRSWEk0RFpRUnxDM0NFRUU0MUYzMTNCMjIyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2018-05-01'] - pragma: [no-cache] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] - status: {code: 202, message: Accepted} + cache-control: + - no-cache + content-length: + - '129' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:39:17 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 version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_premium_sku.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_premium_sku.yaml index 46f5ef6e5b4..e4fcb118761 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_premium_sku.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_premium_sku.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-10-30T11:54:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:23 GMT + - Fri, 01 Nov 2019 06:38:55 GMT expires: - '-1' pragma: @@ -80,11 +80,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:28 GMT + - Fri, 01 Nov 2019 06:38:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/9edbc7cc-7f35-41ec-908a-9e9f872f12b1?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/b5e69ba5-8573-4565-a009-1a8db4147f8f?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -94,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -115,10 +115,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/9edbc7cc-7f35-41ec-908a-9e9f872f12b1?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/b5e69ba5-8573-4565-a009-1a8db4147f8f?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:28.2337356Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:28.2337356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:28.1555701Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z16.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:59.2406430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:59.2406430Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:59.1780980Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z16.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -127,7 +127,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:46 GMT + - Fri, 01 Nov 2019 06:39:16 GMT expires: - '-1' pragma: @@ -181,7 +181,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:47 GMT + - Fri, 01 Nov 2019 06:39:18 GMT expires: - '-1' pragma: @@ -218,10 +218,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-10-30T11:54:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -230,7 +230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:48 GMT + - Fri, 01 Nov 2019 06:39:19 GMT expires: - '-1' pragma: @@ -279,11 +279,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:53 GMT + - Fri, 01 Nov 2019 06:39:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/6d04abda-d797-4159-bda6-24c81087a00d?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/57e51f37-db4d-4b49-9e9b-435a8f7f4253?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -293,7 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -314,10 +314,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/6d04abda-d797-4159-bda6-24c81087a00d?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/57e51f37-db4d-4b49-9e9b-435a8f7f4253?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000003","name":"cli000003","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:53.1756827Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:53.1756827Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:53.1131965Z","primaryEndpoints":{"file":"https://cli000003.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000003","name":"cli000003","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:23.6493195Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:23.6493195Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:23.5868191Z","primaryEndpoints":{"file":"https://cli000003.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -326,7 +326,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:55:11 GMT + - Fri, 01 Nov 2019 06:39:42 GMT expires: - '-1' pragma: @@ -380,7 +380,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:55:12 GMT + - Fri, 01 Nov 2019 06:39:44 GMT expires: - '-1' pragma: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml index f5fe932b8e0..e57c04357e4 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-30T11:54:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:24 GMT + - Fri, 01 Nov 2019 06:38:55 GMT expires: - '-1' pragma: @@ -80,11 +80,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:31 GMT + - Fri, 01 Nov 2019 06:39:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6bd7ef60-b038-47df-b92b-a6ea3a8728e7?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/9b126601-ac65-43cb-9268-6e3fa5f5a0f4?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -94,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -115,10 +115,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6bd7ef60-b038-47df-b92b-a6ea3a8728e7?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/9b126601-ac65-43cb-9268-6e3fa5f5a0f4?monitor=true&api-version=2018-07-01 response: body: - string: '{"identity":{"principalId":"4853b172-5455-4188-b347-5a2db7bc285d","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:30.5403694Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:30.5403694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:30.4778681Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + string: '{"identity":{"principalId":"1486e5d6-a0d3-4411-8703-127bf0b859e8","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:02.5622104Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:02.5622104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:02.5153133Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -127,7 +127,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:48 GMT + - Fri, 01 Nov 2019 06:39:20 GMT expires: - '-1' pragma: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_management_policy.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_management_policy.yaml index d4cfa5ff075..f1622879b77 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_management_policy.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_management_policy.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2019-10-30T11:54:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:24 GMT + - Fri, 01 Nov 2019 06:38:56 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:29 GMT + - Fri, 01 Nov 2019 06:39:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/42e05a23-682b-45d7-b06d-cc2f26871b28?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/6bf19dfc-5583-4e94-b39d-332efea4644b?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -114,10 +114,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/42e05a23-682b-45d7-b06d-cc2f26871b28?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/6bf19dfc-5583-4e94-b39d-332efea4644b?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:28.8488921Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:28.8488921Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:28.7863665Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z3.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://cli000002-secondary.dfs.core.windows.net/","web":"https://cli000002-secondary.z3.web.core.windows.net/","blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:00.9380077Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:00.9380077Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:00.8911525Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z3.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://cli000002-secondary.dfs.core.windows.net/","web":"https://cli000002-secondary.z3.web.core.windows.net/","blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -126,7 +126,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:46 GMT + - Fri, 01 Nov 2019 06:39:18 GMT expires: - '-1' pragma: @@ -175,7 +175,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default?api-version=2018-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-10-30T11:54:50.3593703Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T06:39:22.2890962Z"}}' headers: cache-control: - no-cache @@ -184,7 +184,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:50 GMT + - Fri, 01 Nov 2019 06:39:22 GMT expires: - '-1' pragma: @@ -200,7 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 200 message: OK @@ -226,7 +226,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default?api-version=2018-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-10-30T11:54:50.3593703Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T06:39:22.2890962Z"}}' headers: cache-control: - no-cache @@ -235,7 +235,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:51 GMT + - Fri, 01 Nov 2019 06:39:23 GMT expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default?api-version=2018-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"newname","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-10-30T11:54:53.1568218Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"newname","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T06:39:25.5391383Z"}}' headers: cache-control: - no-cache @@ -292,7 +292,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:53 GMT + - Fri, 01 Nov 2019 06:39:25 GMT expires: - '-1' pragma: @@ -308,7 +308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -334,7 +334,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default?api-version=2018-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"newname","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-10-30T11:54:53.1568218Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"newname","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T06:39:25.5391383Z"}}' headers: cache-control: - no-cache @@ -343,7 +343,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:55 GMT + - Fri, 01 Nov 2019 06:39:26 GMT expires: - '-1' pragma: @@ -394,7 +394,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:56 GMT + - Fri, 01 Nov 2019 06:39:28 GMT expires: - '-1' pragma: @@ -406,7 +406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' status: code: 200 message: OK @@ -442,7 +442,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:57 GMT + - Fri, 01 Nov 2019 06:39:29 GMT expires: - '-1' pragma: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_show_usage.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_show_usage.yaml index ea1e8403fa4..1dcbb331722 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_show_usage.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_show_usage.yaml @@ -2,31 +2,51 @@ interactions: - request: body: null headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account show-usage] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.5 (Windows-10-10.0.17134-SP0) requests/2.19.1 msrest/0.5.4 - msrest_azure/0.4.34 azure-mgmt-storage/2.0.0rc4 Azure-SDK-For-Python AZURECLI/2.0.47] - accept-language: [en-US] + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account show-usage + Connection: + - keep-alive + ParameterSetName: + - -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/usages?api-version=2018-07-01 response: - body: {string: '{"value":[{"unit":"Count","currentValue":14,"limit":250,"name":{"value":"StorageAccounts","localizedValue":"Storage - Accounts"}}]}'} + body: + string: '{"value":[{"unit":"Count","currentValue":25,"limit":250,"name":{"value":"StorageAccounts","localizedValue":"Storage + Accounts"}}]}' headers: - cache-control: [no-cache] - content-length: ['129'] - content-type: [application/json] - date: ['Wed, 03 Oct 2018 23:55: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] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - status: {code: 200, message: OK} + cache-control: + - no-cache + content-length: + - '129' + content-type: + - application/json + date: + - Fri, 01 Nov 2019 06:38:51 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 version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_directory.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_adls_blob.yaml similarity index 74% rename from src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_directory.yaml rename to src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_adls_blob.yaml index 759d2259797..185601c0717 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_directory.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_adls_blob.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-31T09:12:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T09:27:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 31 Oct 2019 09:12:27 GMT + - Fri, 01 Nov 2019 09:28:02 GMT expires: - '-1' pragma: @@ -80,11 +80,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 31 Oct 2019 09:12:32 GMT + - Fri, 01 Nov 2019 09:28:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/755950f9-a35e-4df0-a3f6-d3bac91d05bf?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/220cfec5-67d6-4f6c-81a3-aba78fa2ec0d?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -94,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -115,10 +115,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/755950f9-a35e-4df0-a3f6-d3bac91d05bf?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/220cfec5-67d6-4f6c-81a3-aba78fa2ec0d?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitestaldsaccount000002","name":"clitestaldsaccount000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T09:12:31.6696806Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T09:12:31.6696806Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-31T09:12:31.6071550Z","primaryEndpoints":{"dfs":"https://clitestaldsaccount000002.dfs.core.windows.net/","web":"https://clitestaldsaccount000002.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002.blob.core.windows.net/","queue":"https://clitestaldsaccount000002.queue.core.windows.net/","table":"https://clitestaldsaccount000002.table.core.windows.net/","file":"https://clitestaldsaccount000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestaldsaccount000002-secondary.dfs.core.windows.net/","web":"https://clitestaldsaccount000002-secondary.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002-secondary.blob.core.windows.net/","queue":"https://clitestaldsaccount000002-secondary.queue.core.windows.net/","table":"https://clitestaldsaccount000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitestaldsaccount000002","name":"clitestaldsaccount000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T09:28:05.7132344Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T09:28:05.7132344Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T09:28:05.6663800Z","primaryEndpoints":{"dfs":"https://clitestaldsaccount000002.dfs.core.windows.net/","web":"https://clitestaldsaccount000002.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002.blob.core.windows.net/","queue":"https://clitestaldsaccount000002.queue.core.windows.net/","table":"https://clitestaldsaccount000002.table.core.windows.net/","file":"https://clitestaldsaccount000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestaldsaccount000002-secondary.dfs.core.windows.net/","web":"https://clitestaldsaccount000002-secondary.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002-secondary.blob.core.windows.net/","queue":"https://clitestaldsaccount000002-secondary.queue.core.windows.net/","table":"https://clitestaldsaccount000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -127,7 +127,7 @@ interactions: content-type: - application/json date: - - Thu, 31 Oct 2019 09:12:49 GMT + - Fri, 01 Nov 2019 09:28:24 GMT expires: - '-1' pragma: @@ -178,7 +178,7 @@ interactions: content-type: - application/json date: - - Thu, 31 Oct 2019 09:12:52 GMT + - Fri, 01 Nov 2019 09:28:26 GMT expires: - '-1' pragma: @@ -208,7 +208,7 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:12:53 GMT + - Fri, 01 Nov 2019 09:28:28 GMT x-ms-version: - '2018-11-09' method: PUT @@ -220,11 +220,11 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:13:12 GMT + - Fri, 01 Nov 2019 09:28:32 GMT etag: - - '"0x8D75DE2848B11D2"' + - '"0x8D75EADDC4548AA"' last-modified: - - Thu, 31 Oct 2019 09:12:56 GMT + - Fri, 01 Nov 2019 09:28:31 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -240,7 +240,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:13:12 GMT + - Fri, 01 Nov 2019 09:28:32 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -250,7 +250,7 @@ interactions: string: '' headers: date: - - Thu, 31 Oct 2019 09:13:16 GMT + - Fri, 01 Nov 2019 09:28:34 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -272,7 +272,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:13:18 GMT + - Fri, 01 Nov 2019 09:28:35 GMT x-ms-version: - '2019-02-02' method: PUT @@ -284,11 +284,11 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:36 GMT etag: - - '"0x8D75DE29268D6E8"' + - '"0x8D75EADDFBF44E3"' last-modified: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -304,7 +304,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:13:20 GMT + - Fri, 01 Nov 2019 09:28:37 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -320,11 +320,11 @@ interactions: content-type: - application/octet-stream date: - - Thu, 31 Oct 2019 09:13:24 GMT + - Fri, 01 Nov 2019 09:28:39 GMT etag: - - '"0x8D75DE29268D6E8"' + - '"0x8D75EADDFBF44E3"' last-modified: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-access-tier: @@ -334,7 +334,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -356,7 +356,7 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:13:24 GMT + - Fri, 01 Nov 2019 09:28:40 GMT x-ms-version: - '2018-11-09' method: GET @@ -365,9 +365,9 @@ interactions: body: string: "\uFEFF5000testdirectoryThu, - 31 Oct 2019 09:13:19 GMTThu, 31 Oct 2019 09:13:19 - GMT0x8D75DE29268D6E80application/octet-stream5000testdirectoryFri, + 01 Nov 2019 09:28:37 GMTFri, 01 Nov 2019 09:28:37 + GMT0x8D75EADDFBF44E30application/octet-streamBlockBlobHottrueunlockedtrue" @@ -375,7 +375,7 @@ interactions: content-type: - application/xml date: - - Thu, 31 Oct 2019 09:13:26 GMT + - Fri, 01 Nov 2019 09:28:40 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -393,7 +393,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:13:27 GMT + - Fri, 01 Nov 2019 09:28:42 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -409,11 +409,11 @@ interactions: content-type: - application/octet-stream date: - - Thu, 31 Oct 2019 09:13:27 GMT + - Fri, 01 Nov 2019 09:28:44 GMT etag: - - '"0x8D75DE29268D6E8"' + - '"0x8D75EADDFBF44E3"' last-modified: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-access-tier: @@ -423,7 +423,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -445,7 +445,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:13:51 GMT + - Fri, 01 Nov 2019 09:28:51 GMT x-ms-version: - '2019-02-02' method: GET @@ -454,9 +454,9 @@ interactions: body: string: "\uFEFFtestdirectory/testdirectory/readmeThu, - 31 Oct 2019 09:13:47 GMTThu, 31 Oct 2019 09:13:47 - GMT0x8D75DE2A2E8184887text/plain; + ContainerName=\"cont000003\">testdirectory/testdirectory/readmeFri, + 01 Nov 2019 09:28:48 GMTFri, 01 Nov 2019 09:28:48 + GMT0x8D75EADE676CA7187text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruetestdirectory/testdirectory/appleThu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75695250testdirectory/testdirectory/appleFri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9CBBF1A0BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A7572CD8128text/plain; + />BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA19750F128text/plain; charset=utf-87siMFbxf8eKRt4Wqbk868Q==7p9Oc3c/J+LdjDRRPg7dng==BlockBlobHottrueunlockedtruetestdirectory/apple/file_1Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A76D8A57128text/plain; + />testdirectory/apple/file_1Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA07252E128text/plain; charset=utf-8q32PYmYeXhORLc0sBlEEyA==Gs49yId3oQyljk34/nbhsg==BlockBlobHottrueunlockedtruetestdirectory/apple/file_2Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A789A0B1128text/plain; + />testdirectory/apple/file_2Fri, + 01 Nov 2019 09:28:55 GMTFri, 01 Nov 2019 09:28:55 + GMT0x8D75EADEA6C7A6F128text/plain; charset=utf-8hQFbdeblZzqLkNB7a/+GsQ==v9o7LG6XrjqF+VXyYl4PFA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_3Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A78C7092128text/plain; + />testdirectory/apple/file_3Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA4746DB128text/plain; charset=utf-8AVl+FH80SNqSfLI8wDloWA==JX7U7ugcwdf/TBYMw1y4PA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_4Thu, - 31 Oct 2019 09:13:57 GMTThu, 31 Oct 2019 09:13:57 - GMT0x8D75DE2A8EAF0DA128text/plain; + />testdirectory/apple/file_4Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9F8692C128text/plain; charset=utf-8utBanbGUxjzfRny3vfaDqw==egkoZJga4YhJrPQsbUXqWA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_5Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A79688F6128text/plain; + />testdirectory/apple/file_5Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA29C2A0128text/plain; charset=utf-8WLxo/te6JhiFX3VIWJyQ4g==9l2rzds87KUQ4g7V3AnbiA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_6Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A7CA9D41128text/plain; + />testdirectory/apple/file_6Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA016D3C128text/plain; charset=utf-89nrbm9GMDAuJJRP16BpcPQ==N7tvvws6sTbbhdFUnAFEWg==BlockBlobHottrueunlockedtruetestdirectory/apple/file_7Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75BC6AB128text/plain; + />testdirectory/apple/file_7Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9F64D97128text/plain; charset=utf-8PN5SgZB2W4edNPz6d7Cxag==A74dmgW4+rCGg1pzSunHQg==BlockBlobHottrueunlockedtruetestdirectory/apple/file_8Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75BC7E3128text/plain; + />testdirectory/apple/file_8Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9CC5EEC128text/plain; charset=utf-8sdp2YPHcYEMEVaMAEnCxhA==kU+nRmLO01uqbPOmrmMQwQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_9Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A7D25A2A128text/plain; + />testdirectory/apple/file_9Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA1976BB128text/plain; charset=utf-8ErRj2XFvK89TB88MdnZWrQ==GuzQAMoxAiql8jMTqzD/xA==BlockBlobHottrueunlockedtruetestdirectory/readmeThu, - 31 Oct 2019 09:13:47 GMTThu, 31 Oct 2019 09:13:47 - GMT0x8D75DE2A2E8184887text/plain; + />testdirectory/readmeFri, + 01 Nov 2019 09:28:48 GMTFri, 01 Nov 2019 09:28:48 + GMT0x8D75EADE676CA7187text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruetestdirectory/testdirectory/appleThu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75695250testdirectory/testdirectory/appleFri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9CBBF1A0BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A7572CD8128text/plain; + />BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA19750F128text/plain; charset=utf-87siMFbxf8eKRt4Wqbk868Q==7p9Oc3c/J+LdjDRRPg7dng==BlockBlobHottrueunlockedtruetestdirectory/apple/file_1Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A76D8A57128text/plain; + />testdirectory/apple/file_1Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA07252E128text/plain; charset=utf-8q32PYmYeXhORLc0sBlEEyA==Gs49yId3oQyljk34/nbhsg==BlockBlobHottrueunlockedtruetestdirectory/apple/file_2Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A789A0B1128text/plain; + />testdirectory/apple/file_2Fri, + 01 Nov 2019 09:28:55 GMTFri, 01 Nov 2019 09:28:55 + GMT0x8D75EADEA6C7A6F128text/plain; charset=utf-8hQFbdeblZzqLkNB7a/+GsQ==v9o7LG6XrjqF+VXyYl4PFA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_3Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A78C7092128text/plain; + />testdirectory/apple/file_3Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA4746DB128text/plain; charset=utf-8AVl+FH80SNqSfLI8wDloWA==JX7U7ugcwdf/TBYMw1y4PA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_4Thu, - 31 Oct 2019 09:13:57 GMTThu, 31 Oct 2019 09:13:57 - GMT0x8D75DE2A8EAF0DA128text/plain; + />testdirectory/apple/file_4Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9F8692C128text/plain; charset=utf-8utBanbGUxjzfRny3vfaDqw==egkoZJga4YhJrPQsbUXqWA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_5Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A79688F6128text/plain; + />testdirectory/apple/file_5Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA29C2A0128text/plain; charset=utf-8WLxo/te6JhiFX3VIWJyQ4g==9l2rzds87KUQ4g7V3AnbiA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_6Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A7CA9D41128text/plain; + />testdirectory/apple/file_6Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA016D3C128text/plain; charset=utf-89nrbm9GMDAuJJRP16BpcPQ==N7tvvws6sTbbhdFUnAFEWg==BlockBlobHottrueunlockedtruetestdirectory/apple/file_7Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75BC6AB128text/plain; + />testdirectory/apple/file_7Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9F64D97128text/plain; charset=utf-8PN5SgZB2W4edNPz6d7Cxag==A74dmgW4+rCGg1pzSunHQg==BlockBlobHottrueunlockedtruetestdirectory/apple/file_8Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75BC7E3128text/plain; + />testdirectory/apple/file_8Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9CC5EEC128text/plain; charset=utf-8sdp2YPHcYEMEVaMAEnCxhA==kU+nRmLO01uqbPOmrmMQwQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_9Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A7D25A2A128text/plain; + />testdirectory/apple/file_9Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA1976BB128text/plain; charset=utf-8ErRj2XFvK89TB88MdnZWrQ==GuzQAMoxAiql8jMTqzD/xA==BlockBlobHottrueunlockedtruetestdirectory/file_0Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACC124E9129text/plain; + />testdirectory/file_0Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEB69D4C129text/plain; charset=utf-8OY/RWH3D3naoLuF+o6uxWA==9goDTaXj76CpXTEUH8pYtQ==BlockBlobHottrueunlockedtruetestdirectory/file_1Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC66F3C6129text/plain; + />testdirectory/file_1Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEED33B50129text/plain; charset=utf-8xgnEmfJpfcMP1KSzZ7ALdQ==bsBVCSFBZAwqk1cyqjOWJA==BlockBlobHottrueunlockedtruetestdirectory/file_2Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC671CF4129text/plain; + />testdirectory/file_2Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEA6E9DE129text/plain; charset=utf-8MHkBN2opqGK/cOTAPkSrFQ==W7Oq7KjJ6oqVveCngy/pVQ==BlockBlobHottrueunlockedtruetestdirectory/file_3Thu, - 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 - GMT0x8D75DE2AD00F559129text/plain; + />testdirectory/file_3Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEC5DF22129text/plain; charset=utf-8hq8Ei31kkCBe99YcmbSQKw==5ciSW92QbMD+qi+5BtMcTQ==BlockBlobHottrueunlockedtruetestdirectory/file_4Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACA2FDE9129text/plain; + />testdirectory/file_4Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEF83083129text/plain; charset=utf-8+j59DUtcoH+UNFRxyytSvA==Ees5xoFgg0vlMYsWiesbCg==BlockBlobHottrueunlockedtruetestdirectory/file_5Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACA586DC129text/plain; + />testdirectory/file_5Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEECF1F44129text/plain; charset=utf-8ZkxhWTE9LycEqoAjXsFOGQ==3PIL54zkzwnZgWXYw3iatg==BlockBlobHottrueunlockedtruetestdirectory/file_6Thu, - 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 - GMT0x8D75DE2AD889610129text/plain; + />testdirectory/file_6Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEE58955129text/plain; charset=utf-8lW+xch52GoISJeNBylaxVQ==FGBvPcq7UOnH7BuvptXpLQ==BlockBlobHottrueunlockedtruetestdirectory/file_7Thu, - 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 - GMT0x8D75DE2AD86FBD1129text/plain; + />testdirectory/file_7Fri, + 01 Nov 2019 09:29:03 GMTFri, 01 Nov 2019 09:29:03 + GMT0x8D75EADEF1DC984129text/plain; charset=utf-8u6huDG+SZRtVjyDwOjXeTw==WiacTPJIyIIQKTONrya/1w==BlockBlobHottrueunlockedtruetestdirectory/file_8Thu, - 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 - GMT0x8D75DE2ACDFEC70129text/plain; + />testdirectory/file_8Fri, + 01 Nov 2019 09:29:05 GMTFri, 01 Nov 2019 09:29:05 + GMT0x8D75EADF0D7627A129text/plain; charset=utf-86TbWapEQD52gVyoAB1kBig==tu00WAsChFoXEa2cBbYxfw==BlockBlobHottrueunlockedtruetestdirectory/file_9Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC7E6A70129text/plain; + />testdirectory/file_9Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEE8F62BD129text/plain; charset=utf-8sAK28Vc0bdU6AkZAJdBX9g==3cL0Z0vTZUQ9Z2nlxp1eEw==BlockBlobHottrueunlockedtruetestdirectory/readmeThu, - 31 Oct 2019 09:13:47 GMTThu, 31 Oct 2019 09:13:47 - GMT0x8D75DE2A2E8184887text/plain; + />testdirectory/readmeFri, + 01 Nov 2019 09:28:48 GMTFri, 01 Nov 2019 09:28:48 + GMT0x8D75EADE676CA7187text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruedesdirectory/desdirectory/appleThu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75695250desdirectory/desdirectory/appleFri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9CBBF1A0BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A7572CD8128text/plain; + />BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA19750F128text/plain; charset=utf-87siMFbxf8eKRt4Wqbk868Q==7p9Oc3c/J+LdjDRRPg7dng==BlockBlobHottrueunlockedtruedesdirectory/apple/file_1Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A76D8A57128text/plain; + />desdirectory/apple/file_1Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA07252E128text/plain; charset=utf-8q32PYmYeXhORLc0sBlEEyA==Gs49yId3oQyljk34/nbhsg==BlockBlobHottrueunlockedtruedesdirectory/apple/file_2Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A789A0B1128text/plain; + />desdirectory/apple/file_2Fri, + 01 Nov 2019 09:28:55 GMTFri, 01 Nov 2019 09:28:55 + GMT0x8D75EADEA6C7A6F128text/plain; charset=utf-8hQFbdeblZzqLkNB7a/+GsQ==v9o7LG6XrjqF+VXyYl4PFA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_3Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A78C7092128text/plain; + />desdirectory/apple/file_3Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA4746DB128text/plain; charset=utf-8AVl+FH80SNqSfLI8wDloWA==JX7U7ugcwdf/TBYMw1y4PA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_4Thu, - 31 Oct 2019 09:13:57 GMTThu, 31 Oct 2019 09:13:57 - GMT0x8D75DE2A8EAF0DA128text/plain; + />desdirectory/apple/file_4Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9F8692C128text/plain; charset=utf-8utBanbGUxjzfRny3vfaDqw==egkoZJga4YhJrPQsbUXqWA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_5Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A79688F6128text/plain; + />desdirectory/apple/file_5Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA29C2A0128text/plain; charset=utf-8WLxo/te6JhiFX3VIWJyQ4g==9l2rzds87KUQ4g7V3AnbiA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_6Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A7CA9D41128text/plain; + />desdirectory/apple/file_6Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA016D3C128text/plain; charset=utf-89nrbm9GMDAuJJRP16BpcPQ==N7tvvws6sTbbhdFUnAFEWg==BlockBlobHottrueunlockedtruedesdirectory/apple/file_7Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75BC6AB128text/plain; + />desdirectory/apple/file_7Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9F64D97128text/plain; charset=utf-8PN5SgZB2W4edNPz6d7Cxag==A74dmgW4+rCGg1pzSunHQg==BlockBlobHottrueunlockedtruedesdirectory/apple/file_8Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75BC7E3128text/plain; + />desdirectory/apple/file_8Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9CC5EEC128text/plain; charset=utf-8sdp2YPHcYEMEVaMAEnCxhA==kU+nRmLO01uqbPOmrmMQwQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_9Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A7D25A2A128text/plain; + />desdirectory/apple/file_9Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA1976BB128text/plain; charset=utf-8ErRj2XFvK89TB88MdnZWrQ==GuzQAMoxAiql8jMTqzD/xA==BlockBlobHottrueunlockedtruedesdirectory/file_0Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACC124E9129text/plain; + />desdirectory/file_0Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEB69D4C129text/plain; charset=utf-8OY/RWH3D3naoLuF+o6uxWA==9goDTaXj76CpXTEUH8pYtQ==BlockBlobHottrueunlockedtruedesdirectory/file_1Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC66F3C6129text/plain; + />desdirectory/file_1Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEED33B50129text/plain; charset=utf-8xgnEmfJpfcMP1KSzZ7ALdQ==bsBVCSFBZAwqk1cyqjOWJA==BlockBlobHottrueunlockedtruedesdirectory/file_2Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC671CF4129text/plain; + />desdirectory/file_2Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEA6E9DE129text/plain; charset=utf-8MHkBN2opqGK/cOTAPkSrFQ==W7Oq7KjJ6oqVveCngy/pVQ==BlockBlobHottrueunlockedtruedesdirectory/file_3Thu, - 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 - GMT0x8D75DE2AD00F559129text/plain; + />desdirectory/file_3Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEC5DF22129text/plain; charset=utf-8hq8Ei31kkCBe99YcmbSQKw==5ciSW92QbMD+qi+5BtMcTQ==BlockBlobHottrueunlockedtruedesdirectory/file_4Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACA2FDE9129text/plain; + />desdirectory/file_4Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEF83083129text/plain; charset=utf-8+j59DUtcoH+UNFRxyytSvA==Ees5xoFgg0vlMYsWiesbCg==BlockBlobHottrueunlockedtruedesdirectory/file_5Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACA586DC129text/plain; + />desdirectory/file_5Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEECF1F44129text/plain; charset=utf-8ZkxhWTE9LycEqoAjXsFOGQ==3PIL54zkzwnZgWXYw3iatg==BlockBlobHottrueunlockedtruedesdirectory/file_6Thu, - 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 - GMT0x8D75DE2AD889610129text/plain; + />desdirectory/file_6Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEE58955129text/plain; charset=utf-8lW+xch52GoISJeNBylaxVQ==FGBvPcq7UOnH7BuvptXpLQ==BlockBlobHottrueunlockedtruedesdirectory/file_7Thu, - 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 - GMT0x8D75DE2AD86FBD1129text/plain; + />desdirectory/file_7Fri, + 01 Nov 2019 09:29:03 GMTFri, 01 Nov 2019 09:29:03 + GMT0x8D75EADEF1DC984129text/plain; charset=utf-8u6huDG+SZRtVjyDwOjXeTw==WiacTPJIyIIQKTONrya/1w==BlockBlobHottrueunlockedtruedesdirectory/file_8Thu, - 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 - GMT0x8D75DE2ACDFEC70129text/plain; + />desdirectory/file_8Fri, + 01 Nov 2019 09:29:05 GMTFri, 01 Nov 2019 09:29:05 + GMT0x8D75EADF0D7627A129text/plain; charset=utf-86TbWapEQD52gVyoAB1kBig==tu00WAsChFoXEa2cBbYxfw==BlockBlobHottrueunlockedtruedesdirectory/file_9Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC7E6A70129text/plain; + />desdirectory/file_9Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEE8F62BD129text/plain; charset=utf-8sAK28Vc0bdU6AkZAJdBX9g==3cL0Z0vTZUQ9Z2nlxp1eEw==BlockBlobHottrueunlockedtruedesdirectory/readmeThu, - 31 Oct 2019 09:13:47 GMTThu, 31 Oct 2019 09:13:47 - GMT0x8D75DE2A2E8184887text/plain; + />desdirectory/readmeFri, + 01 Nov 2019 09:28:48 GMTFri, 01 Nov 2019 09:28:48 + GMT0x8D75EADE676CA7187text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruedesdirectory/desdirectory/appleThu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75695250desdirectory/desdirectory/appleFri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9CBBF1A0BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A7572CD8128text/plain; + />BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA19750F128text/plain; charset=utf-87siMFbxf8eKRt4Wqbk868Q==7p9Oc3c/J+LdjDRRPg7dng==BlockBlobHottrueunlockedtruedesdirectory/apple/file_1Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A76D8A57128text/plain; + />desdirectory/apple/file_1Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA07252E128text/plain; charset=utf-8q32PYmYeXhORLc0sBlEEyA==Gs49yId3oQyljk34/nbhsg==BlockBlobHottrueunlockedtruedesdirectory/apple/file_2Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A789A0B1128text/plain; + />desdirectory/apple/file_2Fri, + 01 Nov 2019 09:28:55 GMTFri, 01 Nov 2019 09:28:55 + GMT0x8D75EADEA6C7A6F128text/plain; charset=utf-8hQFbdeblZzqLkNB7a/+GsQ==v9o7LG6XrjqF+VXyYl4PFA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_3Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A78C7092128text/plain; + />desdirectory/apple/file_3Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA4746DB128text/plain; charset=utf-8AVl+FH80SNqSfLI8wDloWA==JX7U7ugcwdf/TBYMw1y4PA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_4Thu, - 31 Oct 2019 09:13:57 GMTThu, 31 Oct 2019 09:13:57 - GMT0x8D75DE2A8EAF0DA128text/plain; + />desdirectory/apple/file_4Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9F8692C128text/plain; charset=utf-8utBanbGUxjzfRny3vfaDqw==egkoZJga4YhJrPQsbUXqWA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_5Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A79688F6128text/plain; + />desdirectory/apple/file_5Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA29C2A0128text/plain; charset=utf-8WLxo/te6JhiFX3VIWJyQ4g==9l2rzds87KUQ4g7V3AnbiA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_6Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A7CA9D41128text/plain; + />desdirectory/apple/file_6Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA016D3C128text/plain; charset=utf-89nrbm9GMDAuJJRP16BpcPQ==N7tvvws6sTbbhdFUnAFEWg==BlockBlobHottrueunlockedtruedesdirectory/apple/file_7Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75BC6AB128text/plain; + />desdirectory/apple/file_7Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9F64D97128text/plain; charset=utf-8PN5SgZB2W4edNPz6d7Cxag==A74dmgW4+rCGg1pzSunHQg==BlockBlobHottrueunlockedtruedesdirectory/apple/file_8Thu, - 31 Oct 2019 09:13:54 GMTThu, 31 Oct 2019 09:13:54 - GMT0x8D75DE2A75BC7E3128text/plain; + />desdirectory/apple/file_8Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADE9CC5EEC128text/plain; charset=utf-8sdp2YPHcYEMEVaMAEnCxhA==kU+nRmLO01uqbPOmrmMQwQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_9Thu, - 31 Oct 2019 09:13:55 GMTThu, 31 Oct 2019 09:13:55 - GMT0x8D75DE2A7D25A2A128text/plain; + />desdirectory/apple/file_9Fri, + 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 + GMT0x8D75EADEA1976BB128text/plain; charset=utf-8ErRj2XFvK89TB88MdnZWrQ==GuzQAMoxAiql8jMTqzD/xA==BlockBlobHottrueunlockedtruedesdirectory/file_0Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACC124E9129text/plain; + />desdirectory/file_0Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEB69D4C129text/plain; charset=utf-8OY/RWH3D3naoLuF+o6uxWA==9goDTaXj76CpXTEUH8pYtQ==BlockBlobHottrueunlockedtruedesdirectory/file_1Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC66F3C6129text/plain; + />desdirectory/file_1Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEED33B50129text/plain; charset=utf-8xgnEmfJpfcMP1KSzZ7ALdQ==bsBVCSFBZAwqk1cyqjOWJA==BlockBlobHottrueunlockedtruedesdirectory/file_2Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC671CF4129text/plain; + />desdirectory/file_2Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEA6E9DE129text/plain; charset=utf-8MHkBN2opqGK/cOTAPkSrFQ==W7Oq7KjJ6oqVveCngy/pVQ==BlockBlobHottrueunlockedtruedesdirectory/file_3Thu, - 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 - GMT0x8D75DE2AD00F559129text/plain; + />desdirectory/file_3Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEC5DF22129text/plain; charset=utf-8hq8Ei31kkCBe99YcmbSQKw==5ciSW92QbMD+qi+5BtMcTQ==BlockBlobHottrueunlockedtruedesdirectory/file_4Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACA2FDE9129text/plain; + />desdirectory/file_4Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEF83083129text/plain; charset=utf-8+j59DUtcoH+UNFRxyytSvA==Ees5xoFgg0vlMYsWiesbCg==BlockBlobHottrueunlockedtruedesdirectory/file_5Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2ACA586DC129text/plain; + />desdirectory/file_5Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEECF1F44129text/plain; charset=utf-8ZkxhWTE9LycEqoAjXsFOGQ==3PIL54zkzwnZgWXYw3iatg==BlockBlobHottrueunlockedtruedesdirectory/file_6Thu, - 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 - GMT0x8D75DE2AD889610129text/plain; + />desdirectory/file_6Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEEE58955129text/plain; charset=utf-8lW+xch52GoISJeNBylaxVQ==FGBvPcq7UOnH7BuvptXpLQ==BlockBlobHottrueunlockedtruedesdirectory/file_7Thu, - 31 Oct 2019 09:14:05 GMTThu, 31 Oct 2019 09:14:05 - GMT0x8D75DE2AD86FBD1129text/plain; + />desdirectory/file_7Fri, + 01 Nov 2019 09:29:03 GMTFri, 01 Nov 2019 09:29:03 + GMT0x8D75EADEF1DC984129text/plain; charset=utf-8u6huDG+SZRtVjyDwOjXeTw==WiacTPJIyIIQKTONrya/1w==BlockBlobHottrueunlockedtruedesdirectory/file_8Thu, - 31 Oct 2019 09:14:04 GMTThu, 31 Oct 2019 09:14:04 - GMT0x8D75DE2ACDFEC70129text/plain; + />desdirectory/file_8Fri, + 01 Nov 2019 09:29:05 GMTFri, 01 Nov 2019 09:29:05 + GMT0x8D75EADF0D7627A129text/plain; charset=utf-86TbWapEQD52gVyoAB1kBig==tu00WAsChFoXEa2cBbYxfw==BlockBlobHottrueunlockedtruedesdirectory/file_9Thu, - 31 Oct 2019 09:14:03 GMTThu, 31 Oct 2019 09:14:03 - GMT0x8D75DE2AC7E6A70129text/plain; + />desdirectory/file_9Fri, + 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 + GMT0x8D75EADEE8F62BD129text/plain; charset=utf-8sAK28Vc0bdU6AkZAJdBX9g==3cL0Z0vTZUQ9Z2nlxp1eEw==BlockBlobHottrueunlockedtrue" headers: content-type: - application/xml date: - - Thu, 31 Oct 2019 09:14:41 GMT + - Fri, 01 Nov 2019 09:29:51 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -1241,7 +1241,7 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:14:42 GMT + - Fri, 01 Nov 2019 09:29:52 GMT x-ms-version: - '2018-11-09' method: HEAD @@ -1259,11 +1259,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 31 Oct 2019 09:14:43 GMT + - Fri, 01 Nov 2019 09:29:53 GMT etag: - - '"0x8D75DE2A2E81848"' + - '"0x8D75EADE676CA71"' last-modified: - - Thu, 31 Oct 2019 09:13:47 GMT + - Fri, 01 Nov 2019 09:28:48 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-access-tier: @@ -1273,7 +1273,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Thu, 31 Oct 2019 09:13:47 GMT + - Fri, 01 Nov 2019 09:28:48 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -1297,7 +1297,7 @@ interactions: x-ms-acl: - user::rwx,group::r--,other::--- x-ms-date: - - Thu, 31 Oct 2019 09:14:44 GMT + - Fri, 01 Nov 2019 09:29:54 GMT x-ms-version: - '2019-02-02' method: PATCH @@ -1309,11 +1309,11 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:14:45 GMT + - Fri, 01 Nov 2019 09:29:55 GMT etag: - - '"0x8D75DE2A2E81848"' + - '"0x8D75EADE676CA71"' last-modified: - - Thu, 31 Oct 2019 09:13:47 GMT + - Fri, 01 Nov 2019 09:28:48 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1331,7 +1331,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:14:46 GMT + - Fri, 01 Nov 2019 09:29:56 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1341,11 +1341,11 @@ interactions: string: '' headers: date: - - Thu, 31 Oct 2019 09:14:47 GMT + - Fri, 01 Nov 2019 09:29:57 GMT etag: - - '"0x8D75DE2A2E81848"' + - '"0x8D75EADE676CA71"' last-modified: - - Thu, 31 Oct 2019 09:13:47 GMT + - Fri, 01 Nov 2019 09:28:48 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1371,7 +1371,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:14:48 GMT + - Fri, 01 Nov 2019 09:29:58 GMT x-ms-permissions: - rwxrwxrwx x-ms-version: @@ -1385,11 +1385,11 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:14:49 GMT + - Fri, 01 Nov 2019 09:29:59 GMT etag: - - '"0x8D75DE2A2E81848"' + - '"0x8D75EADE676CA71"' last-modified: - - Thu, 31 Oct 2019 09:13:47 GMT + - Fri, 01 Nov 2019 09:28:48 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1407,7 +1407,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:14:50 GMT + - Fri, 01 Nov 2019 09:30:00 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1417,11 +1417,11 @@ interactions: string: '' headers: date: - - Thu, 31 Oct 2019 09:14:50 GMT + - Fri, 01 Nov 2019 09:30:00 GMT etag: - - '"0x8D75DE2A2E81848"' + - '"0x8D75EADE676CA71"' last-modified: - - Thu, 31 Oct 2019 09:13:47 GMT + - Fri, 01 Nov 2019 09:28:48 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1449,7 +1449,7 @@ interactions: x-ms-acl: - user::rwx,group::r--,other::--- x-ms-date: - - Thu, 31 Oct 2019 09:14:52 GMT + - Fri, 01 Nov 2019 09:30:02 GMT x-ms-version: - '2019-02-02' method: PATCH @@ -1461,11 +1461,11 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:14:52 GMT + - Fri, 01 Nov 2019 09:30:03 GMT etag: - - '"0x8D75DE29268D6E8"' + - '"0x8D75EADDFBF44E3"' last-modified: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1483,7 +1483,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:14:54 GMT + - Fri, 01 Nov 2019 09:30:04 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1493,11 +1493,11 @@ interactions: string: '' headers: date: - - Thu, 31 Oct 2019 09:14:54 GMT + - Fri, 01 Nov 2019 09:30:05 GMT etag: - - '"0x8D75DE29268D6E8"' + - '"0x8D75EADDFBF44E3"' last-modified: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1523,7 +1523,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:14:56 GMT + - Fri, 01 Nov 2019 09:30:06 GMT x-ms-permissions: - rwxrwxrwx x-ms-version: @@ -1537,11 +1537,11 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:14:56 GMT + - Fri, 01 Nov 2019 09:30:07 GMT etag: - - '"0x8D75DE29268D6E8"' + - '"0x8D75EADDFBF44E3"' last-modified: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1559,7 +1559,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:14:58 GMT + - Fri, 01 Nov 2019 09:30:08 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1569,11 +1569,11 @@ interactions: string: '' headers: date: - - Thu, 31 Oct 2019 09:14:58 GMT + - Fri, 01 Nov 2019 09:30:09 GMT etag: - - '"0x8D75DE29268D6E8"' + - '"0x8D75EADDFBF44E3"' last-modified: - - Thu, 31 Oct 2019 09:13:19 GMT + - Fri, 01 Nov 2019 09:28:37 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1599,7 +1599,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:14:59 GMT + - Fri, 01 Nov 2019 09:30:10 GMT x-ms-meta-tag1: - value1 x-ms-version: @@ -1613,11 +1613,11 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:15:00 GMT + - Fri, 01 Nov 2019 09:30:11 GMT etag: - - '"0x8D75DE2CF3E15C9"' + - '"0x8D75EAE186FAF2A"' last-modified: - - Thu, 31 Oct 2019 09:15:01 GMT + - Fri, 01 Nov 2019 09:30:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -1635,7 +1635,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:15:02 GMT + - Fri, 01 Nov 2019 09:30:13 GMT x-ms-version: - '2019-02-02' method: GET @@ -1647,11 +1647,11 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:15:03 GMT + - Fri, 01 Nov 2019 09:30:13 GMT etag: - - '"0x8D75DE2CF3E15C9"' + - '"0x8D75EAE186FAF2A"' last-modified: - - Thu, 31 Oct 2019 09:15:01 GMT + - Fri, 01 Nov 2019 09:30:12 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-meta-hdi_isfolder: @@ -1673,7 +1673,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:15:04 GMT + - Fri, 01 Nov 2019 09:30:15 GMT x-ms-version: - '2019-02-02' method: DELETE @@ -1685,7 +1685,7 @@ interactions: content-length: - '0' date: - - Thu, 31 Oct 2019 09:15:05 GMT + - Fri, 01 Nov 2019 09:30:16 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1701,7 +1701,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Thu, 31 Oct 2019 09:15:06 GMT + - Fri, 01 Nov 2019 09:30:17 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1711,7 +1711,7 @@ interactions: string: '' headers: date: - - Thu, 31 Oct 2019 09:15:07 GMT + - Fri, 01 Nov 2019 09:30:18 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_update_service_properties.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_update_service_properties.yaml index a4ecf8159cf..7406a1a195b 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_update_service_properties.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_update_service_properties.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-30T11:54:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:39:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:23 GMT + - Fri, 01 Nov 2019 06:39:30 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:26 GMT + - Fri, 01 Nov 2019 06:39:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/3eb6fb7d-dc7d-4843-8777-9c84a60497ed?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/a2815e8a-ced6-49ad-a62b-79df35f07fda?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 202 message: Accepted @@ -114,10 +114,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/3eb6fb7d-dc7d-4843-8777-9c84a60497ed?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/a2815e8a-ced6-49ad-a62b-79df35f07fda?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/account000002","name":"account000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.4268846Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.4268846Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:27.3643395Z","primaryEndpoints":{"dfs":"https://account000002.dfs.core.windows.net/","web":"https://account000002.z4.web.core.windows.net/","blob":"https://account000002.blob.core.windows.net/","queue":"https://account000002.queue.core.windows.net/","table":"https://account000002.table.core.windows.net/","file":"https://account000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://account000002-secondary.dfs.core.windows.net/","web":"https://account000002-secondary.z4.web.core.windows.net/","blob":"https://account000002-secondary.blob.core.windows.net/","queue":"https://account000002-secondary.queue.core.windows.net/","table":"https://account000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/account000002","name":"account000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:33.8702236Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:33.8702236Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:33.8077201Z","primaryEndpoints":{"dfs":"https://account000002.dfs.core.windows.net/","web":"https://account000002.z4.web.core.windows.net/","blob":"https://account000002.blob.core.windows.net/","queue":"https://account000002.queue.core.windows.net/","table":"https://account000002.table.core.windows.net/","file":"https://account000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://account000002-secondary.dfs.core.windows.net/","web":"https://account000002-secondary.z4.web.core.windows.net/","blob":"https://account000002-secondary.blob.core.windows.net/","queue":"https://account000002-secondary.queue.core.windows.net/","table":"https://account000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -126,7 +126,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:45 GMT + - Fri, 01 Nov 2019 06:39:51 GMT expires: - '-1' pragma: @@ -177,7 +177,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:48 GMT + - Fri, 01 Nov 2019 06:39:53 GMT expires: - '-1' pragma: @@ -193,7 +193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -205,7 +205,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:49 GMT + - Fri, 01 Nov 2019 06:39:54 GMT x-ms-version: - '2018-03-28' method: GET @@ -218,7 +218,7 @@ interactions: content-type: - application/xml date: - - Wed, 30 Oct 2019 11:54:50 GMT + - Fri, 01 Nov 2019 06:39:56 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -236,7 +236,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:51 GMT + - Fri, 01 Nov 2019 06:39:57 GMT x-ms-version: - '2018-03-28' method: GET @@ -249,7 +249,7 @@ interactions: content-type: - application/xml date: - - Wed, 30 Oct 2019 11:54:51 GMT + - Fri, 01 Nov 2019 06:39:58 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -271,7 +271,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:52 GMT + - Fri, 01 Nov 2019 06:39:58 GMT x-ms-version: - '2018-03-28' method: PUT @@ -283,7 +283,7 @@ interactions: content-length: - '0' date: - - Wed, 30 Oct 2019 11:54:53 GMT + - Fri, 01 Nov 2019 06:39:59 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -299,7 +299,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:53 GMT + - Fri, 01 Nov 2019 06:39:59 GMT x-ms-version: - '2018-03-28' method: GET @@ -312,7 +312,7 @@ interactions: content-type: - application/xml date: - - Wed, 30 Oct 2019 11:54:53 GMT + - Fri, 01 Nov 2019 06:39:59 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -330,7 +330,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Wed, 30 Oct 2019 11:54:54 GMT + - Fri, 01 Nov 2019 06:40:00 GMT x-ms-version: - '2018-03-28' method: GET @@ -343,7 +343,7 @@ interactions: content-type: - application/xml date: - - Wed, 30 Oct 2019 11:54:54 GMT + - Fri, 01 Nov 2019 06:40:00 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml index 4abdbb8df5a..684b5d76b3b 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-30T11:54:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:40:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:22 GMT + - Fri, 01 Nov 2019 06:40:51 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:27 GMT + - Fri, 01 Nov 2019 06:40:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/dc821dce-e774-4cd0-b760-0f94d66ba9a3?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6acbdd2a-8a6a-4e59-ab17-4e1e105c3c03?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 202 message: Accepted @@ -114,10 +114,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/dc821dce-e774-4cd0-b760-0f94d66ba9a3?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6acbdd2a-8a6a-4e59-ab17-4e1e105c3c03?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.3521871Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.3521871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:27.2896863Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:40:54.9944265Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:40:54.9944265Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:40:54.9319200Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -126,7 +126,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:44 GMT + - Fri, 01 Nov 2019 06:41:12 GMT expires: - '-1' pragma: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml index a0f566b8896..8192cd0d4e3 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-30T11:54:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:23 GMT + - Fri, 01 Nov 2019 06:41:05 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 30 Oct 2019 11:54:28 GMT + - Fri, 01 Nov 2019 06:41:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/521adbb5-5a23-4c74-8891-6116c2863f0c?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/08486738-de8c-451a-9f57-185141d446c9?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -114,10 +114,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/521adbb5-5a23-4c74-8891-6116c2863f0c?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/08486738-de8c-451a-9f57-185141d446c9?monitor=true&api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.9932497Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.9932497Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:27.9307948Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:41:09.2150037Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -126,7 +126,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:46 GMT + - Fri, 01 Nov 2019 06:41:27 GMT expires: - '-1' pragma: @@ -166,7 +166,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.9932497Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.9932497Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:27.9307948Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:41:09.2150037Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:48 GMT + - Fri, 01 Nov 2019 06:41:29 GMT expires: - '-1' pragma: @@ -223,7 +223,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-01 response: body: - string: '{"identity":{"principalId":"104f6164-2578-4c95-a509-561e828ca115","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.9932497Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-30T11:54:27.9932497Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-30T11:54:27.9307948Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + string: '{"identity":{"principalId":"5f3c75e9-e0fd-440e-960b-078d8c8384de","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:41:09.2150037Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -232,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 30 Oct 2019 11:54:52 GMT + - Fri, 01 Nov 2019 06:41:35 GMT expires: - '-1' pragma: @@ -248,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 200 message: OK diff --git a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py index e29b0e812fc..ba0b6fdbafd 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py +++ b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py @@ -13,10 +13,11 @@ @api_version_constraint(CUSTOM_MGMT_STORAGE, min_api='2016-12-01') -class StorageBlobDirectoryTests(StorageScenarioMixin, ScenarioTest): +class StorageADLSTests(StorageScenarioMixin, ScenarioTest): + @api_version_constraint(CUSTOM_MGMT_STORAGE, min_api='2018-02-01') @StorageTestFilesPreparer() @ResourceGroupPreparer(location='westcentralus') - def test_storage_blob_directory(self, resource_group, test_dir): + def test_storage_adls_blob(self, resource_group, test_dir): storage_account = self.create_random_name(prefix='clitestaldsaccount', length=24) self.kwargs.update({ 'sc': storage_account, From 65a962c7a0a05cd11b96fed148649ea1e303339d Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Fri, 1 Nov 2019 17:34:57 +0800 Subject: [PATCH 18/21] update index.json --- src/index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.json b/src/index.json index 842520ee219..049992402f9 100644 --- a/src/index.json +++ b/src/index.json @@ -2170,7 +2170,7 @@ "summary": "Provides a preview for upcoming storage features.", "version": "0.2.9" }, - "sha256Digest": "bafa644582d2a6f063d7a94fa5aa8ba760db26898499d642b8a89f4d7040623d" + "sha256Digest": "6495be3d57524bed5ebd7bfa81fbff300010c514596fd4ac23778746d9ff7f8a" } ], "subscription": [ From e6fabe4b14e2d411dbc64f56422c3488256f7c2a Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Fri, 1 Nov 2019 23:57:16 +0800 Subject: [PATCH 19/21] fix help_entry --- src/storage-preview/azext_storage_preview/_help.py | 8 ++++++++ .../tests/latest/test_storage_adls_scenarios.py | 3 +-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/storage-preview/azext_storage_preview/_help.py b/src/storage-preview/azext_storage_preview/_help.py index 560edb4e038..afad410cf52 100644 --- a/src/storage-preview/azext_storage_preview/_help.py +++ b/src/storage-preview/azext_storage_preview/_help.py @@ -18,6 +18,14 @@ text: az storage account create -n MyStorageAccount -g MyResourceGroup -l westus --sku Standard_LRS """ +helps['storage account keys list'] = """ +type: command +short-summary: List the access keys or Kerberos keys (if active directory enabled) for a storage account. +examples: + - name: List the access keys for a storage account. + text: az storage account keys list -g MyResourceGroup -n MyStorageAccount +""" + helps['storage account update'] = """ type: command short-summary: Update the properties of a storage account. diff --git a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py index ba0b6fdbafd..74fc9309a48 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py +++ b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py @@ -12,11 +12,10 @@ from ...profiles import CUSTOM_MGMT_STORAGE -@api_version_constraint(CUSTOM_MGMT_STORAGE, min_api='2016-12-01') class StorageADLSTests(StorageScenarioMixin, ScenarioTest): @api_version_constraint(CUSTOM_MGMT_STORAGE, min_api='2018-02-01') @StorageTestFilesPreparer() - @ResourceGroupPreparer(location='westcentralus') + @ResourceGroupPreparer() def test_storage_adls_blob(self, resource_group, test_dir): storage_account = self.create_random_name(prefix='clitestaldsaccount', length=24) self.kwargs.update({ From 1b28b7a871d5818c8f183f56e3e59cf809b4bf81 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Sat, 2 Nov 2019 00:38:44 +0800 Subject: [PATCH 20/21] re-record test --- ...st_create_storage_account_premium_sku.yaml | 40 +- ...torage_account_with_assigned_identity.yaml | 18 +- .../recordings/test_management_policy.yaml | 44 +- .../recordings/test_storage_adls_blob.yaml | 676 +++++++++--------- ...torage_blob_update_service_properties.yaml | 42 +- .../test_storage_create_default_sku.yaml | 18 +- ...torage_account_with_assigned_identity.yaml | 28 +- .../latest/test_storage_adls_scenarios.py | 4 +- 8 files changed, 435 insertions(+), 435 deletions(-) diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_premium_sku.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_premium_sku.yaml index e4fcb118761..f5cc8af2db5 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_premium_sku.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_premium_sku.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T16:31:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 06:38:55 GMT + - Fri, 01 Nov 2019 16:31:43 GMT expires: - '-1' pragma: @@ -80,11 +80,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 06:38:58 GMT + - Fri, 01 Nov 2019 16:31:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/b5e69ba5-8573-4565-a009-1a8db4147f8f?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/ac3cf3dd-93a5-4415-850b-0c3fffe9e149?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -94,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 202 message: Accepted @@ -115,10 +115,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/b5e69ba5-8573-4565-a009-1a8db4147f8f?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/ac3cf3dd-93a5-4415-850b-0c3fffe9e149?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:59.2406430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:38:59.2406430Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:38:59.1780980Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z16.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:47.5720321Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:47.5720321Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T16:31:47.4939049Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z16.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -127,7 +127,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:16 GMT + - Fri, 01 Nov 2019 16:32:06 GMT expires: - '-1' pragma: @@ -181,7 +181,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:18 GMT + - Fri, 01 Nov 2019 16:32:08 GMT expires: - '-1' pragma: @@ -218,10 +218,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T16:31:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -230,7 +230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 06:39:19 GMT + - Fri, 01 Nov 2019 16:32:08 GMT expires: - '-1' pragma: @@ -279,11 +279,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 06:39:23 GMT + - Fri, 01 Nov 2019 16:32:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/57e51f37-db4d-4b49-9e9b-435a8f7f4253?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/a6584adb-56d0-4c48-beac-29ba022c7900?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -293,7 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -314,10 +314,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/57e51f37-db4d-4b49-9e9b-435a8f7f4253?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/northeurope/asyncoperations/a6584adb-56d0-4c48-beac-29ba022c7900?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000003","name":"cli000003","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:23.6493195Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:23.6493195Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:23.5868191Z","primaryEndpoints":{"file":"https://cli000003.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000003","name":"cli000003","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:32:12.8130180Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:32:12.8130180Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T16:32:12.7504902Z","primaryEndpoints":{"file":"https://cli000003.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -326,7 +326,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:42 GMT + - Fri, 01 Nov 2019 16:32:31 GMT expires: - '-1' pragma: @@ -380,7 +380,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:44 GMT + - Fri, 01 Nov 2019 16:32:33 GMT expires: - '-1' pragma: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml index e57c04357e4..227abdfa7bc 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T16:31:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 06:38:55 GMT + - Fri, 01 Nov 2019 16:31:44 GMT expires: - '-1' pragma: @@ -80,11 +80,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 06:39:03 GMT + - Fri, 01 Nov 2019 16:31:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/9b126601-ac65-43cb-9268-6e3fa5f5a0f4?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/dbb47b39-201a-4ff6-b326-47207f861fbf?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -94,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -115,10 +115,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/9b126601-ac65-43cb-9268-6e3fa5f5a0f4?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/dbb47b39-201a-4ff6-b326-47207f861fbf?monitor=true&api-version=2018-07-01 response: body: - string: '{"identity":{"principalId":"1486e5d6-a0d3-4411-8703-127bf0b859e8","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:02.5622104Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:02.5622104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:02.5153133Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + string: '{"identity":{"principalId":"8b0bfa7c-dfbd-4bc8-b5dd-b0ef604bec9d","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:51.6528396Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:51.6528396Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T16:31:51.5902559Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -127,7 +127,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:20 GMT + - Fri, 01 Nov 2019 16:32:10 GMT expires: - '-1' pragma: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_management_policy.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_management_policy.yaml index f1622879b77..7183090c4fe 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_management_policy.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_management_policy.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T16:31:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 06:38:56 GMT + - Fri, 01 Nov 2019 16:31:45 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 06:39:00 GMT + - Fri, 01 Nov 2019 16:31:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/6bf19dfc-5583-4e94-b39d-332efea4644b?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/a9bece66-fc04-4979-9ab1-6bcd42a2681b?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -114,10 +114,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/6bf19dfc-5583-4e94-b39d-332efea4644b?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/a9bece66-fc04-4979-9ab1-6bcd42a2681b?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:00.9380077Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:00.9380077Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:00.8911525Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z3.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://cli000002-secondary.dfs.core.windows.net/","web":"https://cli000002-secondary.z3.web.core.windows.net/","blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:50.4159081Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:50.4159081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T16:31:50.3846225Z","primaryEndpoints":{"dfs":"https://cli000002.dfs.core.windows.net/","web":"https://cli000002.z3.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://cli000002-secondary.dfs.core.windows.net/","web":"https://cli000002-secondary.z3.web.core.windows.net/","blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -126,7 +126,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:18 GMT + - Fri, 01 Nov 2019 16:32:08 GMT expires: - '-1' pragma: @@ -175,7 +175,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default?api-version=2018-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T06:39:22.2890962Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T16:32:10.9205316Z"}}' headers: cache-control: - no-cache @@ -184,7 +184,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:22 GMT + - Fri, 01 Nov 2019 16:32:10 GMT expires: - '-1' pragma: @@ -200,7 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 200 message: OK @@ -226,7 +226,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default?api-version=2018-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T06:39:22.2890962Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T16:32:10.9205316Z"}}' headers: cache-control: - no-cache @@ -235,7 +235,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:23 GMT + - Fri, 01 Nov 2019 16:32:12 GMT expires: - '-1' pragma: @@ -283,7 +283,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default?api-version=2018-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"newname","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T06:39:25.5391383Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"newname","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T16:32:13.6238167Z"}}' headers: cache-control: - no-cache @@ -292,7 +292,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:25 GMT + - Fri, 01 Nov 2019 16:32:13 GMT expires: - '-1' pragma: @@ -308,7 +308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -334,7 +334,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default?api-version=2018-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"newname","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T06:39:25.5391383Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"version":"0.5","rules":[{"name":"newname","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":1000.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":5000.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2019-11-01T16:32:13.6238167Z"}}' headers: cache-control: - no-cache @@ -343,7 +343,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:26 GMT + - Fri, 01 Nov 2019 16:32:14 GMT expires: - '-1' pragma: @@ -394,7 +394,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 06:39:28 GMT + - Fri, 01 Nov 2019 16:32:16 GMT expires: - '-1' pragma: @@ -406,7 +406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 200 message: OK @@ -442,7 +442,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:29 GMT + - Fri, 01 Nov 2019 16:32:17 GMT expires: - '-1' pragma: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_adls_blob.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_adls_blob.yaml index 185601c0717..83326dd08a6 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_adls_blob.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_adls_blob.yaml @@ -18,19 +18,19 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T09:27:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T16:11:13Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 09:28:02 GMT + - Fri, 01 Nov 2019 16:11:26 GMT expires: - '-1' pragma: @@ -45,7 +45,7 @@ interactions: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_RAGRS"}, "kind": "StorageV2", "location": "westcentralus", + body: '{"sku": {"name": "Standard_RAGRS"}, "kind": "StorageV2", "location": "westus", "properties": {"isHnsEnabled": true}}' headers: Accept: @@ -57,7 +57,7 @@ interactions: Connection: - keep-alive Content-Length: - - '123' + - '116' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -80,11 +80,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 09:28:05 GMT + - Fri, 01 Nov 2019 16:11:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/220cfec5-67d6-4f6c-81a3-aba78fa2ec0d?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b801b21b-ce06-4b18-aca9-6a79e250c8ab?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -94,7 +94,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -115,19 +115,19 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/220cfec5-67d6-4f6c-81a3-aba78fa2ec0d?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b801b21b-ce06-4b18-aca9-6a79e250c8ab?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitestaldsaccount000002","name":"clitestaldsaccount000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T09:28:05.7132344Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T09:28:05.7132344Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T09:28:05.6663800Z","primaryEndpoints":{"dfs":"https://clitestaldsaccount000002.dfs.core.windows.net/","web":"https://clitestaldsaccount000002.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002.blob.core.windows.net/","queue":"https://clitestaldsaccount000002.queue.core.windows.net/","table":"https://clitestaldsaccount000002.table.core.windows.net/","file":"https://clitestaldsaccount000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestaldsaccount000002-secondary.dfs.core.windows.net/","web":"https://clitestaldsaccount000002-secondary.z4.web.core.windows.net/","blob":"https://clitestaldsaccount000002-secondary.blob.core.windows.net/","queue":"https://clitestaldsaccount000002-secondary.queue.core.windows.net/","table":"https://clitestaldsaccount000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitestaldsaccount000002","name":"clitestaldsaccount000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:11:30.2400812Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:11:30.2400812Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T16:11:30.1463394Z","primaryEndpoints":{"dfs":"https://clitestaldsaccount000002.dfs.core.windows.net/","web":"https://clitestaldsaccount000002.z22.web.core.windows.net/","blob":"https://clitestaldsaccount000002.blob.core.windows.net/","queue":"https://clitestaldsaccount000002.queue.core.windows.net/","table":"https://clitestaldsaccount000002.table.core.windows.net/","file":"https://clitestaldsaccount000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestaldsaccount000002-secondary.dfs.core.windows.net/","web":"https://clitestaldsaccount000002-secondary.z22.web.core.windows.net/","blob":"https://clitestaldsaccount000002-secondary.blob.core.windows.net/","queue":"https://clitestaldsaccount000002-secondary.queue.core.windows.net/","table":"https://clitestaldsaccount000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache content-length: - - '1818' + - '1805' content-type: - application/json date: - - Fri, 01 Nov 2019 09:28:24 GMT + - Fri, 01 Nov 2019 16:11:48 GMT expires: - '-1' pragma: @@ -178,7 +178,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 09:28:26 GMT + - Fri, 01 Nov 2019 16:11:49 GMT expires: - '-1' pragma: @@ -208,7 +208,7 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:28:28 GMT + - Fri, 01 Nov 2019 16:11:51 GMT x-ms-version: - '2018-11-09' method: PUT @@ -220,11 +220,11 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:28:32 GMT + - Fri, 01 Nov 2019 16:11:52 GMT etag: - - '"0x8D75EADDC4548AA"' + - '"0x8D75EE6350D0B12"' last-modified: - - Fri, 01 Nov 2019 09:28:31 GMT + - Fri, 01 Nov 2019 16:11:52 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -240,7 +240,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:28:32 GMT + - Fri, 01 Nov 2019 16:11:53 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -250,7 +250,7 @@ interactions: string: '' headers: date: - - Fri, 01 Nov 2019 09:28:34 GMT + - Fri, 01 Nov 2019 16:11:55 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -272,7 +272,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:28:35 GMT + - Fri, 01 Nov 2019 16:11:55 GMT x-ms-version: - '2019-02-02' method: PUT @@ -284,11 +284,11 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:28:36 GMT + - Fri, 01 Nov 2019 16:11:57 GMT etag: - - '"0x8D75EADDFBF44E3"' + - '"0x8D75EE6380ECFE3"' last-modified: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -304,7 +304,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -320,11 +320,11 @@ interactions: content-type: - application/octet-stream date: - - Fri, 01 Nov 2019 09:28:39 GMT + - Fri, 01 Nov 2019 16:12:01 GMT etag: - - '"0x8D75EADDFBF44E3"' + - '"0x8D75EE6380ECFE3"' last-modified: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-access-tier: @@ -334,7 +334,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -356,7 +356,7 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:28:40 GMT + - Fri, 01 Nov 2019 16:12:02 GMT x-ms-version: - '2018-11-09' method: GET @@ -366,8 +366,8 @@ interactions: string: "\uFEFF5000testdirectoryFri, - 01 Nov 2019 09:28:37 GMTFri, 01 Nov 2019 09:28:37 - GMT0x8D75EADDFBF44E30application/octet-streamFri, 01 Nov 2019 16:11:57 + GMT0x8D75EE6380ECFE30application/octet-streamBlockBlobHottrueunlockedtrue" @@ -375,7 +375,7 @@ interactions: content-type: - application/xml date: - - Fri, 01 Nov 2019 09:28:40 GMT + - Fri, 01 Nov 2019 16:12:02 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -393,7 +393,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:28:42 GMT + - Fri, 01 Nov 2019 16:12:04 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -409,11 +409,11 @@ interactions: content-type: - application/octet-stream date: - - Fri, 01 Nov 2019 09:28:44 GMT + - Fri, 01 Nov 2019 16:12:05 GMT etag: - - '"0x8D75EADDFBF44E3"' + - '"0x8D75EE6380ECFE3"' last-modified: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-access-tier: @@ -423,7 +423,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -445,7 +445,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:28:51 GMT + - Fri, 01 Nov 2019 16:12:10 GMT x-ms-version: - '2019-02-02' method: GET @@ -455,8 +455,8 @@ interactions: string: "\uFEFFtestdirectory/testdirectory/readmeFri, - 01 Nov 2019 09:28:48 GMTFri, 01 Nov 2019 09:28:48 - GMT0x8D75EADE676CA7187text/plain; + 01 Nov 2019 16:12:08 GMTFri, 01 Nov 2019 16:12:08 + GMT0x8D75EE63EF0E44987text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruetestdirectory/testdirectory/appleFri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9CBBF1A0Fri, 01 Nov 2019 16:12:13 + GMT0x8D75EE6419008C00BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA19750F128text/plain; + 01 Nov 2019 16:12:14 GMTFri, 01 Nov 2019 16:12:14 + GMT0x8D75EE6420FB9AE128text/plain; charset=utf-87p9Oc3c/J+LdjDRRPg7dng==y8ylNhtYECZ4tm1cNOi0lw==BlockBlobHottrueunlockedtruetestdirectory/apple/file_1Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA07252E128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE6419088FB128text/plain; charset=utf-8Gs49yId3oQyljk34/nbhsg==0K4XkWOxSAnaEu7VFisEeg==BlockBlobHottrueunlockedtruetestdirectory/apple/file_2Fri, - 01 Nov 2019 09:28:55 GMTFri, 01 Nov 2019 09:28:55 - GMT0x8D75EADEA6C7A6F128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641923F66128text/plain; charset=utf-8v9o7LG6XrjqF+VXyYl4PFA==/BpmFLYHvDGwVphT24M/Ww==BlockBlobHottrueunlockedtruetestdirectory/apple/file_3Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA4746DB128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641BA35EB128text/plain; charset=utf-8JX7U7ugcwdf/TBYMw1y4PA==kYEU/qlXr90CbxmqaBeTZw==BlockBlobHottrueunlockedtruetestdirectory/apple/file_4Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9F8692C128text/plain; + 01 Nov 2019 16:12:21 GMTFri, 01 Nov 2019 16:12:21 + GMT0x8D75EE64648C78E128text/plain; charset=utf-8egkoZJga4YhJrPQsbUXqWA==64QvSiJwOnq47RCeo+zC2A==BlockBlobHottrueunlockedtruetestdirectory/apple/file_5Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA29C2A0128text/plain; + 01 Nov 2019 16:12:14 GMTFri, 01 Nov 2019 16:12:14 + GMT0x8D75EE64217AC73128text/plain; charset=utf-89l2rzds87KUQ4g7V3AnbiA==48mKsZUjcyPro5r/Tk/PQQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_6Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA016D3C128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE64190A957128text/plain; charset=utf-8N7tvvws6sTbbhdFUnAFEWg==5SXtcdjl0/rYJgCdGKjTxQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_7Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9F64D97128text/plain; + 01 Nov 2019 16:12:30 GMTFri, 01 Nov 2019 16:12:30 + GMT0x8D75EE64BF6D1E0128text/plain; charset=utf-8A74dmgW4+rCGg1pzSunHQg==kbZs47U++8F2TcVuQRwX2g==BlockBlobHottrueunlockedtruetestdirectory/apple/file_8Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9CC5EEC128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641CC09D4128text/plain; charset=utf-8kU+nRmLO01uqbPOmrmMQwQ==WzcUljskLgAp8DrrJZNERA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_9Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA1976BB128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641C365C9128text/plain; charset=utf-8GuzQAMoxAiql8jMTqzD/xA==0uWGv15PDLqdwQibBM6gHA==BlockBlobHottrueunlockedtruetestdirectory/readmeFri, - 01 Nov 2019 09:28:48 GMTFri, 01 Nov 2019 09:28:48 - GMT0x8D75EADE676CA7187text/plain; + 01 Nov 2019 16:12:08 GMTFri, 01 Nov 2019 16:12:08 + GMT0x8D75EE63EF0E44987text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruetestdirectory/testdirectory/appleFri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9CBBF1A0Fri, 01 Nov 2019 16:12:13 + GMT0x8D75EE6419008C00BlockBlobHottrueunlockedtruetruetestdirectory/apple/file_0Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA19750F128text/plain; + 01 Nov 2019 16:12:14 GMTFri, 01 Nov 2019 16:12:14 + GMT0x8D75EE6420FB9AE128text/plain; charset=utf-87p9Oc3c/J+LdjDRRPg7dng==y8ylNhtYECZ4tm1cNOi0lw==BlockBlobHottrueunlockedtruetestdirectory/apple/file_1Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA07252E128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE6419088FB128text/plain; charset=utf-8Gs49yId3oQyljk34/nbhsg==0K4XkWOxSAnaEu7VFisEeg==BlockBlobHottrueunlockedtruetestdirectory/apple/file_2Fri, - 01 Nov 2019 09:28:55 GMTFri, 01 Nov 2019 09:28:55 - GMT0x8D75EADEA6C7A6F128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641923F66128text/plain; charset=utf-8v9o7LG6XrjqF+VXyYl4PFA==/BpmFLYHvDGwVphT24M/Ww==BlockBlobHottrueunlockedtruetestdirectory/apple/file_3Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA4746DB128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641BA35EB128text/plain; charset=utf-8JX7U7ugcwdf/TBYMw1y4PA==kYEU/qlXr90CbxmqaBeTZw==BlockBlobHottrueunlockedtruetestdirectory/apple/file_4Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9F8692C128text/plain; + 01 Nov 2019 16:12:21 GMTFri, 01 Nov 2019 16:12:21 + GMT0x8D75EE64648C78E128text/plain; charset=utf-8egkoZJga4YhJrPQsbUXqWA==64QvSiJwOnq47RCeo+zC2A==BlockBlobHottrueunlockedtruetestdirectory/apple/file_5Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA29C2A0128text/plain; + 01 Nov 2019 16:12:14 GMTFri, 01 Nov 2019 16:12:14 + GMT0x8D75EE64217AC73128text/plain; charset=utf-89l2rzds87KUQ4g7V3AnbiA==48mKsZUjcyPro5r/Tk/PQQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_6Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA016D3C128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE64190A957128text/plain; charset=utf-8N7tvvws6sTbbhdFUnAFEWg==5SXtcdjl0/rYJgCdGKjTxQ==BlockBlobHottrueunlockedtruetestdirectory/apple/file_7Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9F64D97128text/plain; + 01 Nov 2019 16:12:30 GMTFri, 01 Nov 2019 16:12:30 + GMT0x8D75EE64BF6D1E0128text/plain; charset=utf-8A74dmgW4+rCGg1pzSunHQg==kbZs47U++8F2TcVuQRwX2g==BlockBlobHottrueunlockedtruetestdirectory/apple/file_8Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9CC5EEC128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641CC09D4128text/plain; charset=utf-8kU+nRmLO01uqbPOmrmMQwQ==WzcUljskLgAp8DrrJZNERA==BlockBlobHottrueunlockedtruetestdirectory/apple/file_9Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA1976BB128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641C365C9128text/plain; charset=utf-8GuzQAMoxAiql8jMTqzD/xA==0uWGv15PDLqdwQibBM6gHA==BlockBlobHottrueunlockedtruetestdirectory/file_0Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEB69D4C129text/plain; + 01 Nov 2019 16:12:51 GMTFri, 01 Nov 2019 16:12:51 + GMT0x8D75EE658369E07129text/plain; charset=utf-89goDTaXj76CpXTEUH8pYtQ==Y4olQ4PqZ1uB5mvKdGIgeQ==BlockBlobHottrueunlockedtruetestdirectory/file_1Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEED33B50129text/plain; + 01 Nov 2019 16:12:56 GMTFri, 01 Nov 2019 16:12:56 + GMT0x8D75EE65B83B22B129text/plain; charset=utf-8bsBVCSFBZAwqk1cyqjOWJA==X9z04O+8YsJ4lM0UZVtxTQ==BlockBlobHottrueunlockedtruetestdirectory/file_2Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEA6E9DE129text/plain; + 01 Nov 2019 16:13:06 GMTFri, 01 Nov 2019 16:13:06 + GMT0x8D75EE6614A9CC2129text/plain; charset=utf-8W7Oq7KjJ6oqVveCngy/pVQ==mUtkd0QpjkdVUrMRlwmsWA==BlockBlobHottrueunlockedtruetestdirectory/file_3Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEC5DF22129text/plain; + 01 Nov 2019 16:13:05 GMTFri, 01 Nov 2019 16:13:05 + GMT0x8D75EE660B45469129text/plain; charset=utf-85ciSW92QbMD+qi+5BtMcTQ==fxvYrq0OsEk5u3tM0JDKZg==BlockBlobHottrueunlockedtruetestdirectory/file_4Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEF83083129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE6579DBC63129text/plain; charset=utf-8Ees5xoFgg0vlMYsWiesbCg==Nl/VyRlQfa1j7BRpd3/N6Q==BlockBlobHottrueunlockedtruetestdirectory/file_5Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEECF1F44129text/plain; + 01 Nov 2019 16:13:10 GMTFri, 01 Nov 2019 16:13:10 + GMT0x8D75EE663840378129text/plain; charset=utf-83PIL54zkzwnZgWXYw3iatg==uxFh7WN4NCiYXOZaVE/Ugw==BlockBlobHottrueunlockedtruetestdirectory/file_6Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEE58955129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657DF55B3129text/plain; charset=utf-8FGBvPcq7UOnH7BuvptXpLQ==ZdC1G3L6u+tPgPxHbhBuKA==BlockBlobHottrueunlockedtruetestdirectory/file_7Fri, - 01 Nov 2019 09:29:03 GMTFri, 01 Nov 2019 09:29:03 - GMT0x8D75EADEF1DC984129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657E503CE129text/plain; charset=utf-8WiacTPJIyIIQKTONrya/1w==dA4lzNai5H9ckCqhhprq9Q==BlockBlobHottrueunlockedtruetestdirectory/file_8Fri, - 01 Nov 2019 09:29:05 GMTFri, 01 Nov 2019 09:29:05 - GMT0x8D75EADF0D7627A129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657D1731D129text/plain; charset=utf-8tu00WAsChFoXEa2cBbYxfw==6Z86flfTAzGY5Swr33u6bQ==BlockBlobHottrueunlockedtruetestdirectory/file_9Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEE8F62BD129text/plain; + 01 Nov 2019 16:12:51 GMTFri, 01 Nov 2019 16:12:51 + GMT0x8D75EE6587D0301129text/plain; charset=utf-83cL0Z0vTZUQ9Z2nlxp1eEw==avQwNfb/x74WogV+DU2prQ==BlockBlobHottrueunlockedtruetestdirectory/readmeFri, - 01 Nov 2019 09:28:48 GMTFri, 01 Nov 2019 09:28:48 - GMT0x8D75EADE676CA7187text/plain; + 01 Nov 2019 16:12:08 GMTFri, 01 Nov 2019 16:12:08 + GMT0x8D75EE63EF0E44987text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruedesdirectory/desdirectory/appleFri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9CBBF1A0Fri, 01 Nov 2019 16:12:13 + GMT0x8D75EE6419008C00BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA19750F128text/plain; + 01 Nov 2019 16:12:14 GMTFri, 01 Nov 2019 16:12:14 + GMT0x8D75EE6420FB9AE128text/plain; charset=utf-87p9Oc3c/J+LdjDRRPg7dng==y8ylNhtYECZ4tm1cNOi0lw==BlockBlobHottrueunlockedtruedesdirectory/apple/file_1Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA07252E128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE6419088FB128text/plain; charset=utf-8Gs49yId3oQyljk34/nbhsg==0K4XkWOxSAnaEu7VFisEeg==BlockBlobHottrueunlockedtruedesdirectory/apple/file_2Fri, - 01 Nov 2019 09:28:55 GMTFri, 01 Nov 2019 09:28:55 - GMT0x8D75EADEA6C7A6F128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641923F66128text/plain; charset=utf-8v9o7LG6XrjqF+VXyYl4PFA==/BpmFLYHvDGwVphT24M/Ww==BlockBlobHottrueunlockedtruedesdirectory/apple/file_3Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA4746DB128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641BA35EB128text/plain; charset=utf-8JX7U7ugcwdf/TBYMw1y4PA==kYEU/qlXr90CbxmqaBeTZw==BlockBlobHottrueunlockedtruedesdirectory/apple/file_4Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9F8692C128text/plain; + 01 Nov 2019 16:12:21 GMTFri, 01 Nov 2019 16:12:21 + GMT0x8D75EE64648C78E128text/plain; charset=utf-8egkoZJga4YhJrPQsbUXqWA==64QvSiJwOnq47RCeo+zC2A==BlockBlobHottrueunlockedtruedesdirectory/apple/file_5Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA29C2A0128text/plain; + 01 Nov 2019 16:12:14 GMTFri, 01 Nov 2019 16:12:14 + GMT0x8D75EE64217AC73128text/plain; charset=utf-89l2rzds87KUQ4g7V3AnbiA==48mKsZUjcyPro5r/Tk/PQQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_6Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA016D3C128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE64190A957128text/plain; charset=utf-8N7tvvws6sTbbhdFUnAFEWg==5SXtcdjl0/rYJgCdGKjTxQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_7Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9F64D97128text/plain; + 01 Nov 2019 16:12:30 GMTFri, 01 Nov 2019 16:12:30 + GMT0x8D75EE64BF6D1E0128text/plain; charset=utf-8A74dmgW4+rCGg1pzSunHQg==kbZs47U++8F2TcVuQRwX2g==BlockBlobHottrueunlockedtruedesdirectory/apple/file_8Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9CC5EEC128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641CC09D4128text/plain; charset=utf-8kU+nRmLO01uqbPOmrmMQwQ==WzcUljskLgAp8DrrJZNERA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_9Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA1976BB128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641C365C9128text/plain; charset=utf-8GuzQAMoxAiql8jMTqzD/xA==0uWGv15PDLqdwQibBM6gHA==BlockBlobHottrueunlockedtruedesdirectory/file_0Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEB69D4C129text/plain; + 01 Nov 2019 16:12:51 GMTFri, 01 Nov 2019 16:12:51 + GMT0x8D75EE658369E07129text/plain; charset=utf-89goDTaXj76CpXTEUH8pYtQ==Y4olQ4PqZ1uB5mvKdGIgeQ==BlockBlobHottrueunlockedtruedesdirectory/file_1Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEED33B50129text/plain; + 01 Nov 2019 16:12:56 GMTFri, 01 Nov 2019 16:12:56 + GMT0x8D75EE65B83B22B129text/plain; charset=utf-8bsBVCSFBZAwqk1cyqjOWJA==X9z04O+8YsJ4lM0UZVtxTQ==BlockBlobHottrueunlockedtruedesdirectory/file_2Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEA6E9DE129text/plain; + 01 Nov 2019 16:13:06 GMTFri, 01 Nov 2019 16:13:06 + GMT0x8D75EE6614A9CC2129text/plain; charset=utf-8W7Oq7KjJ6oqVveCngy/pVQ==mUtkd0QpjkdVUrMRlwmsWA==BlockBlobHottrueunlockedtruedesdirectory/file_3Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEC5DF22129text/plain; + 01 Nov 2019 16:13:05 GMTFri, 01 Nov 2019 16:13:05 + GMT0x8D75EE660B45469129text/plain; charset=utf-85ciSW92QbMD+qi+5BtMcTQ==fxvYrq0OsEk5u3tM0JDKZg==BlockBlobHottrueunlockedtruedesdirectory/file_4Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEF83083129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE6579DBC63129text/plain; charset=utf-8Ees5xoFgg0vlMYsWiesbCg==Nl/VyRlQfa1j7BRpd3/N6Q==BlockBlobHottrueunlockedtruedesdirectory/file_5Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEECF1F44129text/plain; + 01 Nov 2019 16:13:10 GMTFri, 01 Nov 2019 16:13:10 + GMT0x8D75EE663840378129text/plain; charset=utf-83PIL54zkzwnZgWXYw3iatg==uxFh7WN4NCiYXOZaVE/Ugw==BlockBlobHottrueunlockedtruedesdirectory/file_6Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEE58955129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657DF55B3129text/plain; charset=utf-8FGBvPcq7UOnH7BuvptXpLQ==ZdC1G3L6u+tPgPxHbhBuKA==BlockBlobHottrueunlockedtruedesdirectory/file_7Fri, - 01 Nov 2019 09:29:03 GMTFri, 01 Nov 2019 09:29:03 - GMT0x8D75EADEF1DC984129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657E503CE129text/plain; charset=utf-8WiacTPJIyIIQKTONrya/1w==dA4lzNai5H9ckCqhhprq9Q==BlockBlobHottrueunlockedtruedesdirectory/file_8Fri, - 01 Nov 2019 09:29:05 GMTFri, 01 Nov 2019 09:29:05 - GMT0x8D75EADF0D7627A129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657D1731D129text/plain; charset=utf-8tu00WAsChFoXEa2cBbYxfw==6Z86flfTAzGY5Swr33u6bQ==BlockBlobHottrueunlockedtruedesdirectory/file_9Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEE8F62BD129text/plain; + 01 Nov 2019 16:12:51 GMTFri, 01 Nov 2019 16:12:51 + GMT0x8D75EE6587D0301129text/plain; charset=utf-83cL0Z0vTZUQ9Z2nlxp1eEw==avQwNfb/x74WogV+DU2prQ==BlockBlobHottrueunlockedtruedesdirectory/readmeFri, - 01 Nov 2019 09:28:48 GMTFri, 01 Nov 2019 09:28:48 - GMT0x8D75EADE676CA7187text/plain; + 01 Nov 2019 16:12:08 GMTFri, 01 Nov 2019 16:12:08 + GMT0x8D75EE63EF0E44987text/plain; charset=utf-8sYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedtruedesdirectory/desdirectory/appleFri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9CBBF1A0Fri, 01 Nov 2019 16:12:13 + GMT0x8D75EE6419008C00BlockBlobHottrueunlockedtruetruedesdirectory/apple/file_0Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA19750F128text/plain; + 01 Nov 2019 16:12:14 GMTFri, 01 Nov 2019 16:12:14 + GMT0x8D75EE6420FB9AE128text/plain; charset=utf-87p9Oc3c/J+LdjDRRPg7dng==y8ylNhtYECZ4tm1cNOi0lw==BlockBlobHottrueunlockedtruedesdirectory/apple/file_1Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA07252E128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE6419088FB128text/plain; charset=utf-8Gs49yId3oQyljk34/nbhsg==0K4XkWOxSAnaEu7VFisEeg==BlockBlobHottrueunlockedtruedesdirectory/apple/file_2Fri, - 01 Nov 2019 09:28:55 GMTFri, 01 Nov 2019 09:28:55 - GMT0x8D75EADEA6C7A6F128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641923F66128text/plain; charset=utf-8v9o7LG6XrjqF+VXyYl4PFA==/BpmFLYHvDGwVphT24M/Ww==BlockBlobHottrueunlockedtruedesdirectory/apple/file_3Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA4746DB128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641BA35EB128text/plain; charset=utf-8JX7U7ugcwdf/TBYMw1y4PA==kYEU/qlXr90CbxmqaBeTZw==BlockBlobHottrueunlockedtruedesdirectory/apple/file_4Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9F8692C128text/plain; + 01 Nov 2019 16:12:21 GMTFri, 01 Nov 2019 16:12:21 + GMT0x8D75EE64648C78E128text/plain; charset=utf-8egkoZJga4YhJrPQsbUXqWA==64QvSiJwOnq47RCeo+zC2A==BlockBlobHottrueunlockedtruedesdirectory/apple/file_5Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA29C2A0128text/plain; + 01 Nov 2019 16:12:14 GMTFri, 01 Nov 2019 16:12:14 + GMT0x8D75EE64217AC73128text/plain; charset=utf-89l2rzds87KUQ4g7V3AnbiA==48mKsZUjcyPro5r/Tk/PQQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_6Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA016D3C128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE64190A957128text/plain; charset=utf-8N7tvvws6sTbbhdFUnAFEWg==5SXtcdjl0/rYJgCdGKjTxQ==BlockBlobHottrueunlockedtruedesdirectory/apple/file_7Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9F64D97128text/plain; + 01 Nov 2019 16:12:30 GMTFri, 01 Nov 2019 16:12:30 + GMT0x8D75EE64BF6D1E0128text/plain; charset=utf-8A74dmgW4+rCGg1pzSunHQg==kbZs47U++8F2TcVuQRwX2g==BlockBlobHottrueunlockedtruedesdirectory/apple/file_8Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADE9CC5EEC128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641CC09D4128text/plain; charset=utf-8kU+nRmLO01uqbPOmrmMQwQ==WzcUljskLgAp8DrrJZNERA==BlockBlobHottrueunlockedtruedesdirectory/apple/file_9Fri, - 01 Nov 2019 09:28:54 GMTFri, 01 Nov 2019 09:28:54 - GMT0x8D75EADEA1976BB128text/plain; + 01 Nov 2019 16:12:13 GMTFri, 01 Nov 2019 16:12:13 + GMT0x8D75EE641C365C9128text/plain; charset=utf-8GuzQAMoxAiql8jMTqzD/xA==0uWGv15PDLqdwQibBM6gHA==BlockBlobHottrueunlockedtruedesdirectory/file_0Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEB69D4C129text/plain; + 01 Nov 2019 16:12:51 GMTFri, 01 Nov 2019 16:12:51 + GMT0x8D75EE658369E07129text/plain; charset=utf-89goDTaXj76CpXTEUH8pYtQ==Y4olQ4PqZ1uB5mvKdGIgeQ==BlockBlobHottrueunlockedtruedesdirectory/file_1Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEED33B50129text/plain; + 01 Nov 2019 16:12:56 GMTFri, 01 Nov 2019 16:12:56 + GMT0x8D75EE65B83B22B129text/plain; charset=utf-8bsBVCSFBZAwqk1cyqjOWJA==X9z04O+8YsJ4lM0UZVtxTQ==BlockBlobHottrueunlockedtruedesdirectory/file_2Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEA6E9DE129text/plain; + 01 Nov 2019 16:13:06 GMTFri, 01 Nov 2019 16:13:06 + GMT0x8D75EE6614A9CC2129text/plain; charset=utf-8W7Oq7KjJ6oqVveCngy/pVQ==mUtkd0QpjkdVUrMRlwmsWA==BlockBlobHottrueunlockedtruedesdirectory/file_3Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEC5DF22129text/plain; + 01 Nov 2019 16:13:05 GMTFri, 01 Nov 2019 16:13:05 + GMT0x8D75EE660B45469129text/plain; charset=utf-85ciSW92QbMD+qi+5BtMcTQ==fxvYrq0OsEk5u3tM0JDKZg==BlockBlobHottrueunlockedtruedesdirectory/file_4Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEF83083129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE6579DBC63129text/plain; charset=utf-8Ees5xoFgg0vlMYsWiesbCg==Nl/VyRlQfa1j7BRpd3/N6Q==BlockBlobHottrueunlockedtruedesdirectory/file_5Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEECF1F44129text/plain; + 01 Nov 2019 16:13:10 GMTFri, 01 Nov 2019 16:13:10 + GMT0x8D75EE663840378129text/plain; charset=utf-83PIL54zkzwnZgWXYw3iatg==uxFh7WN4NCiYXOZaVE/Ugw==BlockBlobHottrueunlockedtruedesdirectory/file_6Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEEE58955129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657DF55B3129text/plain; charset=utf-8FGBvPcq7UOnH7BuvptXpLQ==ZdC1G3L6u+tPgPxHbhBuKA==BlockBlobHottrueunlockedtruedesdirectory/file_7Fri, - 01 Nov 2019 09:29:03 GMTFri, 01 Nov 2019 09:29:03 - GMT0x8D75EADEF1DC984129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657E503CE129text/plain; charset=utf-8WiacTPJIyIIQKTONrya/1w==dA4lzNai5H9ckCqhhprq9Q==BlockBlobHottrueunlockedtruedesdirectory/file_8Fri, - 01 Nov 2019 09:29:05 GMTFri, 01 Nov 2019 09:29:05 - GMT0x8D75EADF0D7627A129text/plain; + 01 Nov 2019 16:12:50 GMTFri, 01 Nov 2019 16:12:50 + GMT0x8D75EE657D1731D129text/plain; charset=utf-8tu00WAsChFoXEa2cBbYxfw==6Z86flfTAzGY5Swr33u6bQ==BlockBlobHottrueunlockedtruedesdirectory/file_9Fri, - 01 Nov 2019 09:29:02 GMTFri, 01 Nov 2019 09:29:02 - GMT0x8D75EADEE8F62BD129text/plain; + 01 Nov 2019 16:12:51 GMTFri, 01 Nov 2019 16:12:51 + GMT0x8D75EE6587D0301129text/plain; charset=utf-83cL0Z0vTZUQ9Z2nlxp1eEw==avQwNfb/x74WogV+DU2prQ==BlockBlobHottrueunlockedtrue" headers: content-type: - application/xml date: - - Fri, 01 Nov 2019 09:29:51 GMT + - Fri, 01 Nov 2019 16:15:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -1241,7 +1241,7 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:29:52 GMT + - Fri, 01 Nov 2019 16:15:12 GMT x-ms-version: - '2018-11-09' method: HEAD @@ -1259,11 +1259,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 09:29:53 GMT + - Fri, 01 Nov 2019 16:15:14 GMT etag: - - '"0x8D75EADE676CA71"' + - '"0x8D75EE63EF0E449"' last-modified: - - Fri, 01 Nov 2019 09:28:48 GMT + - Fri, 01 Nov 2019 16:12:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-access-tier: @@ -1273,7 +1273,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Fri, 01 Nov 2019 09:28:48 GMT + - Fri, 01 Nov 2019 16:12:08 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -1297,7 +1297,7 @@ interactions: x-ms-acl: - user::rwx,group::r--,other::--- x-ms-date: - - Fri, 01 Nov 2019 09:29:54 GMT + - Fri, 01 Nov 2019 16:15:15 GMT x-ms-version: - '2019-02-02' method: PATCH @@ -1309,11 +1309,11 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:29:55 GMT + - Fri, 01 Nov 2019 16:15:15 GMT etag: - - '"0x8D75EADE676CA71"' + - '"0x8D75EE63EF0E449"' last-modified: - - Fri, 01 Nov 2019 09:28:48 GMT + - Fri, 01 Nov 2019 16:12:08 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1331,7 +1331,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:29:56 GMT + - Fri, 01 Nov 2019 16:15:17 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1341,11 +1341,11 @@ interactions: string: '' headers: date: - - Fri, 01 Nov 2019 09:29:57 GMT + - Fri, 01 Nov 2019 16:15:18 GMT etag: - - '"0x8D75EADE676CA71"' + - '"0x8D75EE63EF0E449"' last-modified: - - Fri, 01 Nov 2019 09:28:48 GMT + - Fri, 01 Nov 2019 16:12:08 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1371,7 +1371,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:29:58 GMT + - Fri, 01 Nov 2019 16:15:19 GMT x-ms-permissions: - rwxrwxrwx x-ms-version: @@ -1385,11 +1385,11 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:29:59 GMT + - Fri, 01 Nov 2019 16:15:20 GMT etag: - - '"0x8D75EADE676CA71"' + - '"0x8D75EE63EF0E449"' last-modified: - - Fri, 01 Nov 2019 09:28:48 GMT + - Fri, 01 Nov 2019 16:12:08 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1407,7 +1407,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:30:00 GMT + - Fri, 01 Nov 2019 16:15:21 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1417,11 +1417,11 @@ interactions: string: '' headers: date: - - Fri, 01 Nov 2019 09:30:00 GMT + - Fri, 01 Nov 2019 16:15:21 GMT etag: - - '"0x8D75EADE676CA71"' + - '"0x8D75EE63EF0E449"' last-modified: - - Fri, 01 Nov 2019 09:28:48 GMT + - Fri, 01 Nov 2019 16:12:08 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1449,7 +1449,7 @@ interactions: x-ms-acl: - user::rwx,group::r--,other::--- x-ms-date: - - Fri, 01 Nov 2019 09:30:02 GMT + - Fri, 01 Nov 2019 16:15:23 GMT x-ms-version: - '2019-02-02' method: PATCH @@ -1461,11 +1461,11 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:30:03 GMT + - Fri, 01 Nov 2019 16:15:23 GMT etag: - - '"0x8D75EADDFBF44E3"' + - '"0x8D75EE6380ECFE3"' last-modified: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1483,7 +1483,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:30:04 GMT + - Fri, 01 Nov 2019 16:15:25 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1493,11 +1493,11 @@ interactions: string: '' headers: date: - - Fri, 01 Nov 2019 09:30:05 GMT + - Fri, 01 Nov 2019 16:15:25 GMT etag: - - '"0x8D75EADDFBF44E3"' + - '"0x8D75EE6380ECFE3"' last-modified: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1523,7 +1523,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:30:06 GMT + - Fri, 01 Nov 2019 16:15:26 GMT x-ms-permissions: - rwxrwxrwx x-ms-version: @@ -1537,11 +1537,11 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:30:07 GMT + - Fri, 01 Nov 2019 16:15:27 GMT etag: - - '"0x8D75EADDFBF44E3"' + - '"0x8D75EE6380ECFE3"' last-modified: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-namespace-enabled: @@ -1559,7 +1559,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:30:08 GMT + - Fri, 01 Nov 2019 16:15:29 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1569,11 +1569,11 @@ interactions: string: '' headers: date: - - Fri, 01 Nov 2019 09:30:09 GMT + - Fri, 01 Nov 2019 16:15:29 GMT etag: - - '"0x8D75EADDFBF44E3"' + - '"0x8D75EE6380ECFE3"' last-modified: - - Fri, 01 Nov 2019 09:28:37 GMT + - Fri, 01 Nov 2019 16:11:57 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -1599,7 +1599,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:30:10 GMT + - Fri, 01 Nov 2019 16:15:30 GMT x-ms-meta-tag1: - value1 x-ms-version: @@ -1613,11 +1613,11 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:30:11 GMT + - Fri, 01 Nov 2019 16:15:31 GMT etag: - - '"0x8D75EAE186FAF2A"' + - '"0x8D75EE6B84C658A"' last-modified: - - Fri, 01 Nov 2019 09:30:12 GMT + - Fri, 01 Nov 2019 16:15:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -1635,7 +1635,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:30:13 GMT + - Fri, 01 Nov 2019 16:15:33 GMT x-ms-version: - '2019-02-02' method: GET @@ -1647,11 +1647,11 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:30:13 GMT + - Fri, 01 Nov 2019 16:15:34 GMT etag: - - '"0x8D75EAE186FAF2A"' + - '"0x8D75EE6B84C658A"' last-modified: - - Fri, 01 Nov 2019 09:30:12 GMT + - Fri, 01 Nov 2019 16:15:32 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-meta-hdi_isfolder: @@ -1673,7 +1673,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:30:15 GMT + - Fri, 01 Nov 2019 16:15:35 GMT x-ms-version: - '2019-02-02' method: DELETE @@ -1685,7 +1685,7 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 09:30:16 GMT + - Fri, 01 Nov 2019 16:15:35 GMT server: - Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -1701,7 +1701,7 @@ interactions: User-Agent: - Azure-Storage/2.1.0-2.1.0 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 09:30:17 GMT + - Fri, 01 Nov 2019 16:15:37 GMT x-ms-version: - '2019-02-02' method: HEAD @@ -1711,7 +1711,7 @@ interactions: string: '' headers: date: - - Fri, 01 Nov 2019 09:30:18 GMT + - Fri, 01 Nov 2019 16:15:38 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_update_service_properties.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_update_service_properties.yaml index 7406a1a195b..cc3b61131a5 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_update_service_properties.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_update_service_properties.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:39:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T16:31:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 06:39:30 GMT + - Fri, 01 Nov 2019 16:31:44 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 06:39:33 GMT + - Fri, 01 Nov 2019 16:31:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/a2815e8a-ced6-49ad-a62b-79df35f07fda?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/82007acc-9e65-422c-914a-895efcda0cab?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -114,10 +114,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/a2815e8a-ced6-49ad-a62b-79df35f07fda?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/82007acc-9e65-422c-914a-895efcda0cab?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/account000002","name":"account000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:33.8702236Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:39:33.8702236Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T06:39:33.8077201Z","primaryEndpoints":{"dfs":"https://account000002.dfs.core.windows.net/","web":"https://account000002.z4.web.core.windows.net/","blob":"https://account000002.blob.core.windows.net/","queue":"https://account000002.queue.core.windows.net/","table":"https://account000002.table.core.windows.net/","file":"https://account000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://account000002-secondary.dfs.core.windows.net/","web":"https://account000002-secondary.z4.web.core.windows.net/","blob":"https://account000002-secondary.blob.core.windows.net/","queue":"https://account000002-secondary.queue.core.windows.net/","table":"https://account000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/account000002","name":"account000002","type":"Microsoft.Storage/storageAccounts","location":"westcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:48.6505881Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:48.6505881Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-01T16:31:48.6036799Z","primaryEndpoints":{"dfs":"https://account000002.dfs.core.windows.net/","web":"https://account000002.z4.web.core.windows.net/","blob":"https://account000002.blob.core.windows.net/","queue":"https://account000002.queue.core.windows.net/","table":"https://account000002.table.core.windows.net/","file":"https://account000002.file.core.windows.net/"},"primaryLocation":"westcentralus","statusOfPrimary":"available","secondaryLocation":"westus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://account000002-secondary.dfs.core.windows.net/","web":"https://account000002-secondary.z4.web.core.windows.net/","blob":"https://account000002-secondary.blob.core.windows.net/","queue":"https://account000002-secondary.queue.core.windows.net/","table":"https://account000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -126,7 +126,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:51 GMT + - Fri, 01 Nov 2019 16:32:06 GMT expires: - '-1' pragma: @@ -177,7 +177,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:39:53 GMT + - Fri, 01 Nov 2019 16:32:09 GMT expires: - '-1' pragma: @@ -193,7 +193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -205,7 +205,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 06:39:54 GMT + - Fri, 01 Nov 2019 16:32:10 GMT x-ms-version: - '2018-03-28' method: GET @@ -218,7 +218,7 @@ interactions: content-type: - application/xml date: - - Fri, 01 Nov 2019 06:39:56 GMT + - Fri, 01 Nov 2019 16:32:11 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -236,7 +236,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 06:39:57 GMT + - Fri, 01 Nov 2019 16:32:13 GMT x-ms-version: - '2018-03-28' method: GET @@ -249,7 +249,7 @@ interactions: content-type: - application/xml date: - - Fri, 01 Nov 2019 06:39:58 GMT + - Fri, 01 Nov 2019 16:32:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -271,7 +271,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 06:39:58 GMT + - Fri, 01 Nov 2019 16:32:14 GMT x-ms-version: - '2018-03-28' method: PUT @@ -283,7 +283,7 @@ interactions: content-length: - '0' date: - - Fri, 01 Nov 2019 06:39:59 GMT + - Fri, 01 Nov 2019 16:32:14 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -299,7 +299,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 06:39:59 GMT + - Fri, 01 Nov 2019 16:32:15 GMT x-ms-version: - '2018-03-28' method: GET @@ -312,7 +312,7 @@ interactions: content-type: - application/xml date: - - Fri, 01 Nov 2019 06:39:59 GMT + - Fri, 01 Nov 2019 16:32:15 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -330,7 +330,7 @@ interactions: User-Agent: - Azure-Storage/1.2.0rc1-1.2.0rc1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.75 x-ms-date: - - Fri, 01 Nov 2019 06:40:00 GMT + - Fri, 01 Nov 2019 16:32:16 GMT x-ms-version: - '2018-03-28' method: GET @@ -343,7 +343,7 @@ interactions: content-type: - application/xml date: - - Fri, 01 Nov 2019 06:40:00 GMT + - Fri, 01 Nov 2019 16:32:17 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml index 684b5d76b3b..5b0325bbbe2 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:40:46Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T16:31:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 06:40:51 GMT + - Fri, 01 Nov 2019 16:31:44 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 06:40:55 GMT + - Fri, 01 Nov 2019 16:31:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6acbdd2a-8a6a-4e59-ab17-4e1e105c3c03?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/15dba479-31f1-41db-925d-0fd040c8ade2?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 202 message: Accepted @@ -114,10 +114,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6acbdd2a-8a6a-4e59-ab17-4e1e105c3c03?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/15dba479-31f1-41db-925d-0fd040c8ade2?monitor=true&api-version=2018-07-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:40:54.9944265Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:40:54.9944265Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:40:54.9319200Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:47.4807574Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:47.4807574Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T16:31:47.4183035Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -126,7 +126,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:41:12 GMT + - Fri, 01 Nov 2019 16:32:05 GMT expires: - '-1' pragma: diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml index 8192cd0d4e3..093b69c4f3d 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml @@ -18,10 +18,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-05-10 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T06:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-01T16:31:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 01 Nov 2019 06:41:05 GMT + - Fri, 01 Nov 2019 16:31:44 GMT expires: - '-1' pragma: @@ -79,11 +79,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 01 Nov 2019 06:41:09 GMT + - Fri, 01 Nov 2019 16:31:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/08486738-de8c-451a-9f57-185141d446c9?monitor=true&api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6fbab697-1a33-4829-ae04-c9882c3bbfd8?monitor=true&api-version=2018-07-01 pragma: - no-cache server: @@ -93,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -114,10 +114,10 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/08486738-de8c-451a-9f57-185141d446c9?monitor=true&api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6fbab697-1a33-4829-ae04-c9882c3bbfd8?monitor=true&api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:41:09.2150037Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:49.0745905Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:49.0745905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T16:31:49.0120621Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -126,7 +126,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:41:27 GMT + - Fri, 01 Nov 2019 16:32:07 GMT expires: - '-1' pragma: @@ -166,7 +166,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:41:09.2150037Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","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/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:49.0745905Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:49.0745905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T16:31:49.0120621Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:41:29 GMT + - Fri, 01 Nov 2019 16:32:10 GMT expires: - '-1' pragma: @@ -223,7 +223,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-07-01 response: body: - string: '{"identity":{"principalId":"5f3c75e9-e0fd-440e-960b-078d8c8384de","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T06:41:09.2618289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T06:41:09.2150037Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + string: '{"identity":{"principalId":"50fe75c8-453e-4ade-b477-df47aae5c68b","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:49.0745905Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-01T16:31:49.0745905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-01T16:31:49.0120621Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -232,7 +232,7 @@ interactions: content-type: - application/json date: - - Fri, 01 Nov 2019 06:41:35 GMT + - Fri, 01 Nov 2019 16:32:15 GMT expires: - '-1' pragma: @@ -248,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK diff --git a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py index 74fc9309a48..bf7dcba98cb 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py +++ b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_adls_scenarios.py @@ -5,14 +5,14 @@ import os import unittest -from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, +from azure.cli.testsdk import (LiveScenarioTest, ResourceGroupPreparer, JMESPathCheck, api_version_constraint) from .storage_test_util import StorageScenarioMixin, StorageTestFilesPreparer from ...profiles import CUSTOM_MGMT_STORAGE -class StorageADLSTests(StorageScenarioMixin, ScenarioTest): +class StorageADLSTests(StorageScenarioMixin, LiveScenarioTest): @api_version_constraint(CUSTOM_MGMT_STORAGE, min_api='2018-02-01') @StorageTestFilesPreparer() @ResourceGroupPreparer() From 6645aaffecc6670301199748bdee2a64da9e895a Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Sun, 3 Nov 2019 14:44:41 +0800 Subject: [PATCH 21/21] update index.json --- src/index.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.json b/src/index.json index 7cb6933b614..e6d04411986 100644 --- a/src/index.json +++ b/src/index.json @@ -2218,7 +2218,7 @@ "summary": "Provides a preview for upcoming storage features.", "version": "0.2.9" }, - "sha256Digest": "6495be3d57524bed5ebd7bfa81fbff300010c514596fd4ac23778746d9ff7f8a" + "sha256Digest": "211afaf23a6340671fee8a4b9e7c982f28b9ec9d1bf2e403fcc9de08c561ab7b" } ], "subscription": [ @@ -2411,8 +2411,8 @@ "filename": "vmware_cs-0.2.0-py2.py3-none-any.whl", "metadata": { "azext.isPreview": true, - "azext.minCliCoreVersion": "2.0.67", "azext.maxCliCoreVersion": "2.1.0", + "azext.minCliCoreVersion": "2.0.67", "extensions": { "python.details": { "contacts": [