From 396e79464bcee815e7df4c0414a4fd265cdb2dd3 Mon Sep 17 00:00:00 2001 From: changlong-liu <59815250+changlong-liu@users.noreply.github.com> Date: Thu, 20 Aug 2020 18:18:02 +0800 Subject: [PATCH] Sdk automation/azure mgmt storage (#13232) * Update from release/v3 * version 11.2.0 Co-authored-by: SDK Automation --- sdk/storage/azure-mgmt-storage/CHANGELOG.md | 8 +- sdk/storage/azure-mgmt-storage/README.md | 2 +- .../storage/v2019_06_01/models/_models.py | 9 +- .../storage/v2019_06_01/models/_models_py3.py | 9 +- .../operations/_blob_containers_operations.py | 4 +- .../azure/mgmt/storage/version.py | 2 +- .../test_cli_mgmt_storage.test_storage.yaml | 310 +++++++++--------- ...st_mgmt_storage.test_storage_accounts.yaml | 101 +++--- .../test_mgmt_storage.test_storage_usage.yaml | 8 +- 9 files changed, 235 insertions(+), 218 deletions(-) diff --git a/sdk/storage/azure-mgmt-storage/CHANGELOG.md b/sdk/storage/azure-mgmt-storage/CHANGELOG.md index 359ca9fcc1d2..78939def90f2 100644 --- a/sdk/storage/azure-mgmt-storage/CHANGELOG.md +++ b/sdk/storage/azure-mgmt-storage/CHANGELOG.md @@ -1,6 +1,12 @@ # Release History -## 11.1.0 (2020-6-22) +## 11.2.0 (2020-08-20) + +**Features** + + - Model RestorePolicyProperties has a new parameter min_restore_time + +## 11.1.0 (2020-06-22) **Features** diff --git a/sdk/storage/azure-mgmt-storage/README.md b/sdk/storage/azure-mgmt-storage/README.md index ada1f9bd35d5..5416db7f2b40 100644 --- a/sdk/storage/azure-mgmt-storage/README.md +++ b/sdk/storage/azure-mgmt-storage/README.md @@ -2,7 +2,7 @@ This is the Microsoft Azure Storage Management Client Library. This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8. -For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all). +For a more complete view of Azure libraries, see the [Github repo](https://github.com/Azure/azure-sdk-for-python/) # Usage diff --git a/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/models/_models.py b/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/models/_models.py index 87a4df69a808..49cefe80eeba 100644 --- a/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/models/_models.py +++ b/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/models/_models.py @@ -2921,21 +2921,25 @@ class RestorePolicyProperties(Model): :param days: how long this blob can be restored. It should be great than zero and less than DeleteRetentionPolicy.days. :type days: int - :ivar last_enabled_time: Returns the date and time the restore policy was - last enabled. + :ivar last_enabled_time: Deprecated in favor of minRestoreTime property. :vartype last_enabled_time: datetime + :ivar min_restore_time: Returns the minimum date and time that the restore + can be started. + :vartype min_restore_time: datetime """ _validation = { 'enabled': {'required': True}, 'days': {'maximum': 365, 'minimum': 1}, 'last_enabled_time': {'readonly': True}, + 'min_restore_time': {'readonly': True}, } _attribute_map = { 'enabled': {'key': 'enabled', 'type': 'bool'}, 'days': {'key': 'days', 'type': 'int'}, 'last_enabled_time': {'key': 'lastEnabledTime', 'type': 'iso-8601'}, + 'min_restore_time': {'key': 'minRestoreTime', 'type': 'iso-8601'}, } def __init__(self, **kwargs): @@ -2943,6 +2947,7 @@ def __init__(self, **kwargs): self.enabled = kwargs.get('enabled', None) self.days = kwargs.get('days', None) self.last_enabled_time = None + self.min_restore_time = None class Restriction(Model): diff --git a/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/models/_models_py3.py b/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/models/_models_py3.py index 13f5f24d41d1..cac33935706b 100644 --- a/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/models/_models_py3.py +++ b/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/models/_models_py3.py @@ -2921,21 +2921,25 @@ class RestorePolicyProperties(Model): :param days: how long this blob can be restored. It should be great than zero and less than DeleteRetentionPolicy.days. :type days: int - :ivar last_enabled_time: Returns the date and time the restore policy was - last enabled. + :ivar last_enabled_time: Deprecated in favor of minRestoreTime property. :vartype last_enabled_time: datetime + :ivar min_restore_time: Returns the minimum date and time that the restore + can be started. + :vartype min_restore_time: datetime """ _validation = { 'enabled': {'required': True}, 'days': {'maximum': 365, 'minimum': 1}, 'last_enabled_time': {'readonly': True}, + 'min_restore_time': {'readonly': True}, } _attribute_map = { 'enabled': {'key': 'enabled', 'type': 'bool'}, 'days': {'key': 'days', 'type': 'int'}, 'last_enabled_time': {'key': 'lastEnabledTime', 'type': 'iso-8601'}, + 'min_restore_time': {'key': 'minRestoreTime', 'type': 'iso-8601'}, } def __init__(self, *, enabled: bool, days: int=None, **kwargs) -> None: @@ -2943,6 +2947,7 @@ def __init__(self, *, enabled: bool, days: int=None, **kwargs) -> None: self.enabled = enabled self.days = days self.last_enabled_time = None + self.min_restore_time = None class Restriction(Model): diff --git a/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/operations/_blob_containers_operations.py b/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/operations/_blob_containers_operations.py index f059816055f4..9d4a7faf35ee 100644 --- a/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/operations/_blob_containers_operations.py +++ b/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2019_06_01/operations/_blob_containers_operations.py @@ -791,8 +791,8 @@ def delete_immutability_policy( """Aborts an unlocked immutability policy. The response of delete has immutabilityPeriodSinceCreationInDays set to 0. ETag in If-Match is required for this operation. Deleting a locked immutability policy is - not allowed, only way is to delete the container after deleting all - blobs inside the container. + not allowed, the only way is to delete the container after deleting all + expired blobs inside the policy locked container. :param resource_group_name: The name of the resource group within the user's subscription. The name is case insensitive. diff --git a/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/version.py b/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/version.py index fb2d4315df5a..8d7292adfab8 100644 --- a/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/version.py +++ b/sdk/storage/azure-mgmt-storage/azure/mgmt/storage/version.py @@ -5,4 +5,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "11.1.0" +VERSION = "11.2.0" diff --git a/sdk/storage/azure-mgmt-storage/tests/recordings/test_cli_mgmt_storage.test_storage.yaml b/sdk/storage/azure-mgmt-storage/tests/recordings/test_cli_mgmt_storage.test_storage.yaml index 7c3da3a5b4ed..7956e2f436a0 100644 --- a/sdk/storage/azure-mgmt-storage/tests/recordings/test_cli_mgmt_storage.test_storage.yaml +++ b/sdk/storage/azure-mgmt-storage/tests/recordings/test_cli_mgmt_storage.test_storage.yaml @@ -17,8 +17,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -34,11 +34,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 28 Jun 2020 02:59:49 GMT + - Thu, 20 Aug 2020 01:09:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westeurope/asyncoperations/df46e80a-68f6-4d39-8d71-d5382893951d?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westeurope/asyncoperations/63e14db2-01cd-4c96-840c-f3ac48a69d85?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -62,13 +62,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westeurope/asyncoperations/df46e80a-68f6-4d39-8d71-d5382893951d?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westeurope/asyncoperations/63e14db2-01cd-4c96-840c-f3ac48a69d85?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz","name":"storageaccountxxyyzz","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"key1":"value1","key2":"value2"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:59:48.9210983Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:59:48.9210983Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-28T02:59:48.8272916Z","primaryEndpoints":{"dfs":"https://storageaccountxxyyzz.dfs.core.windows.net/","web":"https://storageaccountxxyyzz.z6.web.core.windows.net/","blob":"https://storageaccountxxyyzz.blob.core.windows.net/","queue":"https://storageaccountxxyyzz.queue.core.windows.net/","table":"https://storageaccountxxyyzz.table.core.windows.net/","file":"https://storageaccountxxyyzz.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available"}}' + string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz","name":"storageaccountxxyyzz","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"key1":"value1","key2":"value2"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:09:38.2016541Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:09:38.2016541Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-20T01:09:38.1078553Z","primaryEndpoints":{"dfs":"https://storageaccountxxyyzz.dfs.core.windows.net/","web":"https://storageaccountxxyyzz.z6.web.core.windows.net/","blob":"https://storageaccountxxyyzz.blob.core.windows.net/","queue":"https://storageaccountxxyyzz.queue.core.windows.net/","table":"https://storageaccountxxyyzz.table.core.windows.net/","file":"https://storageaccountxxyyzz.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available"}}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:07 GMT + - Thu, 20 Aug 2020 01:09:57 GMT expires: - '-1' pragma: @@ -117,8 +117,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -134,7 +134,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:07 GMT + - Thu, 20 Aug 2020 01:09:57 GMT expires: - '-1' pragma: @@ -150,7 +150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -178,8 +178,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -196,7 +196,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:09 GMT + - Thu, 20 Aug 2020 01:09:58 GMT expires: - '-1' pragma: @@ -212,7 +212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -234,15 +234,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/managementPolicies/default?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"rules":[{"enabled":true,"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":30.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":30.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2020-06-28T03:00:09.8428915Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"rules":[{"enabled":true,"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":30.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":30.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2020-08-20T01:09:59.3436112Z"}}' headers: cache-control: - no-cache @@ -251,7 +251,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:09 GMT + - Thu, 20 Aug 2020 01:09:58 GMT expires: - '-1' pragma: @@ -267,7 +267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 200 message: OK @@ -285,8 +285,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -302,9 +302,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:10 GMT + - Thu, 20 Aug 2020 01:09:59 GMT etag: - - '"0x8D81B0F5EEC0AAC"' + - '"0x8D844A5C2C7A73A"' expires: - '-1' pragma: @@ -316,7 +316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 201 message: Created @@ -334,8 +334,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -351,9 +351,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:10 GMT + - Thu, 20 Aug 2020 01:10:00 GMT etag: - - '"0x8D81B0F5F3989B4"' + - '"0x8D844A5C32ED044"' expires: - '-1' pragma: @@ -365,7 +365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1194' status: code: 201 message: Created @@ -383,15 +383,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d81b0f5f92b7fe\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Unlocked"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d844a5c3eab095\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Unlocked"}}' headers: cache-control: - no-cache @@ -400,9 +400,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:11 GMT + - Thu, 20 Aug 2020 01:10:01 GMT etag: - - '"8d81b0f5f92b7fe"' + - '"8d844a5c3eab095"' expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1193' status: code: 200 message: OK @@ -434,17 +434,17 @@ interactions: Content-Length: - '0' If-Match: - - '"8d81b0f5f92b7fe"' + - '"8d844a5c3eab095"' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d81b0f5fd0b4cc\"","properties":{"immutabilityPeriodSinceCreationInDays":0,"state":"Deleted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d844a5c4454949\"","properties":{"immutabilityPeriodSinceCreationInDays":0,"state":"Deleted"}}' headers: cache-control: - no-cache @@ -453,9 +453,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:11 GMT + - Thu, 20 Aug 2020 01:10:02 GMT etag: - - '"8d81b0f5fd0b4cc"' + - '"8d844a5c4454949"' expires: - '-1' pragma: @@ -489,15 +489,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d81b0f601f6351\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Unlocked"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d844a5c498bbca\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Unlocked"}}' headers: cache-control: - no-cache @@ -506,9 +506,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:12 GMT + - Thu, 20 Aug 2020 01:10:02 GMT etag: - - '"8d81b0f601f6351"' + - '"8d844a5c498bbca"' expires: - '-1' pragma: @@ -524,7 +524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1192' status: code: 200 message: OK @@ -538,15 +538,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d81b0f601f6351\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Unlocked"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d844a5c498bbca\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Unlocked"}}' headers: cache-control: - no-cache @@ -555,9 +555,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:12 GMT + - Thu, 20 Aug 2020 01:10:03 GMT etag: - - '"8d81b0f601f6351"' + - '"8d844a5c498bbca"' expires: - '-1' pragma: @@ -585,15 +585,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz","name":"containernamexxyyzz","type":"Microsoft.Storage/storageAccounts/blobServices/containers","etag":"\"0x8D81B0F6022DBB9\"","properties":{"deleted":false,"remainingRetentionDays":0,"defaultEncryptionScope":"$account-encryption-key","denyEncryptionScopeOverride":false,"publicAccess":"None","leaseStatus":"Unlocked","leaseState":"Available","lastModifiedTime":"2020-06-28T03:00:12.0000000Z","immutabilityPolicy":{"etag":"\"8d81b0f601f6351\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Unlocked"},"updateHistory":[{"update":"put","immutabilityPeriodSinceCreationInDays":3,"timestamp":"2020-06-28T03:00:12.4210516Z","objectIdentifier":"123743cc-88ef-49ee-920e-13958fe5697d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]},"legalHold":{"hasLegalHold":false,"tags":[]},"hasImmutabilityPolicy":true,"hasLegalHold":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz","name":"containernamexxyyzz","type":"Microsoft.Storage/storageAccounts/blobServices/containers","etag":"\"0x8D844A5C49B4C78\"","properties":{"deleted":false,"remainingRetentionDays":0,"defaultEncryptionScope":"$account-encryption-key","denyEncryptionScopeOverride":false,"publicAccess":"None","leaseStatus":"Unlocked","leaseState":"Available","lastModifiedTime":"2020-08-20T01:10:03.0000000Z","immutabilityPolicy":{"etag":"\"8d844a5c498bbca\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Unlocked"},"updateHistory":[{"update":"put","immutabilityPeriodSinceCreationInDays":3,"timestamp":"2020-08-20T01:10:03.1717940Z","objectIdentifier":"b8d54648-e120-4a1f-8da0-38788dc0090c","tenantId":"00000000-0000-0000-0000-000000000000"}]},"legalHold":{"hasLegalHold":false,"tags":[]},"hasImmutabilityPolicy":true,"hasLegalHold":false}}' headers: cache-control: - no-cache @@ -602,9 +602,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:12 GMT + - Thu, 20 Aug 2020 01:10:03 GMT etag: - - '"0x8D81B0F6022DBB9"' + - '"0x8D844A5C49B4C78"' expires: - '-1' pragma: @@ -632,15 +632,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/fileServices/default/shares/filesharenamexxyyzz?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/fileServices/default/shares/filesharenamexxyyzz","name":"filesharenamexxyyzz","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D81B0F5EEC0AAC\"","properties":{"lastModifiedTime":"2020-06-28T03:00:10.0000000Z","shareQuota":5120}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/fileServices/default/shares/filesharenamexxyyzz","name":"filesharenamexxyyzz","type":"Microsoft.Storage/storageAccounts/fileServices/shares","etag":"\"0x8D844A5C2C7A73A\"","properties":{"lastModifiedTime":"2020-08-20T01:10:00.0000000Z","shareQuota":5120}}' headers: cache-control: - no-cache @@ -649,9 +649,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:12 GMT + - Thu, 20 Aug 2020 01:10:04 GMT etag: - - '"0x8D81B0F5EEC0AAC"' + - '"0x8D844A5C2C7A73A"' expires: - '-1' pragma: @@ -679,15 +679,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/managementPolicies/default?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"rules":[{"enabled":true,"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":30.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":30.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2020-06-28T03:00:09.8428915Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/managementPolicies/default","name":"DefaultManagementPolicy","type":"Microsoft.Storage/storageAccounts/managementPolicies","properties":{"policy":{"rules":[{"enabled":true,"name":"olcmtest","type":"Lifecycle","definition":{"actions":{"baseBlob":{"tierToCool":{"daysAfterModificationGreaterThan":30.0},"tierToArchive":{"daysAfterModificationGreaterThan":90.0},"delete":{"daysAfterModificationGreaterThan":1000.0}},"snapshot":{"delete":{"daysAfterCreationGreaterThan":30.0}}},"filters":{"blobTypes":["blockBlob"],"prefixMatch":["olcmtestcontainer"]}}}]},"lastModifiedTime":"2020-08-20T01:09:59.3436112Z"}}' headers: cache-control: - no-cache @@ -696,7 +696,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:13 GMT + - Thu, 20 Aug 2020 01:10:04 GMT expires: - '-1' pragma: @@ -724,8 +724,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -742,7 +742,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:13 GMT + - Thu, 20 Aug 2020 01:10:05 GMT expires: - '-1' pragma: @@ -770,8 +770,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -787,7 +787,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:13 GMT + - Thu, 20 Aug 2020 01:10:05 GMT expires: - '-1' pragma: @@ -815,8 +815,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -832,7 +832,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:14 GMT + - Thu, 20 Aug 2020 01:10:05 GMT expires: - '-1' pragma: @@ -860,8 +860,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -877,7 +877,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:14 GMT + - Thu, 20 Aug 2020 01:10:06 GMT expires: - '-1' pragma: @@ -905,15 +905,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz","name":"storageaccountxxyyzz","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"key1":"value1","key2":"value2"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:59:48.9210983Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:59:48.9210983Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-28T02:59:48.8272916Z","primaryEndpoints":{"dfs":"https://storageaccountxxyyzz.dfs.core.windows.net/","web":"https://storageaccountxxyyzz.z6.web.core.windows.net/","blob":"https://storageaccountxxyyzz.blob.core.windows.net/","queue":"https://storageaccountxxyyzz.queue.core.windows.net/","table":"https://storageaccountxxyyzz.table.core.windows.net/","file":"https://storageaccountxxyyzz.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available"}}' + string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz","name":"storageaccountxxyyzz","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"key1":"value1","key2":"value2"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:09:38.2016541Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:09:38.2016541Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-20T01:09:38.1078553Z","primaryEndpoints":{"dfs":"https://storageaccountxxyyzz.dfs.core.windows.net/","web":"https://storageaccountxxyyzz.z6.web.core.windows.net/","blob":"https://storageaccountxxyyzz.blob.core.windows.net/","queue":"https://storageaccountxxyyzz.queue.core.windows.net/","table":"https://storageaccountxxyyzz.table.core.windows.net/","file":"https://storageaccountxxyyzz.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available"}}' headers: cache-control: - no-cache @@ -922,7 +922,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:14 GMT + - Thu, 20 Aug 2020 01:10:06 GMT expires: - '-1' pragma: @@ -954,8 +954,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -971,7 +971,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:14 GMT + - Thu, 20 Aug 2020 01:10:07 GMT expires: - '-1' pragma: @@ -1005,8 +1005,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1022,7 +1022,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:15 GMT + - Thu, 20 Aug 2020 01:10:07 GMT expires: - '-1' pragma: @@ -1056,15 +1056,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/lease?api-version=2019-06-01 response: body: - string: '{"leaseId":"e4d54927-32cc-46dd-80c1-ea7328aa4197"}' + string: '{"leaseId":"fcaa4aa4-088f-4f26-8f71-2f2e15c85daa"}' headers: cache-control: - no-cache @@ -1073,9 +1073,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:15 GMT + - Thu, 20 Aug 2020 01:10:08 GMT etag: - - '"0x8D81B0F621877AA"' + - '"0x8D844A5C7C13A58"' expires: - '-1' pragma: @@ -1096,7 +1096,7 @@ interactions: code: 200 message: OK - request: - body: '{"action": "Break", "leaseId": "e4d54927-32cc-46dd-80c1-ea7328aa4197"}' + body: '{"action": "Break", "leaseId": "fcaa4aa4-088f-4f26-8f71-2f2e15c85daa"}' headers: Accept: - application/json @@ -1109,8 +1109,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1126,9 +1126,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:16 GMT + - Thu, 20 Aug 2020 01:10:08 GMT etag: - - '"0x8D81B0F621877AA"' + - '"0x8D844A5C7C13A58"' expires: - '-1' pragma: @@ -1162,8 +1162,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH @@ -1179,9 +1179,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:16 GMT + - Thu, 20 Aug 2020 01:10:09 GMT etag: - - '"0x8D81B0F62CE062D"' + - '"0x8D844A5C8A0C673"' expires: - '-1' pragma: @@ -1197,7 +1197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1191' status: code: 200 message: OK @@ -1215,8 +1215,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH @@ -1232,9 +1232,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:16 GMT + - Thu, 20 Aug 2020 01:10:09 GMT etag: - - '"0x8D81B0F630F491B"' + - '"0x8D844A5C8FDB041"' expires: - '-1' pragma: @@ -1250,7 +1250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1190' status: code: 200 message: OK @@ -1266,8 +1266,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1283,7 +1283,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 28 Jun 2020 03:00:17 GMT + - Thu, 20 Aug 2020 01:10:10 GMT expires: - '-1' pragma: @@ -1313,15 +1313,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/regenerateKey?api-version=2019-06-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"546xtb4LNdoMVpK9zqpKmkP3etB5/V6WYdBVUiILoeInWKUXK2RlTIgMDl7RJ2T9vhnon07a8+FUxDstN7ZuFw==","permissions":"FULL"},{"keyName":"key2","value":"aKeGtdt9ph3YxzqHRCQ39SY2xVuuQbnCMydJcyNacXpI6fzc8Ao5Sy/IfDV0B4o+IHd72m1E24lZJHSDwu8aiQ==","permissions":"FULL"}]}' + string: '{"keys":[{"keyName":"key1","value":"upfXWSvzBBLWfkjwKQVhzVaVRRhdceeyprohQn2X/43neM8bbyaZ5QSGV7J5ZiUvv+OW2BFze7EMGgeJYZ36Xw==","permissions":"FULL"},{"keyName":"key2","value":"RJncvi5v3trA1fpRk1t8IKHrrcWy6cgmCEoukV2nXeJwEfX4dabv+RcXt8ydlmg3da34LAsrWLR9hS85296wlw==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -1330,7 +1330,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:17 GMT + - Thu, 20 Aug 2020 01:10:10 GMT expires: - '-1' pragma: @@ -1362,15 +1362,15 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/listKeys?api-version=2019-06-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"546xtb4LNdoMVpK9zqpKmkP3etB5/V6WYdBVUiILoeInWKUXK2RlTIgMDl7RJ2T9vhnon07a8+FUxDstN7ZuFw==","permissions":"FULL"},{"keyName":"key2","value":"aKeGtdt9ph3YxzqHRCQ39SY2xVuuQbnCMydJcyNacXpI6fzc8Ao5Sy/IfDV0B4o+IHd72m1E24lZJHSDwu8aiQ==","permissions":"FULL"}]}' + string: '{"keys":[{"keyName":"key1","value":"upfXWSvzBBLWfkjwKQVhzVaVRRhdceeyprohQn2X/43neM8bbyaZ5QSGV7J5ZiUvv+OW2BFze7EMGgeJYZ36Xw==","permissions":"FULL"},{"keyName":"key2","value":"RJncvi5v3trA1fpRk1t8IKHrrcWy6cgmCEoukV2nXeJwEfX4dabv+RcXt8ydlmg3da34LAsrWLR9hS85296wlw==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -1379,7 +1379,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:18 GMT + - Thu, 20 Aug 2020 01:10:11 GMT expires: - '-1' pragma: @@ -1414,15 +1414,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz","name":"storageaccountxxyyzz","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"key1":"value1","key2":"value2"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:59:48.9210983Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:59:48.9210983Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-28T02:59:48.8272916Z","primaryEndpoints":{"dfs":"https://storageaccountxxyyzz.dfs.core.windows.net/","web":"https://storageaccountxxyyzz.z6.web.core.windows.net/","blob":"https://storageaccountxxyyzz.blob.core.windows.net/","queue":"https://storageaccountxxyyzz.queue.core.windows.net/","table":"https://storageaccountxxyyzz.table.core.windows.net/","file":"https://storageaccountxxyyzz.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available"}}' + string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz","name":"storageaccountxxyyzz","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{"key1":"value1","key2":"value2"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:09:38.2016541Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:09:38.2016541Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-20T01:09:38.1078553Z","primaryEndpoints":{"dfs":"https://storageaccountxxyyzz.dfs.core.windows.net/","web":"https://storageaccountxxyyzz.z6.web.core.windows.net/","blob":"https://storageaccountxxyyzz.blob.core.windows.net/","queue":"https://storageaccountxxyyzz.queue.core.windows.net/","table":"https://storageaccountxxyyzz.table.core.windows.net/","file":"https://storageaccountxxyyzz.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available"}}' headers: cache-control: - no-cache @@ -1431,7 +1431,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:19 GMT + - Thu, 20 Aug 2020 01:10:12 GMT expires: - '-1' pragma: @@ -1447,7 +1447,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1189' status: code: 200 message: OK @@ -1463,17 +1463,17 @@ interactions: Content-Length: - '0' If-Match: - - '"8d81b0f601f6351"' + - '"8d844a5c498bbca"' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default/lock?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d81b0f649a2df0\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Locked"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d844a5cae945bc\"","properties":{"immutabilityPeriodSinceCreationInDays":3,"state":"Locked"}}' headers: cache-control: - no-cache @@ -1482,9 +1482,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:19 GMT + - Thu, 20 Aug 2020 01:10:13 GMT etag: - - '"8d81b0f649a2df0"' + - '"8d844a5cae945bc"' expires: - '-1' pragma: @@ -1518,17 +1518,17 @@ interactions: Content-Type: - application/json; charset=utf-8 If-Match: - - '"8d81b0f649a2df0"' + - '"8d844a5cae945bc"' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default/extend?api-version=2019-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d81b0f64d36621\"","properties":{"immutabilityPeriodSinceCreationInDays":100,"state":"Locked"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_storage_test_storagef61c0e02/providers/Microsoft.Storage/storageAccounts/storageaccountxxyyzz/blobServices/default/containers/containernamexxyyzz/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d844a5cb332f83\"","properties":{"immutabilityPeriodSinceCreationInDays":100,"state":"Locked"}}' headers: cache-control: - no-cache @@ -1537,9 +1537,9 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:19 GMT + - Thu, 20 Aug 2020 01:10:13 GMT etag: - - '"8d81b0f64d36621"' + - '"8d844a5cb332f83"' expires: - '-1' pragma: @@ -1573,8 +1573,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1590,7 +1590,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:20 GMT + - Thu, 20 Aug 2020 01:10:14 GMT expires: - '-1' pragma: @@ -1620,8 +1620,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1637,7 +1637,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 28 Jun 2020 03:00:21 GMT + - Thu, 20 Aug 2020 01:10:15 GMT expires: - '-1' pragma: @@ -1665,8 +1665,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1682,7 +1682,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 28 Jun 2020 03:00:21 GMT + - Thu, 20 Aug 2020 01:10:15 GMT expires: - '-1' pragma: @@ -1710,8 +1710,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1727,7 +1727,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 28 Jun 2020 03:00:21 GMT + - Thu, 20 Aug 2020 01:10:16 GMT expires: - '-1' pragma: @@ -1755,8 +1755,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1772,7 +1772,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 28 Jun 2020 03:00:26 GMT + - Thu, 20 Aug 2020 01:10:24 GMT expires: - '-1' pragma: diff --git a/sdk/storage/azure-mgmt-storage/tests/recordings/test_mgmt_storage.test_storage_accounts.yaml b/sdk/storage/azure-mgmt-storage/tests/recordings/test_mgmt_storage.test_storage_accounts.yaml index a6af5a819e45..22eaeb4c9488 100644 --- a/sdk/storage/azure-mgmt-storage/tests/recordings/test_mgmt_storage.test_storage_accounts.yaml +++ b/sdk/storage/azure-mgmt-storage/tests/recordings/test_mgmt_storage.test_storage_accounts.yaml @@ -13,8 +13,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -30,7 +30,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:34 GMT + - Thu, 20 Aug 2020 01:10:35 GMT expires: - '-1' pragma: @@ -63,8 +63,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -80,11 +80,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 28 Jun 2020 03:00:39 GMT + - Thu, 20 Aug 2020 01:10:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7707f69b-d2c1-4490-87b5-f772f615fe98?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/dccf53a8-0b04-4235-ac33-0cea0ba38c69?monitor=true&api-version=2019-06-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 @@ -108,13 +108,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7707f69b-d2c1-4490-87b5-f772f615fe98?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/dccf53a8-0b04-4235-ac33-0cea0ba38c69?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-28T03:00:39.9633826Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-20T01:10:41.1431642Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -123,7 +123,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:58 GMT + - Thu, 20 Aug 2020 01:10:59 GMT expires: - '-1' pragma: @@ -151,15 +151,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-28T03:00:39.9633826Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-20T01:10:41.1431642Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -168,7 +168,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:58 GMT + - Thu, 20 Aug 2020 01:10:59 GMT expires: - '-1' pragma: @@ -198,15 +198,15 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a/listKeys?api-version=2019-06-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"Kh4yYuIbPWh5IM7AcskR3Hk6kGyYMXgrz+USfu2WIGqNP4VusR1DokNuL/+C1hrfZ5aFcpVkdmIeeNxodX7eng==","permissions":"FULL"},{"keyName":"key2","value":"Q2W7TrhdytRtIEHYE+4PArJ9V9fjfxOYf4AIwzLjlPXf4UG+C3aYv8NvN5CywdJ1lmUK/rpCfoRdK1ewvM+kIw==","permissions":"FULL"}]}' + string: '{"keys":[{"keyName":"key1","value":"H0CN+LLbChdII44HXJxRhO3Sjy3lVEuIct6zzyLtnMy0UtpnbfxocVp/I1lUXbUwSTmnQx0H+uA5dkS1MWfGYA==","permissions":"FULL"},{"keyName":"key2","value":"lgLMRDycymQUV13LPXPa2iqVwJ6mgoiyri8K7P99n/t1gkVioJ9qK63oGgGRABJ4HFLCgvoD/MdhW3x3CcelNA==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -215,7 +215,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:58 GMT + - Thu, 20 Aug 2020 01:10:59 GMT expires: - '-1' pragma: @@ -249,15 +249,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a/regenerateKey?api-version=2019-06-01 response: body: - string: '{"keys":[{"keyName":"key1","value":"HRu55fX77be4HZNBn4vnOgGqgDrY2bVbyiCqt9g5SsZOOJXGZAdw0VLhthEPvh/aDiwP70E2GSL+ZkLtuMKqoA==","permissions":"FULL"},{"keyName":"key2","value":"Q2W7TrhdytRtIEHYE+4PArJ9V9fjfxOYf4AIwzLjlPXf4UG+C3aYv8NvN5CywdJ1lmUK/rpCfoRdK1ewvM+kIw==","permissions":"FULL"}]}' + string: '{"keys":[{"keyName":"key1","value":"zuN/PBWTVgH4xZQbhyXnwYAUj24FooTFoqNJNMkCm1If3iALBdvNgkycnGxoPNIVIenItBJNYl7WQFNshPbGuw==","permissions":"FULL"},{"keyName":"key2","value":"lgLMRDycymQUV13LPXPa2iqVwJ6mgoiyri8K7P99n/t1gkVioJ9qK63oGgGRABJ4HFLCgvoD/MdhW3x3CcelNA==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -266,7 +266,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:59 GMT + - Thu, 20 Aug 2020 01:11:00 GMT expires: - '-1' pragma: @@ -296,15 +296,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-28T03:00:39.9633826Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-20T01:10:41.1431642Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache @@ -313,7 +313,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:00:59 GMT + - Thu, 20 Aug 2020 01:11:00 GMT expires: - '-1' pragma: @@ -341,24 +341,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiaozhatest/providers/Microsoft.Storage/storageAccounts/qiaozhatestdiag","name":"qiaozhatestdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-01T03:28:36.6558790Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-01T03:28:36.6558790Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-01T03:28:36.5776009Z","primaryEndpoints":{"blob":"https://qiaozhatestdiag.blob.core.windows.net/","queue":"https://qiaozhatestdiag.queue.core.windows.net/","table":"https://qiaozhatestdiag.table.core.windows.net/","file":"https://qiaozhatestdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-sdk-for-node/providers/Microsoft.Storage/storageAccounts/azuresdkfornodediag","name":"azuresdkfornodediag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-10T22:40:25.4342475Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-10T22:40:25.4342475Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-10T22:40:25.3405525Z","primaryEndpoints":{"blob":"https://azuresdkfornodediag.blob.core.windows.net/","queue":"https://azuresdkfornodediag.queue.core.windows.net/","table":"https://azuresdkfornodediag.table.core.windows.net/","file":"https://azuresdkfornodediag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-box/providers/Microsoft.Storage/storageAccounts/devboxdiag862","name":"devboxdiag862","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-08-06T17:53:31.3605408Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-08-06T17:53:31.3605408Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-08-06T17:53:31.2355702Z","primaryEndpoints":{"blob":"https://devboxdiag862.blob.core.windows.net/","queue":"https://devboxdiag862.queue.core.windows.net/","table":"https://devboxdiag862.table.core.windows.net/","file":"https://devboxdiag862.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msi-test-functions/providers/Microsoft.Storage/storageAccounts/msitestfunctionbc63","name":"msitestfunctionbc63","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-14T18:44:56.9136213Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-14T18:44:56.9136213Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-14T18:44:56.8042783Z","primaryEndpoints":{"blob":"https://msitestfunctionbc63.blob.core.windows.net/","queue":"https://msitestfunctionbc63.queue.core.windows.net/","table":"https://msitestfunctionbc63.table.core.windows.net/","file":"https://msitestfunctionbc63.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-sdk-for-js/providers/Microsoft.Storage/storageAccounts/proxytestjs","name":"proxytestjs","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-17T18:51:16.0174916Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-17T18:51:16.0174916Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-01-17T18:51:15.9237740Z","primaryEndpoints":{"dfs":"https://proxytestjs.dfs.core.windows.net/","web":"https://proxytestjs.z22.web.core.windows.net/","blob":"https://proxytestjs.blob.core.windows.net/","queue":"https://proxytestjs.queue.core.windows.net/","table":"https://proxytestjs.table.core.windows.net/","file":"https://proxytestjs.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://proxytestjs-secondary.dfs.core.windows.net/","web":"https://proxytestjs-secondary.z22.web.core.windows.net/","blob":"https://proxytestjs-secondary.blob.core.windows.net/","queue":"https://proxytestjs-secondary.queue.core.windows.net/","table":"https://proxytestjs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-28T03:00:39.9633826Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_compute_test_vm_extensions15a60f10/providers/Microsoft.Storage/storageAccounts/pyvmextstor15a60f10","name":"pyvmextstor15a60f10","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-17T04:30:54.7950234Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-17T04:30:54.7950234Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-17T04:30:54.7169469Z","primaryEndpoints":{"blob":"https://pyvmextstor15a60f10.blob.core.windows.net/","queue":"https://pyvmextstor15a60f10.queue.core.windows.net/","table":"https://pyvmextstor15a60f10.table.core.windows.net/","file":"https://pyvmextstor15a60f10.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiaozhatest/providers/Microsoft.Storage/storageAccounts/qiaozhadftest","name":"qiaozhadftest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T13:26:28.6688154Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T13:26:28.6688154Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-18T13:26:28.5907139Z","primaryEndpoints":{"blob":"https://qiaozhadftest.blob.core.windows.net/","queue":"https://qiaozhadftest.queue.core.windows.net/","table":"https://qiaozhadftest.table.core.windows.net/","file":"https://qiaozhadftest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arm-python-RG/providers/Microsoft.Storage/storageAccounts/armpythonrgdiag","name":"armpythonrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-08T08:37:58.4541510Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-08T08:37:58.4541510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-08T08:37:58.3603956Z","primaryEndpoints":{"blob":"https://armpythonrgdiag.blob.core.windows.net/","queue":"https://armpythonrgdiag.queue.core.windows.net/","table":"https://armpythonrgdiag.table.core.windows.net/","file":"https://armpythonrgdiag.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-changlong/providers/Microsoft.Storage/storageAccounts/testchanglong","name":"testchanglong","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:38:27.0613852Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:38:27.0613852Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-28T02:38:26.9983339Z","primaryEndpoints":{"dfs":"https://testchanglong.dfs.core.windows.net/","web":"https://testchanglong.z6.web.core.windows.net/","blob":"https://testchanglong.blob.core.windows.net/","queue":"https://testchanglong.queue.core.windows.net/","table":"https://testchanglong.table.core.windows.net/","file":"https://testchanglong.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testchanglong-secondary.dfs.core.windows.net/","web":"https://testchanglong-secondary.z6.web.core.windows.net/","blob":"https://testchanglong-secondary.blob.core.windows.net/","queue":"https://testchanglong-secondary.queue.core.windows.net/","table":"https://testchanglong-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/cs1100320006f639ac4","name":"cs1100320006f639ac4","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-22T09:18:47.2076778Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-22T09:18:47.2076778Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-22T09:18:47.1451761Z","primaryEndpoints":{"dfs":"https://cs1100320006f639ac4.dfs.core.windows.net/","web":"https://cs1100320006f639ac4.z23.web.core.windows.net/","blob":"https://cs1100320006f639ac4.blob.core.windows.net/","queue":"https://cs1100320006f639ac4.queue.core.windows.net/","table":"https://cs1100320006f639ac4.table.core.windows.net/","file":"https://cs1100320006f639ac4.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs192f95d8f3c67x4124x91c","name":"cs192f95d8f3c67x4124x91c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-19T06:50:51.6330046Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-19T06:50:51.6330046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-19T06:50:51.5705351Z","primaryEndpoints":{"dfs":"https://cs192f95d8f3c67x4124x91c.dfs.core.windows.net/","web":"https://cs192f95d8f3c67x4124x91c.z23.web.core.windows.net/","blob":"https://cs192f95d8f3c67x4124x91c.blob.core.windows.net/","queue":"https://cs192f95d8f3c67x4124x91c.queue.core.windows.net/","table":"https://cs192f95d8f3c67x4124x91c.table.core.windows.net/","file":"https://cs192f95d8f3c67x4124x91c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ml-test/providers/Microsoft.Storage/storageAccounts/billymlteststorage","name":"billymlteststorage","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-11T04:48:02.8290793Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-11T04:48:02.8290793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-11T04:48:02.7509575Z","primaryEndpoints":{"blob":"https://billymlteststorage.blob.core.windows.net/","queue":"https://billymlteststorage.queue.core.windows.net/","table":"https://billymlteststorage.table.core.windows.net/","file":"https://billymlteststorage.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/git2gridtesting/providers/Microsoft.Storage/storageAccounts/git2gridb900","name":"git2gridb900","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-13T01:56:00.4853173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-13T01:56:00.4853173Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-13T01:56:00.3446936Z","primaryEndpoints":{"blob":"https://git2gridb900.blob.core.windows.net/","queue":"https://git2gridb900.queue.core.windows.net/","table":"https://git2gridb900.table.core.windows.net/","file":"https://git2gridb900.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vpn-lon/providers/Microsoft.Storage/storageAccounts/vpnlondiag","name":"vpnlondiag","type":"Microsoft.Storage/storageAccounts","location":"ukwest","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-08T20:09:35.3071398Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-08T20:09:35.3071398Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-08T20:09:35.2602311Z","primaryEndpoints":{"blob":"https://vpnlondiag.blob.core.windows.net/","queue":"https://vpnlondiag.queue.core.windows.net/","table":"https://vpnlondiag.table.core.windows.net/","file":"https://vpnlondiag.file.core.windows.net/"},"primaryLocation":"ukwest","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lianwrs/providers/Microsoft.Storage/storageAccounts/lianwrss","name":"lianwrss","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-27T03:38:53.5933203Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-27T03:38:53.5933203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-27T03:38:53.4996037Z","primaryEndpoints":{"dfs":"https://lianwrss.dfs.core.windows.net/","web":"https://lianwrss.z13.web.core.windows.net/","blob":"https://lianwrss.blob.core.windows.net/","queue":"https://lianwrss.queue.core.windows.net/","table":"https://lianwrss.table.core.windows.net/","file":"https://lianwrss.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://lianwrss-secondary.dfs.core.windows.net/","web":"https://lianwrss-secondary.z13.web.core.windows.net/","blob":"https://lianwrss-secondary.blob.core.windows.net/","queue":"https://lianwrss-secondary.queue.core.windows.net/","table":"https://lianwrss-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiaozhatest/providers/Microsoft.Storage/storageAccounts/qiaozhatestdiag","name":"qiaozhatestdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-01T03:28:36.6558790Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-01T03:28:36.6558790Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-01T03:28:36.5776009Z","primaryEndpoints":{"blob":"https://qiaozhatestdiag.blob.core.windows.net/","queue":"https://qiaozhatestdiag.queue.core.windows.net/","table":"https://qiaozhatestdiag.table.core.windows.net/","file":"https://qiaozhatestdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiaozhatest/providers/Microsoft.Storage/storageAccounts/testforadfsdk","name":"testforadfsdk","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-29T04:46:28.8903304Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-29T04:46:28.8903304Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-29T04:46:28.7965820Z","primaryEndpoints":{"dfs":"https://testforadfsdk.dfs.core.windows.net/","web":"https://testforadfsdk.z13.web.core.windows.net/","blob":"https://testforadfsdk.blob.core.windows.net/","queue":"https://testforadfsdk.queue.core.windows.net/","table":"https://testforadfsdk.table.core.windows.net/","file":"https://testforadfsdk.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiaozhatest/providers/Microsoft.Storage/storageAccounts/testsdkjs","name":"testsdkjs","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-07T07:31:16.0546602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-07T07:31:16.0546602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-07T07:31:15.9296592Z","primaryEndpoints":{"dfs":"https://testsdkjs.dfs.core.windows.net/","web":"https://testsdkjs.z13.web.core.windows.net/","blob":"https://testsdkjs.blob.core.windows.net/","queue":"https://testsdkjs.queue.core.windows.net/","table":"https://testsdkjs.table.core.windows.net/","file":"https://testsdkjs.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testsdkjs-secondary.dfs.core.windows.net/","web":"https://testsdkjs-secondary.z13.web.core.windows.net/","blob":"https://testsdkjs-secondary.blob.core.windows.net/","queue":"https://testsdkjs-secondary.queue.core.windows.net/","table":"https://testsdkjs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiaozhatest/providers/Microsoft.Storage/storageAccounts/qiaozhatestdiag539","name":"qiaozhatestdiag539","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-06T01:55:21.1675069Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-06T01:55:21.1675069Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-06T01:55:21.0737687Z","primaryEndpoints":{"blob":"https://qiaozhatestdiag539.blob.core.windows.net/","queue":"https://qiaozhatestdiag539.queue.core.windows.net/","table":"https://qiaozhatestdiag539.table.core.windows.net/","file":"https://qiaozhatestdiag539.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-sdk-for-node/providers/Microsoft.Storage/storageAccounts/azuresdkfornodediag","name":"azuresdkfornodediag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-10T22:40:25.4342475Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-10T22:40:25.4342475Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-10T22:40:25.3405525Z","primaryEndpoints":{"blob":"https://azuresdkfornodediag.blob.core.windows.net/","queue":"https://azuresdkfornodediag.queue.core.windows.net/","table":"https://azuresdkfornodediag.table.core.windows.net/","file":"https://azuresdkfornodediag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqz44lhgyfadyuonzthxmzgrq4qtw5vctntbi2lyggv5neas6jklmdw2ot3qrglwn4xgw/providers/Microsoft.Storage/storageAccounts/clitesti5fqkvz5sekodvz7l","name":"clitesti5fqkvz5sekodvz7l","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-07T03:31:39.9199086Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-07T03:31:39.9199086Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-07T03:31:39.8417354Z","primaryEndpoints":{"blob":"https://clitesti5fqkvz5sekodvz7l.blob.core.windows.net/","queue":"https://clitesti5fqkvz5sekodvz7l.queue.core.windows.net/","table":"https://clitesti5fqkvz5sekodvz7l.table.core.windows.net/","file":"https://clitesti5fqkvz5sekodvz7l.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestleo4ph5sfx6z3zktznstrtxzj7llbya26xdg4qe477ebxol4xpl7zniwh3wkrh2m22uf/providers/Microsoft.Storage/storageAccounts/clitestidy657uufdzeitzcf","name":"clitestidy657uufdzeitzcf","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-14T05:19:43.4580946Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-14T05:19:43.4580946Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-14T05:19:43.3799804Z","primaryEndpoints":{"blob":"https://clitestidy657uufdzeitzcf.blob.core.windows.net/","queue":"https://clitestidy657uufdzeitzcf.queue.core.windows.net/","table":"https://clitestidy657uufdzeitzcf.table.core.windows.net/","file":"https://clitestidy657uufdzeitzcf.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestt766m3arr3aw6mv4bamwqplradoeeyqcy2ivqpqsigthyiarurwanqjqzt6qaubnepb7/providers/Microsoft.Storage/storageAccounts/clitestycq2ixmostncp2frb","name":"clitestycq2ixmostncp2frb","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-07T06:12:48.8279830Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-07T06:12:48.8279830Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-07T06:12:48.7498365Z","primaryEndpoints":{"blob":"https://clitestycq2ixmostncp2frb.blob.core.windows.net/","queue":"https://clitestycq2ixmostncp2frb.queue.core.windows.net/","table":"https://clitestycq2ixmostncp2frb.table.core.windows.net/","file":"https://clitestycq2ixmostncp2frb.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dev-box/providers/Microsoft.Storage/storageAccounts/devboxdiag862","name":"devboxdiag862","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-08-06T17:53:31.3605408Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-08-06T17:53:31.3605408Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-08-06T17:53:31.2355702Z","primaryEndpoints":{"blob":"https://devboxdiag862.blob.core.windows.net/","queue":"https://devboxdiag862.queue.core.windows.net/","table":"https://devboxdiag862.table.core.windows.net/","file":"https://devboxdiag862.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msi-test-functions/providers/Microsoft.Storage/storageAccounts/msitestfunctionbc63","name":"msitestfunctionbc63","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-14T18:44:56.9136213Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-14T18:44:56.9136213Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-14T18:44:56.8042783Z","primaryEndpoints":{"blob":"https://msitestfunctionbc63.blob.core.windows.net/","queue":"https://msitestfunctionbc63.queue.core.windows.net/","table":"https://msitestfunctionbc63.table.core.windows.net/","file":"https://msitestfunctionbc63.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-sdk-for-js/providers/Microsoft.Storage/storageAccounts/proxytestjs","name":"proxytestjs","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-17T18:51:16.0174916Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-01-17T18:51:16.0174916Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-01-17T18:51:15.9237740Z","primaryEndpoints":{"dfs":"https://proxytestjs.dfs.core.windows.net/","web":"https://proxytestjs.z22.web.core.windows.net/","blob":"https://proxytestjs.blob.core.windows.net/","queue":"https://proxytestjs.queue.core.windows.net/","table":"https://proxytestjs.table.core.windows.net/","file":"https://proxytestjs.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://proxytestjs-secondary.dfs.core.windows.net/","web":"https://proxytestjs-secondary.z22.web.core.windows.net/","blob":"https://proxytestjs-secondary.blob.core.windows.net/","queue":"https://proxytestjs-secondary.queue.core.windows.net/","table":"https://proxytestjs-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-20T01:10:41.1431642Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qiaozhatest/providers/Microsoft.Storage/storageAccounts/qiaozhadftest","name":"qiaozhadftest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T13:26:28.6688154Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-03-18T13:26:28.6688154Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-03-18T13:26:28.5907139Z","primaryEndpoints":{"blob":"https://qiaozhadftest.blob.core.windows.net/","queue":"https://qiaozhadftest.queue.core.windows.net/","table":"https://qiaozhadftest.table.core.windows.net/","file":"https://qiaozhadftest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/arm-python-RG/providers/Microsoft.Storage/storageAccounts/armpythonrgdiag","name":"armpythonrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-08T08:37:58.4541510Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-05-08T08:37:58.4541510Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-05-08T08:37:58.3603956Z","primaryEndpoints":{"blob":"https://armpythonrgdiag.blob.core.windows.net/","queue":"https://armpythonrgdiag.queue.core.windows.net/","table":"https://armpythonrgdiag.table.core.windows.net/","file":"https://armpythonrgdiag.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-changlong/providers/Microsoft.Storage/storageAccounts/testchanglong","name":"testchanglong","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:38:27.0613852Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T02:38:27.0613852Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-28T02:38:26.9983339Z","primaryEndpoints":{"dfs":"https://testchanglong.dfs.core.windows.net/","web":"https://testchanglong.z6.web.core.windows.net/","blob":"https://testchanglong.blob.core.windows.net/","queue":"https://testchanglong.queue.core.windows.net/","table":"https://testchanglong.table.core.windows.net/","file":"https://testchanglong.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available","secondaryLocation":"northeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testchanglong-secondary.dfs.core.windows.net/","web":"https://testchanglong-secondary.z6.web.core.windows.net/","blob":"https://testchanglong-secondary.blob.core.windows.net/","queue":"https://testchanglong-secondary.queue.core.windows.net/","table":"https://testchanglong-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/cs1100320006f639ac4","name":"cs1100320006f639ac4","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-22T09:18:47.2076778Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-22T09:18:47.2076778Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-06-22T09:18:47.1451761Z","primaryEndpoints":{"dfs":"https://cs1100320006f639ac4.dfs.core.windows.net/","web":"https://cs1100320006f639ac4.z23.web.core.windows.net/","blob":"https://cs1100320006f639ac4.blob.core.windows.net/","queue":"https://cs1100320006f639ac4.queue.core.windows.net/","table":"https://cs1100320006f639ac4.table.core.windows.net/","file":"https://cs1100320006f639ac4.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs192f95d8f3c67x4124x91c","name":"cs192f95d8f3c67x4124x91c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-19T06:50:51.6330046Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-19T06:50:51.6330046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-19T06:50:51.5705351Z","primaryEndpoints":{"dfs":"https://cs192f95d8f3c67x4124x91c.dfs.core.windows.net/","web":"https://cs192f95d8f3c67x4124x91c.z23.web.core.windows.net/","blob":"https://cs192f95d8f3c67x4124x91c.blob.core.windows.net/","queue":"https://cs192f95d8f3c67x4124x91c.queue.core.windows.net/","table":"https://cs192f95d8f3c67x4124x91c.table.core.windows.net/","file":"https://cs192f95d8f3c67x4124x91c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ml-test/providers/Microsoft.Storage/storageAccounts/billymlteststorage","name":"billymlteststorage","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-11T04:48:02.8290793Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-11T04:48:02.8290793Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-11T04:48:02.7509575Z","primaryEndpoints":{"blob":"https://billymlteststorage.blob.core.windows.net/","queue":"https://billymlteststorage.queue.core.windows.net/","table":"https://billymlteststorage.table.core.windows.net/","file":"https://billymlteststorage.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/git2gridtesting/providers/Microsoft.Storage/storageAccounts/git2gridb900","name":"git2gridb900","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-13T01:56:00.4853173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-13T01:56:00.4853173Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-13T01:56:00.3446936Z","primaryEndpoints":{"blob":"https://git2gridb900.blob.core.windows.net/","queue":"https://git2gridb900.queue.core.windows.net/","table":"https://git2gridb900.table.core.windows.net/","file":"https://git2gridb900.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vpn-lon/providers/Microsoft.Storage/storageAccounts/vpnlondiag","name":"vpnlondiag","type":"Microsoft.Storage/storageAccounts","location":"ukwest","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-08T20:09:35.3071398Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-08T20:09:35.3071398Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-08T20:09:35.2602311Z","primaryEndpoints":{"blob":"https://vpnlondiag.blob.core.windows.net/","queue":"https://vpnlondiag.queue.core.windows.net/","table":"https://vpnlondiag.table.core.windows.net/","file":"https://vpnlondiag.file.core.windows.net/"},"primaryLocation":"ukwest","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '18636' + - '26857' content-type: - application/json; charset=utf-8 date: - - Sun, 28 Jun 2020 03:01:00 GMT + - Thu, 20 Aug 2020 01:11:02 GMT expires: - '-1' pragma: @@ -370,13 +370,14 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - a717e5cd-7682-4ff7-8a95-8c06cf2de877 - - 7e84842c-3d0c-498a-9d46-49896e7e6831 - - 04e4d9f0-41e8-42d1-82ac-53e4700e5901 - - 6a3ad4fd-b272-411b-9d9b-1bd45e7e47c8 - - 3cd55285-ecf0-4c43-88fd-e02c8a4d3261 - - a0325977-cce3-48e6-aaf6-e2af6efe03f0 - - 9b05d7a7-b77d-4f6a-836c-93756892f946 + - bcef1ba1-37e6-4f82-bd87-9e2c00bd6b5f + - 08e17315-3f9a-43c5-b79e-160805b080b4 + - 9020f3ea-7dda-4b96-a8ad-588326a87ca5 + - 9455fc49-381c-4524-aee5-0304983c0890 + - 20964163-2cd9-4773-a22f-ad8b479771ab + - 7df90077-2481-4084-b43d-55559dd70bc5 + - 800b3d08-e7c0-4811-892e-6d0f74169e29 + - b9ccf2f4-bc21-4b14-9caa-597c5263f838 status: code: 200 message: OK @@ -394,15 +395,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-06-28T03:00:40.0258668Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-06-28T03:00:39.9633826Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}}' + string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_storage_test_storage_accounts43b8102a/providers/Microsoft.Storage/storageAccounts/pyarmstorage43b8102a","name":"pyarmstorage43b8102a","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-20T01:10:41.2056451Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-08-20T01:10:41.1431642Z","primaryEndpoints":{"blob":"https://pyarmstorage43b8102a.blob.core.windows.net/","queue":"https://pyarmstorage43b8102a.queue.core.windows.net/","table":"https://pyarmstorage43b8102a.table.core.windows.net/","file":"https://pyarmstorage43b8102a.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}}' headers: cache-control: - no-cache @@ -411,7 +412,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:01:02 GMT + - Thu, 20 Aug 2020 01:11:28 GMT expires: - '-1' pragma: @@ -427,7 +428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -443,8 +444,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -460,7 +461,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Sun, 28 Jun 2020 03:01:05 GMT + - Thu, 20 Aug 2020 01:11:34 GMT expires: - '-1' pragma: @@ -472,7 +473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK diff --git a/sdk/storage/azure-mgmt-storage/tests/recordings/test_mgmt_storage.test_storage_usage.yaml b/sdk/storage/azure-mgmt-storage/tests/recordings/test_mgmt_storage.test_storage_usage.yaml index 20032350cbd0..54314d9c4f22 100644 --- a/sdk/storage/azure-mgmt-storage/tests/recordings/test_mgmt_storage.test_storage_usage.yaml +++ b/sdk/storage/azure-mgmt-storage/tests/recordings/test_mgmt_storage.test_storage_usage.yaml @@ -9,15 +9,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Linux-4.19.104-microsoft-standard-x86_64-with-glibc2.29) msrest/0.6.16 - msrest_azure/0.6.3 azure-mgmt-storage/11.1.0 Azure-SDK-For-Python + - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 + azure-mgmt-storage/11.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/usages?api-version=2019-06-01 response: body: - string: '{"value":[{"unit":"Count","currentValue":1,"limit":250,"name":{"value":"StorageAccounts","localizedValue":"Storage + string: '{"value":[{"unit":"Count","currentValue":4,"limit":250,"name":{"value":"StorageAccounts","localizedValue":"Storage Accounts"}}]}' headers: cache-control: @@ -27,7 +27,7 @@ interactions: content-type: - application/json date: - - Sun, 28 Jun 2020 03:01:11 GMT + - Thu, 20 Aug 2020 01:11:38 GMT expires: - '-1' pragma: