diff --git a/src/storage-preview/azext_storage_preview/__init__.py b/src/storage-preview/azext_storage_preview/__init__.py index c167eb17515..062c2f802ca 100644 --- a/src/storage-preview/azext_storage_preview/__init__.py +++ b/src/storage-preview/azext_storage_preview/__init__.py @@ -16,7 +16,7 @@ def __init__(self, cli_ctx=None): from azure.cli.core.commands import CliCommandType register_resource_type('latest', CUSTOM_DATA_STORAGE, '2017-11-09') - register_resource_type('latest', CUSTOM_MGMT_STORAGE, '2018-02-01') + register_resource_type('latest', CUSTOM_MGMT_STORAGE, '2018-03-01-preview') storage_custom = CliCommandType(operations_tmpl='azext_storage_preview.custom#{}') super(StorageCommandsLoader, self).__init__(cli_ctx=cli_ctx, diff --git a/src/storage-preview/azext_storage_preview/_help.py b/src/storage-preview/azext_storage_preview/_help.py index eebcfa7b984..2d781e2486b 100644 --- a/src/storage-preview/azext_storage_preview/_help.py +++ b/src/storage-preview/azext_storage_preview/_help.py @@ -787,6 +787,21 @@ short-summary: Remove a network rule. """ +helps['storage account management-policy'] = """ + type: group + short-summary: Manage storage account management policies. +""" + +helps['storage account management-policy create'] = """ + type: command + short-summary: Creates the data policy rules associated with the specified storage account. +""" + +helps['storage account management-policy update'] = """ + type: command + short-summary: Updates the data policy rules associated with the specified storage account. +""" + helps['storage account generate-sas'] = """ type: command parameters: diff --git a/src/storage-preview/azext_storage_preview/_params.py b/src/storage-preview/azext_storage_preview/_params.py index ad72bc75f2d..236755f76f7 100644 --- a/src/storage-preview/azext_storage_preview/_params.py +++ b/src/storage-preview/azext_storage_preview/_params.py @@ -93,7 +93,6 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage account create') as c: t_account_type, t_sku_name, t_kind = self.get_models('AccountType', 'SkuName', 'Kind', resource_type=CUSTOM_MGMT_STORAGE) - c.register_common_storage_account_options() c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group) c.argument('account_type', help='The storage account type', arg_type=get_enum_type(t_account_type)) @@ -172,6 +171,12 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem validator=get_permission_validator(t_account_permissions)) c.ignore('sas_token') + with self.argument_context('storage account management-policy create') as c: + c.argument('policy', type=file_type, completer=FilesCompleter(), + help='The Storage Account ManagementPolicies Rules, in JSON format. See more details in: ' + 'https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.') + c.argument('account_name', help='The name of the storage account within the specified resource group.') + with self.argument_context('storage logging show') as c: c.extra('services', validator=get_char_options_validator('bqt', 'services'), default='bqt') diff --git a/src/storage-preview/azext_storage_preview/commands.py b/src/storage-preview/azext_storage_preview/commands.py index 8a8ebba313b..34787307349 100644 --- a/src/storage-preview/azext_storage_preview/commands.py +++ b/src/storage-preview/azext_storage_preview/commands.py @@ -17,7 +17,8 @@ def load_command_table(self, _): # pylint: disable=too-many-locals, too-many-statements storage_account_sdk = CliCommandType( - operations_tmpl='azure.mgmt.storage.operations.storage_accounts_operations#StorageAccountsOperations.{}', + operations_tmpl='azext_storage_preview.vendored_sdks.azure_mgmt_storage.operations.storage_accounts_operations' + '#StorageAccountsOperations.{}', client_factory=cf_sa, resource_type=CUSTOM_MGMT_STORAGE ) @@ -56,6 +57,15 @@ def get_custom_sdk(custom_module, client_factory, resource_type=CUSTOM_DATA_STOR g.command('keys list', 'list_keys', transform=lambda x: getattr(x, 'keys', x)) g.storage_command('generate-sas', 'generate_shared_access_signature', command_type=cloud_data_plane_sdk) + with self.command_group('storage account management-policy', storage_account_sdk, resource_type=CUSTOM_MGMT_STORAGE, + custom_command_type=storage_account_custom_type) as g: + g.command('show', 'get_management_policies') + g.custom_command('create', 'create_management_policies') + g.generic_update_command('update', getter_name='get_management_policies', + setter_name='update_management_policies', + setter_type=storage_account_custom_type) + g.command('delete', 'delete_management_policies') + with self.command_group('storage account network-rule', storage_account_sdk, custom_command_type=storage_account_custom_type, resource_type=CUSTOM_MGMT_STORAGE, min_api='2017-06-01') as g: diff --git a/src/storage-preview/azext_storage_preview/operations/account.py b/src/storage-preview/azext_storage_preview/operations/account.py index 6dc3fa3b8a2..d3cd54975b5 100644 --- a/src/storage-preview/azext_storage_preview/operations/account.py +++ b/src/storage-preview/azext_storage_preview/operations/account.py @@ -5,6 +5,8 @@ """Custom operations for storage account commands""" +import os +from azure.cli.core.util import get_file_json, shell_safe_json_parse from .._client_factory import storage_client_factory @@ -77,8 +79,8 @@ def show_storage_account_connection_string(cmd, resource_group_name, account_nam def show_storage_account_usage(cmd, location=None): scf = storage_client_factory(cmd.cli_ctx) if not location: - return next((x for x in scf.usage.list() if x.name.value == 'StorageAccounts'), None) # pylint: disable=no-member - return next((x for x in scf.usage.list_by_location(location) if x.name.value == 'StorageAccounts'), None) # pylint: disable=no-member + return next((x for x in scf.usages.list() if x.name.value == 'StorageAccounts'), None) # pylint: disable=no-member + return next((x for x in scf.usages.list_by_location(location) if x.name.value == 'StorageAccounts'), None) # pylint: disable=no-member # pylint: disable=too-many-locals @@ -133,7 +135,6 @@ def update_storage_account(cmd, instance, sku=None, tags=None, custom_domain=Non from knack.util import CLIError raise CLIError('incorrect usage: --default-action ACTION [--bypass SERVICE ...]') params.network_rule_set = acl - return params @@ -182,3 +183,18 @@ def remove_network_rule(cmd, client, resource_group_name, storage_account_name, StorageAccountUpdateParameters = cmd.get_models('StorageAccountUpdateParameters') params = StorageAccountUpdateParameters(network_rule_set=rules) return client.update(resource_group_name, storage_account_name, params) + + +def create_management_policies(client, resource_group_name, account_name, policy=None): + if policy: + if os.path.exists(policy): + policy = get_file_json(policy) + else: + policy = shell_safe_json_parse(policy) + return client.create_or_update_management_policies(resource_group_name, account_name, policy=policy) + + +def update_management_policies(client, resource_group_name, account_name, parameters=None): + if parameters: + parameters = parameters.policy + return client.create_or_update_management_policies(resource_group_name, account_name, policy=parameters) diff --git a/src/storage-preview/azext_storage_preview/tests/latest/mgmt_policy.json b/src/storage-preview/azext_storage_preview/tests/latest/mgmt_policy.json new file mode 100644 index 00000000000..21d49bfc52f --- /dev/null +++ b/src/storage-preview/azext_storage_preview/tests/latest/mgmt_policy.json @@ -0,0 +1,37 @@ +{ + "version": "0.5", + "rules": [ + { + "name": "olcmtest", + "type": "Lifecycle", + "definition": { + "filters": { + "blobTypes": [ + "blockBlob" + ], + "prefixMatch": [ + "olcmtestcontainer" + ] + }, + "actions": { + "baseBlob": { + "tierToCool": { + "daysAfterModificationGreaterThan": 1000 + }, + "tierToArchive": { + "daysAfterModificationGreaterThan": 90 + }, + "delete": { + "daysAfterModificationGreaterThan": 1000 + } + }, + "snapshot": { + "delete": { + "daysAfterCreationGreaterThan": 5000 + } + } + } + } + } + ] +} \ No newline at end of file diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_account_sas.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_account_sas.yaml index a3028c1f643..39635225666 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_account_sas.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_account_sas.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:34:59Z"}}' + "date": "2018-05-29T19:38:15Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:34:59Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:15Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:01 GMT'] + date: ['Tue, 29 May 2018 19:38:17 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:03 GMT'] + date: ['Tue, 29 May 2018 19:38:19 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b495545d-7224-45c8-85f7-8a7511a6be32?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/05b8f507-69fe-4de4-8820-0a08a3fae950?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b495545d-7224-45c8-85f7-8a7511a6be32?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/05b8f507-69fe-4de4-8820-0a08a3fae950?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:03.1149932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:03.1149932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:03.0524612Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.2777690Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.2777690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.1996214Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:20 GMT'] + date: ['Tue, 29 May 2018 19:38:35 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"3iO6BzYHk4QkStq0A/0WTu8vuqVfrZirlCraDzsFIhKUGrT2L7WVcy3PoKPXPEWgVsfx5oWhPWBU1p7lznyRcA==","permissions":"FULL"},{"keyName":"key2","value":"lq4+ppbT+bnCaNKuq5RSlZzoKfW2AOyYxzg9rWxgvLS9i2FUOhhrVHouwUxMoyaOvRodVuC6inu1vLHU8Krgng==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"jUfBxbXUU4FH+PGyHGChMT4dJ/w1HaOTt/MVI000TMosbc1UmoGv8XA0c9/hh05WrSwnvqe2RIxKFQ3gwYmsHQ==","permissions":"FULL"},{"keyName":"key2","value":"YsMZ93mCvT0DFZMHcLMeItAMQT3oCQ0Se8UUn8qIq9PG4UN/WQ5lZCc85UEZy+0obdhg8k/ILZzkvO0E3r1VjQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:21 GMT'] + date: ['Tue, 29 May 2018 19:38:37 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -125,25 +125,25 @@ interactions: CommandName: [storage account generate-sas] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5khabtgylsi2zsiud3lhcm3r3qa7fnozvimaescouvi5oscizisfrjmaz4odbicfi/providers/Microsoft.Storage/storageAccounts/clitestarwetbqrz7bohdzyg","name":"clitestarwetbqrz7bohdzyg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.8404742Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.8404742Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-14T23:35:07.7936057Z","primaryEndpoints":{"blob":"https://clitestarwetbqrz7bohdzyg.blob.core.windows.net/","queue":"https://clitestarwetbqrz7bohdzyg.queue.core.windows.net/","table":"https://clitestarwetbqrz7bohdzyg.table.core.windows.net/","file":"https://clitestarwetbqrz7bohdzyg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestarwetbqrz7bohdzyg-secondary.blob.core.windows.net/","queue":"https://clitestarwetbqrz7bohdzyg-secondary.queue.core.windows.net/","table":"https://clitestarwetbqrz7bohdzyg-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvolbupdasvx67mkmzd7esrq6ag5zyf47pxc2gcop4jmlcuxsxfxeb2tyhhqc3vux3/providers/Microsoft.Storage/storageAccounts/clitestle2mdsxltuoisuq3i","name":"clitestle2mdsxltuoisuq3i","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.3540670Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.3540670Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-14T23:35:07.2915489Z","primaryEndpoints":{"blob":"https://clitestle2mdsxltuoisuq3i.blob.core.windows.net/","queue":"https://clitestle2mdsxltuoisuq3i.queue.core.windows.net/","table":"https://clitestle2mdsxltuoisuq3i.table.core.windows.net/","file":"https://clitestle2mdsxltuoisuq3i.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestle2mdsxltuoisuq3i-secondary.blob.core.windows.net/","queue":"https://clitestle2mdsxltuoisuq3i-secondary.queue.core.windows.net/","table":"https://clitestle2mdsxltuoisuq3i-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5elye5iof5gqojw6ogsudoghndzeuucwp4cheolhkkxkcf3ft2nvnlgu2ll2rbeit/providers/Microsoft.Storage/storageAccounts/clitestrck4lmtrc6zkvytbd","name":"clitestrck4lmtrc6zkvytbd","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:03.5837547Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:03.5837547Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:03.5524977Z","primaryEndpoints":{"blob":"https://clitestrck4lmtrc6zkvytbd.blob.core.windows.net/","queue":"https://clitestrck4lmtrc6zkvytbd.queue.core.windows.net/","table":"https://clitestrck4lmtrc6zkvytbd.table.core.windows.net/","file":"https://clitestrck4lmtrc6zkvytbd.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2ecfcquyodsilsdff2m3pn3jejelkweuztsb3upqzyficiuef7gtbj5ftzkzyhau/providers/Microsoft.Storage/storageAccounts/clitest43ic4i5nspxaetnoz","name":"clitest43ic4i5nspxaetnoz","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.2602485Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.2602485Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:07.2134214Z","primaryEndpoints":{"blob":"https://clitest43ic4i5nspxaetnoz.blob.core.windows.net/","queue":"https://clitest43ic4i5nspxaetnoz.queue.core.windows.net/","table":"https://clitest43ic4i5nspxaetnoz.table.core.windows.net/","file":"https://clitest43ic4i5nspxaetnoz.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:03.1149932Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:03.1149932Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:03.0524612Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdygszyp775as6pmnxydx4oe2a7jnjd3hejwmu54fc3zb2gi2xwcak5wbommusdqsw/providers/Microsoft.Storage/storageAccounts/clitest6xpacrczt4mawrcdp","name":"clitest6xpacrczt4mawrcdp","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:08.5293957Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:08.5293957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-14T23:35:08.4812533Z","primaryEndpoints":{"blob":"https://clitest6xpacrczt4mawrcdp.blob.core.windows.net/","queue":"https://clitest6xpacrczt4mawrcdp.queue.core.windows.net/","table":"https://clitest6xpacrczt4mawrcdp.table.core.windows.net/","file":"https://clitest6xpacrczt4mawrcdp.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggeqy3ypxhnkwvrmegrbschurmen4xg33ggojd5pscxpnpsaelm2nls7bgz54ktipq/providers/Microsoft.Storage/storageAccounts/clitestgwc6sjrkmkoffqdyy","name":"clitestgwc6sjrkmkoffqdyy","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:06.5414563Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:06.5414563Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:06.4940448Z","primaryEndpoints":{"blob":"https://clitestgwc6sjrkmkoffqdyy.blob.core.windows.net/","queue":"https://clitestgwc6sjrkmkoffqdyy.queue.core.windows.net/","table":"https://clitestgwc6sjrkmkoffqdyy.table.core.windows.net/","file":"https://clitestgwc6sjrkmkoffqdyy.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"web":"https://acliautomationlab8902.web.core.windows.net/","blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"web":"https://clitestnlmd52jlcmr4ce7b4.web.core.windows.net/","blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"web":"https://wilxstorageworm.web.core.windows.net/","blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstorageworm-secondary.web.core.windows.net/","blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"web":"https://clitestjwzkdsfuou3niutbd.web.core.windows.net/","blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"web":"https://clitestt6pqb7xneswrh2sp6.web.core.windows.net/","blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"web":"https://clitestpabilv4yd6qxvguml.web.core.windows.net/","blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"web":"https://clitesta2lvllqz23rgasyf7.web.core.windows.net/","blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"web":"https://clitestfyixx74gs3loj3isf.web.core.windows.net/","blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"web":"https://clitestixsogcl5p5af5w2p3.web.core.windows.net/","blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"web":"https://clitestcrdofae6jvibomf2w.web.core.windows.net/","blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"web":"https://clitestcdx4bwlcvgviotc2p.web.core.windows.net/","blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} + body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbjtk2wau3cm5duyhupqgovcrkobbtya6pwe44xuyl2mlde7zfylmzjug34cn6z36f/providers/Microsoft.Storage/storageAccounts/clitestziyz6qcg53gjr4mva","name":"clitestziyz6qcg53gjr4mva","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:23.8871593Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:23.8871593Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:23.6371175Z","primaryEndpoints":{"blob":"https://clitestziyz6qcg53gjr4mva.blob.core.windows.net/","queue":"https://clitestziyz6qcg53gjr4mva.queue.core.windows.net/","table":"https://clitestziyz6qcg53gjr4mva.table.core.windows.net/","file":"https://clitestziyz6qcg53gjr4mva.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4aeyoith7wzer5jsnpniwgpjpjs65tkl526ioesaprwquiac7kl6eexcu3fkl5dor/providers/Microsoft.Storage/storageAccounts/clitestnoihgzqsrptijn64v","name":"clitestnoihgzqsrptijn64v","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.8090262Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.8090262Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:24.6996393Z","primaryEndpoints":{"blob":"https://clitestnoihgzqsrptijn64v.blob.core.windows.net/","queue":"https://clitestnoihgzqsrptijn64v.queue.core.windows.net/","table":"https://clitestnoihgzqsrptijn64v.table.core.windows.net/","file":"https://clitestnoihgzqsrptijn64v.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjpfbbjyfbqefycs5pfoarb4xkkwmar23uw7pdv4foy7oqkrwvpljoua6eiw2o652/providers/Microsoft.Storage/storageAccounts/clitestvvbrprvvlaqaphx74","name":"clitestvvbrprvvlaqaphx74","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:20.8402338Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:20.8402338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:20.4339479Z","primaryEndpoints":{"blob":"https://clitestvvbrprvvlaqaphx74.blob.core.windows.net/","queue":"https://clitestvvbrprvvlaqaphx74.queue.core.windows.net/","table":"https://clitestvvbrprvvlaqaphx74.table.core.windows.net/","file":"https://clitestvvbrprvvlaqaphx74.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsamkomjzf5nvfprwf5mfbh2akkdp7df4tcirgzevnfawzvoj7a64jynnvm75g2lie/providers/Microsoft.Storage/storageAccounts/clitestsym42rwv3iaizlei6","name":"clitestsym42rwv3iaizlei6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:27.3715224Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:27.3715224Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:27.2777784Z","primaryEndpoints":{"blob":"https://clitestsym42rwv3iaizlei6.blob.core.windows.net/","queue":"https://clitestsym42rwv3iaizlei6.queue.core.windows.net/","table":"https://clitestsym42rwv3iaizlei6.table.core.windows.net/","file":"https://clitestsym42rwv3iaizlei6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestsym42rwv3iaizlei6-secondary.blob.core.windows.net/","queue":"https://clitestsym42rwv3iaizlei6-secondary.queue.core.windows.net/","table":"https://clitestsym42rwv3iaizlei6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvtsaqhqo4aksuufe3kuecrizqvyc7acaoh4l37i76poorbogbrwlljbqhmtjwdvqu/providers/Microsoft.Storage/storageAccounts/clitest4fkcxa2rmognfolwg","name":"clitest4fkcxa2rmognfolwg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.1684294Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.1684294Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:23.9496266Z","primaryEndpoints":{"blob":"https://clitest4fkcxa2rmognfolwg.blob.core.windows.net/","queue":"https://clitest4fkcxa2rmognfolwg.queue.core.windows.net/","table":"https://clitest4fkcxa2rmognfolwg.table.core.windows.net/","file":"https://clitest4fkcxa2rmognfolwg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.2777690Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.2777690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.1996214Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgasunvw67kfs36iqddv2suvqetmh4otnztcws3g5rurhajcqmkzbadpycehshxpnay/providers/Microsoft.Storage/storageAccounts/clitestlew6gnl6pknq47cpp","name":"clitestlew6gnl6pknq47cpp","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:25.6371462Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:25.6371462Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:25.5121499Z","primaryEndpoints":{"blob":"https://clitestlew6gnl6pknq47cpp.blob.core.windows.net/","queue":"https://clitestlew6gnl6pknq47cpp.queue.core.windows.net/","table":"https://clitestlew6gnl6pknq47cpp.table.core.windows.net/","file":"https://clitestlew6gnl6pknq47cpp.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestlew6gnl6pknq47cpp-secondary.blob.core.windows.net/","queue":"https://clitestlew6gnl6pknq47cpp-secondary.queue.core.windows.net/","table":"https://clitestlew6gnl6pknq47cpp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfhep77mmcmcn3afvnvskjk3g27ybc7gq6kh5c6vu7ugy7e3ykawkib6u7st25kbi/providers/Microsoft.Storage/storageAccounts/clitest5o5upfigqe5aenkc3","name":"clitest5o5upfigqe5aenkc3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:22:12.4388487Z","primaryEndpoints":{"blob":"https://clitest5o5upfigqe5aenkc3.blob.core.windows.net/","queue":"https://clitest5o5upfigqe5aenkc3.queue.core.windows.net/","table":"https://clitest5o5upfigqe5aenkc3.table.core.windows.net/","file":"https://clitest5o5upfigqe5aenkc3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv6extdlzddtno2qf5o37e5g2n2d2x5ah4gq2olmpqezmxibj4h36focak4y6dose7/providers/Microsoft.Storage/storageAccounts/clitestcushmpfbtkste2a2a","name":"clitestcushmpfbtkste2a2a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:20:25.0780033Z","primaryEndpoints":{"blob":"https://clitestcushmpfbtkste2a2a.blob.core.windows.net/","queue":"https://clitestcushmpfbtkste2a2a.queue.core.windows.net/","table":"https://clitestcushmpfbtkste2a2a.table.core.windows.net/","file":"https://clitestcushmpfbtkste2a2a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgruni7iif3eiip3kf5hcf3dkzje2nont3rodcbysqzt3jopjpcppggxtnbeemo6ou2/providers/Microsoft.Storage/storageAccounts/clitest5kyn7laggavmjomkd","name":"clitest5kyn7laggavmjomkd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.7665905Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.7665905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.7197141Z","primaryEndpoints":{"blob":"https://clitest5kyn7laggavmjomkd.blob.core.windows.net/","queue":"https://clitest5kyn7laggavmjomkd.queue.core.windows.net/","table":"https://clitest5kyn7laggavmjomkd.table.core.windows.net/","file":"https://clitest5kyn7laggavmjomkd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup/providers/Microsoft.Storage/storageAccounts/wilxstoragedlm","name":"wilxstoragedlm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T17:27:21.3073351Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T17:27:21.3073351Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-05-29T17:27:21.2604579Z","primaryEndpoints":{"web":"https://wilxstoragedlm.z3.web.core.windows.net/","blob":"https://wilxstoragedlm.blob.core.windows.net/","queue":"https://wilxstoragedlm.queue.core.windows.net/","table":"https://wilxstoragedlm.table.core.windows.net/","file":"https://wilxstoragedlm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstoragedlm-secondary.z3.web.core.windows.net/","blob":"https://wilxstoragedlm-secondary.blob.core.windows.net/","queue":"https://wilxstoragedlm-secondary.queue.core.windows.net/","table":"https://wilxstoragedlm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzhnckmw5ftoqmm2b5gezwgslvfm2dqg7ldpwvuukicy7ca4unquohsptfrbddr2a/providers/Microsoft.Storage/storageAccounts/clitestvjlqxa4ctzkwwpg4b","name":"clitestvjlqxa4ctzkwwpg4b","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.5165939Z","primaryEndpoints":{"blob":"https://clitestvjlqxa4ctzkwwpg4b.blob.core.windows.net/","queue":"https://clitestvjlqxa4ctzkwwpg4b.queue.core.windows.net/","table":"https://clitestvjlqxa4ctzkwwpg4b.table.core.windows.net/","file":"https://clitestvjlqxa4ctzkwwpg4b.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6xf4idvnxclgamrcp2ezv54qhk3doyffriwiegbm7ouxjbfmd2cj7izni3bhdv4wf/providers/Microsoft.Storage/storageAccounts/clitestoj23vdhimampujgji","name":"clitestoj23vdhimampujgji","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:09:49.3684695Z","primaryEndpoints":{"blob":"https://clitestoj23vdhimampujgji.blob.core.windows.net/","queue":"https://clitestoj23vdhimampujgji.queue.core.windows.net/","table":"https://clitestoj23vdhimampujgji.table.core.windows.net/","file":"https://clitestoj23vdhimampujgji.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} headers: cache-control: [no-cache] - content-length: ['26261'] + content-length: ['33283'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:22 GMT'] + date: ['Tue, 29 May 2018 19:38:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-original-request-ids: [9cf71417-0b16-4543-bed4-d7834ed1fcd7, f1cb87e5-fcb2-452d-9f58-a9be4f1f56af, - 68125bf1-a698-4bc1-a86a-c61c56ceee35, 197dc439-6fb5-4c3e-8ce1-138026d4b5fd] + x-ms-original-request-ids: [91fc2dda-d4ee-4e87-b02f-522b5e6be985, c3b779c8-ee41-4605-a4ca-b93961a25e2e, + 4aa4dfe5-1b51-4651-9391-1fe3b8639c19, 0a735048-c731-4d80-a9e7-e6280b66f2ff] status: {code: 200, message: OK} - request: body: null @@ -154,18 +154,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"3iO6BzYHk4QkStq0A/0WTu8vuqVfrZirlCraDzsFIhKUGrT2L7WVcy3PoKPXPEWgVsfx5oWhPWBU1p7lznyRcA==","permissions":"FULL"},{"keyName":"key2","value":"lq4+ppbT+bnCaNKuq5RSlZzoKfW2AOyYxzg9rWxgvLS9i2FUOhhrVHouwUxMoyaOvRodVuC6inu1vLHU8Krgng==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"jUfBxbXUU4FH+PGyHGChMT4dJ/w1HaOTt/MVI000TMosbc1UmoGv8XA0c9/hh05WrSwnvqe2RIxKFQ3gwYmsHQ==","permissions":"FULL"},{"keyName":"key2","value":"YsMZ93mCvT0DFZMHcLMeItAMQT3oCQ0Se8UUn8qIq9PG4UN/WQ5lZCc85UEZy+0obdhg8k/ILZzkvO0E3r1VjQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:23 GMT'] + date: ['Tue, 29 May 2018 19:38:38 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -174,7 +174,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -185,9 +185,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -196,9 +196,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:23 GMT'] + date: ['Tue, 29 May 2018 19:38:40 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdTUU9JT0RSNkNCVDdMQTVNUkI0NzJOQUVJSTc2NjRGSVZTS3xCNzMwQzI0NEFBMzBDNzk3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdYUkpLWVFUN1IyVExaRzJaS1pYU05QSUNFWTRCUFJRS0RaUHxGQzUxQ0IzNTVBQTE5MDA4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account.yaml index a60b9084a95..c580b4713e8 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:24Z"}}' + "date": "2018-05-29T19:38:40Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:24Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:40Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/bbd3de45-019f-4deb-b4be-cff94cb9ca42?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/ba035d79-1147-41e8-b94b-23e7b21f37cd?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/bbd3de45-019f-4deb-b4be-cff94cb9ca42?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/ba035d79-1147-41e8-b94b-23e7b21f37cd?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:43 GMT'] + date: ['Tue, 29 May 2018 19:39:00 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,11 +95,11 @@ interactions: Connection: [keep-alive] Content-Length: ['81'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-03-01-preview response: body: {string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The storage account named cli000002 is already taken."}'} @@ -107,7 +107,7 @@ interactions: cache-control: [no-cache] content-length: ['129'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:44 GMT'] + date: ['Tue, 29 May 2018 19:39:01 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -125,18 +125,18 @@ interactions: CommandName: [storage account list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}'} + body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}'} headers: cache-control: [no-cache] content-length: ['1243'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:45 GMT'] + date: ['Tue, 29 May 2018 19:39:02 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -154,18 +154,18 @@ interactions: CommandName: [storage account show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:45 GMT'] + date: ['Tue, 29 May 2018 19:39:03 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -184,18 +184,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"C5jhEcN/MUMRiO92J8OIrOx1tOkXMM6sgZxYUbsH4gFyLHzJfIjqc2lNyxZgqWRltrjH64m3ln+AdDSJpLKLBg==","permissions":"FULL"},{"keyName":"key2","value":"gpWdwCTEVUYV+kyRI8PRTjxjT7Tar8otFrqh5GM5Riw7CSi0TCxxeU3Y5yPvkOBfhsYmFum3+zqhfcLdgAhwRw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"H4aIbDr+cL0vqz6gIdNy8dsNTU+PTu8LUKvieQTO2u/kGuJbtRkSmR1dFaNtfT4fBSqMbZrSxMbOPpwMEGg3xQ==","permissions":"FULL"},{"keyName":"key2","value":"ywZvI0/7SEso2GmS0jekaZzrmz/20SqDWoeynbjdCBUw6SLL0xEdGtGEoZp3hfadyRY6cSrjyocH+kHxgflMLA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:46 GMT'] + date: ['Tue, 29 May 2018 19:39:02 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -214,18 +214,18 @@ interactions: CommandName: [storage account update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:46 GMT'] + date: ['Tue, 29 May 2018 19:39:04 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -248,18 +248,18 @@ interactions: Connection: [keep-alive] Content-Length: ['349'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"foo":"bar","cat":""},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"foo":"bar","cat":""},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1251'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:47 GMT'] + date: ['Tue, 29 May 2018 19:39:05 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -268,7 +268,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -278,18 +278,18 @@ interactions: CommandName: [storage account update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"foo":"bar","cat":""},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"foo":"bar","cat":""},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1251'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:47 GMT'] + date: ['Tue, 29 May 2018 19:39:05 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -312,18 +312,18 @@ interactions: Connection: [keep-alive] Content-Length: ['326'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:48 GMT'] + date: ['Tue, 29 May 2018 19:39:06 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -342,18 +342,18 @@ interactions: CommandName: [storage account update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:49 GMT'] + date: ['Tue, 29 May 2018 19:39:06 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -376,18 +376,18 @@ interactions: Connection: [keep-alive] Content-Length: ['343'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"test":"success"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:26.7043206Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:26.6418494Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"test":"success"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:43.7779806Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:43.6842046Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1247'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:50 GMT'] + date: ['Tue, 29 May 2018 19:39:08 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -407,18 +407,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -436,18 +436,18 @@ interactions: Connection: [keep-alive] Content-Length: ['81'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-03-01-preview response: body: {string: '{"nameAvailable":true}'} headers: cache-control: [no-cache] content-length: ['22'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:53 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -466,9 +466,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -477,9 +477,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:12 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdDQ1pRV0ZJSElPQUJQVEg0WUhaVkVaQVdMWkhHTFlVVDNTTHw4MjlEMUY0NzExRTcwQTgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdBMldWTjVGSTdRU1lOQlRST1FCMkQzUExXSkpBSE1NN1dYM3xGQkY0Qjg4NDI5NEFCQjgyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_v2.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_v2.yaml index 37063fc97dc..757718eaef4 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_v2.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_v2.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-05-14T23:35:55Z"}}' + "automation", "date": "2018-05-29T19:39:12Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['118'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:55Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:39:12Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['137'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:16 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/93e91bed-f35d-46e6-824c-011c9c2b5b6b?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/64ca9776-d2dc-4889-b2e4-8b388a95d7c0?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/93e91bed-f35d-46e6-824c-011c9c2b5b6b?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/64ca9776-d2dc-4889-b2e4-8b388a95d7c0?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:58.4249157Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:58.4249157Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:58.2686241Z","primaryEndpoints":{"web":"https://cli000002.z21.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://cli000002-secondary.z21.web.core.windows.net/","blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:39:16.5858187Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:39:16.5858187Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-05-29T19:39:16.4920655Z","primaryEndpoints":{"web":"https://cli000002.z21.web.core.windows.net/","blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://cli000002-secondary.z21.web.core.windows.net/","blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1735'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:36:15 GMT'] + date: ['Tue, 29 May 2018 19:39:33 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,11 +95,11 @@ interactions: Connection: [keep-alive] Content-Length: ['81'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-03-01-preview response: body: {string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"The storage account named cli000002 is already taken."}'} @@ -107,7 +107,7 @@ interactions: cache-control: [no-cache] content-length: ['129'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:36:17 GMT'] + date: ['Tue, 29 May 2018 19:39:34 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,9 +126,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -137,9 +137,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:36:18 GMT'] + date: ['Tue, 29 May 2018 19:39:36 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdVRzdPQ1NNVVBXUUZWM0tVWlc1Tk5DUkhZUDRaUEpBWE9UN3w0MzM2QjY5NjVFMEY5QTJCLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc2UEhVWjNWS1RBQUxGN1NYSFAyUlQyQ0dYWUtBVUZPWUZCWnw4OTU4NDRGN0QxMDY3RENCLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml index fe1277804c3..bbd22075848 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_create_storage_account_with_assigned_identity.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-05-14T23:36:18Z"}}' + "automation", "date": "2018-05-29T19:39:37Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['118'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:36:18Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:39:37Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:36:19 GMT'] + date: ['Tue, 29 May 2018 19:39:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: null @@ -36,19 +36,19 @@ interactions: CommandName: [storage account create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:36:18Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:39:37Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:36:20 GMT'] + date: ['Tue, 29 May 2018 19:39:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -66,26 +66,26 @@ interactions: Connection: [keep-alive] Content-Length: ['173'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:36:24 GMT'] + date: ['Tue, 29 May 2018 19:39:43 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a4587bf1-918d-4013-8174-37191266b39f?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/0cf7ddea-0d28-49e2-8fa6-fcb1834a603c?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 202, message: Accepted} - request: body: null @@ -94,17 +94,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a4587bf1-918d-4013-8174-37191266b39f?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/0cf7ddea-0d28-49e2-8fa6-fcb1834a603c?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"identity":{"principalId":"d128c385-119a-4365-8636-92f8ab7dfbf5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:24.0318698Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:24.0318698Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:36:23.9537175Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"identity":{"principalId":"10ae3271-6c46-4de1-9e70-394fc7f82a02","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:39:42.3997035Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:39:42.3997035Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:39:42.3215803Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1387'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:36:41 GMT'] + date: ['Tue, 29 May 2018 19:40:00 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -123,9 +123,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -134,12 +134,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:36:42 GMT'] + date: ['Tue, 29 May 2018 19:40:02 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdRS05WMlhITERLUlBBTFlQNlVHVklVUVpBUkJDRzZBUllPNHxFODNCRERBMUY2N0ZCMDYyLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdZQUZRU0tEWDM3Tk5CQzY2RVFZRVBNN1RESlhXMkdRVEdWNHw4RERBREIzNkU3N0RGNkJGLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_customer_managed_key.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_customer_managed_key.yaml index bed0e7cb94c..97632479af8 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_customer_managed_key.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_customer_managed_key.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-05-14T23:36:44Z"}}' + "automation", "date": "2018-05-29T19:40:02Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['118'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:36:44Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:40:02Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:36:45 GMT'] + date: ['Tue, 29 May 2018 19:40:03 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "southcentralus", @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['133'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:36:46 GMT'] + date: ['Tue, 29 May 2018 19:40:05 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/1afe27f7-5f8e-4b72-8860-fa48e9f868d0?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b1408919-2f2f-4296-a5ba-106d082e96ba?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/1afe27f7-5f8e-4b72-8860-fa48e9f868d0?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b1408919-2f2f-4296-a5ba-106d082e96ba?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:36:47.2482326Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:40:05.0101480Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1247'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:04 GMT'] + date: ['Tue, 29 May 2018 19:40:22 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"XEqSd2m6z1wiDARMrcbTMeKR8RnXDfSSflPv8hwU1WxDXW8/CEyFmmZJg5oPnoiJCv+uT/NisfE8injhAC40Ug==","permissions":"FULL"},{"keyName":"key2","value":"4Bue+uo7bXHhn20GxQsdPXSf+srm2hIsIGizjpmaecwPVgrRpKOskKw/xXftlShdAtwf97uyooIReVkIXpmanQ==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"DSOQDy/CBgyQf2yOdy4xeeUZpASNp5NoUruPFf95c8igWLnMMOduzVBgVzeg6oYaDnN8IY0EK0UIxVzt0ZRrQw==","permissions":"FULL"},{"keyName":"key2","value":"S4HjxN83fGGHjsAspcyfNKvnVl00UXlLZXfGSkrQUW5wxmi8/ae+/F2dA2fEy1n9KY0tsz84AWrIDJS7fDV9mQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:05 GMT'] + date: ['Tue, 29 May 2018 19:40:23 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -125,19 +125,19 @@ interactions: CommandName: [keyvault create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:36:44Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:40:02Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:06 GMT'] + date: ['Tue, 29 May 2018 19:40:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -151,7 +151,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 azure-graphrbac/0.40.0 Azure-SDK-For-Python] accept-language: [en-US] method: GET @@ -174,13 +174,13 @@ interactions: content-length: ['13487'] content-type: [application/json; odata=minimalmetadata; streaming=true; charset=utf-8] dataserviceversion: [3.0;] - date: ['Mon, 14 May 2018 23:37:07 GMT'] - duration: ['1643251'] + date: ['Tue, 29 May 2018 19:40:26 GMT'] + duration: ['1054882'] expires: ['-1'] - ocp-aad-diagnostics-server-name: [susOkr8YvnkWhpfwvEOXpfZ/acdphRpz4tl/Fe8Bm3M=] - ocp-aad-session-key: [nrwr_nwqEHT1bET0zBfAu0ipRP7GxxKUhV8sWnXrv1GBS_2BptS9DwAAsj5QrQJ7VB4eY0q5r6QUxQxZRxPFenSb8PMdqQhNRExdhVnV9rHwJpdT7vxK69cpvrTWs0f0.5IeUHQFMwvJIL0IO4a8JiGo7m7V0ue-DQoNqJpM3MDs] + ocp-aad-diagnostics-server-name: [WzhaGtBqxSLZ0hrAkiIQJ9kgl/P+rn9FQMPcJn/2zBI=] + ocp-aad-session-key: [wuVmJQ2SlJYbON6cka44VCibyhmswzoe08Jp5QntFmWnmADVx6qQgM8DUYGZGyhsE1H3AWtwfTGwdwHSoDtaWB0bdDVzBoIi9ucuW-FIDvEvvtw67iQgJ4JTmm2Pxy4u.bAssqJIutVaO2vstiU5yNrRoliZOxN0Dep3cwbX5DTg] pragma: [no-cache] - request-id: [92c0bc95-f2fd-4754-aae7-b65827bf337f] + request-id: [7a7585f8-0876-41ba-a560-0cf0f577713b] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-aspnet-version: [4.0.30319] @@ -205,9 +205,9 @@ interactions: Connection: [keep-alive] Content-Length: ['754'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 keyvaultmanagementclient/0.40.0 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 @@ -217,7 +217,7 @@ interactions: cache-control: [no-cache] content-length: ['1114'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:11 GMT'] + date: ['Tue, 29 May 2018 19:40:28 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -226,7 +226,7 @@ interactions: vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-keyvault-service-version: [1.0.0.215] + x-ms-keyvault-service-version: [1.0.0.217] x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} @@ -238,9 +238,9 @@ interactions: CommandName: [keyvault show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 keyvaultmanagementclient/0.40.0 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 @@ -250,7 +250,7 @@ interactions: cache-control: [no-cache] content-length: ['1115'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:12 GMT'] + date: ['Tue, 29 May 2018 19:40:29 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -259,7 +259,7 @@ interactions: vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-keyvault-service-version: [1.0.0.215] + x-ms-keyvault-service-version: [1.0.0.217] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -270,7 +270,7 @@ interactions: Connection: [keep-alive] Content-Length: ['47'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 keyvaultclient/0.3.7 Azure-SDK-For-Python] accept-language: [en-US] method: POST @@ -280,7 +280,7 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:37:12 GMT'] + date: ['Tue, 29 May 2018 19:40:29 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -302,18 +302,18 @@ interactions: Connection: [keep-alive] Content-Length: ['47'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 keyvaultclient/0.3.7 Azure-SDK-For-Python] accept-language: [en-US] method: POST uri: https://clitest000003.vault.azure.net/keys/testkey/create?api-version=2016-10-01 response: - body: {string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/testkey/e89f9c7fda784282b8c41431a709ce2c","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"1_aTm9M1fg-ALjsiAvPxGJy0UF_gnLh0SJRt4p8_iXvmpp_WJjrRDDaLX4A68PJmqUULDqlzrisHDJT8eyOC0qSTxIggNME3gg4qSIR3bZe7ee8K_zZYHbif4g5QRe0OdUUf6sy9NtZArTGPaBBuakBSNsARxBa6U0r0qn1RF6Kr9cZb4SZLHth9_nNkSSKFLPk37Zt6_9fzTrVCzwTV67B5lASmogaDd8CbWbowu-J_imHun4g_NN2NP8wy9KDsYERV4dgqJYTJJgkm49XMo5aXECvsEC87-zQC9u-APsAZ_fEkMbMUlRuJyNhBCnS2gbwJGUbD3q-dF8mlLyJMHQ","e":"AQAB"},"attributes":{"enabled":true,"created":1526341035,"updated":1526341035,"recoveryLevel":"Purgeable"}}'} + body: {string: '{"key":{"kid":"https://clitest000003.vault.azure.net/keys/testkey/66fa88dacc5748f0b71925eefe0303ef","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"uhh-S2yLEpN4CNUp_ArLwJYBa7IvPxzVBejnZHehbcfER6Yzywah-VI0qqSrqhix-3uvbGIGbSe7zGZL5gTotleuixTIxduriBIaWOQDZzHPAQP8LWd5z6UPzXG98nDYYRBnDdzABbSdsAtLSnizsuf7NlIBRdy1_lIzvRvDx9S132zuST9Yb6FFWSzmemyYdsCK-rxLaJfkTngakrydfe02GUzN2n1TUsZBfiJQC9LQOc-GjH7XXLx78tyskpkOnOLo6p7fmL2zC7oOHjOs6-DYgwTS2JkL82aMf3caD0_jdHQekYjAr7nKV30Xlzi8imlfFkEQlCnzB37pXZJ9eQ","e":"AQAB"},"attributes":{"enabled":true,"created":1527622832,"updated":1527622832,"recoveryLevel":"Purgeable"}}'} headers: cache-control: [no-cache] content-length: ['654'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:14 GMT'] + date: ['Tue, 29 May 2018 19:40:31 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -333,18 +333,18 @@ interactions: CommandName: [storage account update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:36:47.2482326Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:40:05.0101480Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1247'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:15 GMT'] + date: ['Tue, 29 May 2018 19:40:32 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -367,18 +367,18 @@ interactions: Connection: [keep-alive] Content-Length: ['366'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"identity":{"principalId":"30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:36:47.2482326Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"identity":{"principalId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:40:05.0101480Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1387'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:18 GMT'] + date: ['Tue, 29 May 2018 19:40:35 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -387,7 +387,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -397,9 +397,9 @@ interactions: CommandName: [keyvault set-policy] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 keyvaultmanagementclient/0.40.0 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 @@ -409,7 +409,7 @@ interactions: cache-control: [no-cache] content-length: ['1115'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:18 GMT'] + date: ['Tue, 29 May 2018 19:40:36 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -418,7 +418,7 @@ interactions: vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-keyvault-service-version: [1.0.0.215] + x-ms-keyvault-service-version: [1.0.0.217] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -432,7 +432,7 @@ interactions: "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "objectId": "30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5", "permissions": {"keys": + "objectId": "fda7aa86-7ea1-4562-983e-e842da0c4c4b", "permissions": {"keys": ["get", "wrapKey", "unwrapKey", "recover"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", "enabledForDeployment": false}}''' headers: @@ -442,19 +442,19 @@ interactions: Connection: [keep-alive] Content-Length: ['1037'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 keyvaultmanagementclient/0.40.0 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} headers: cache-control: [no-cache] content-length: ['1280'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:20 GMT'] + date: ['Tue, 29 May 2018 19:40:36 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -463,8 +463,8 @@ interactions: vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-keyvault-service-version: [1.0.0.215] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-keyvault-service-version: [1.0.0.217] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -475,19 +475,19 @@ interactions: CommandName: [keyvault update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 keyvaultmanagementclient/0.40.0 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} headers: cache-control: [no-cache] content-length: ['1280'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:20 GMT'] + date: ['Tue, 29 May 2018 19:40:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -496,7 +496,7 @@ interactions: vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-keyvault-service-version: [1.0.0.215] + x-ms-keyvault-service-version: [1.0.0.217] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -509,7 +509,7 @@ interactions: "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5", + {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "fda7aa86-7ea1-4562-983e-e842da0c4c4b", "permissions": {"keys": ["get", "wrapKey", "unwrapKey", "recover"]}}], "vaultUri": "https://clitest000003.vault.azure.net/", "enabledForDeployment": false, "enableSoftDelete": true}}''' @@ -520,19 +520,19 @@ interactions: Connection: [keep-alive] Content-Length: ['1051'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 keyvaultmanagementclient/0.40.0 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} headers: cache-control: [no-cache] content-length: ['1304'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:22 GMT'] + date: ['Tue, 29 May 2018 19:40:38 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -541,8 +541,8 @@ interactions: vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-keyvault-service-version: [1.0.0.215] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-keyvault-service-version: [1.0.0.217] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -553,9 +553,9 @@ interactions: CommandName: [resource update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault?api-version=2017-05-10 @@ -608,7 +608,7 @@ interactions: cache-control: [no-cache] content-length: ['4817'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:23 GMT'] + date: ['Tue, 29 May 2018 19:40:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -623,19 +623,19 @@ interactions: CommandName: [resource update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} headers: cache-control: [no-cache] content-length: ['1304'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:24 GMT'] + date: ['Tue, 29 May 2018 19:40:40 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -644,7 +644,7 @@ interactions: vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-keyvault-service-version: [1.0.0.215] + x-ms-keyvault-service-version: [1.0.0.217] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -655,9 +655,9 @@ interactions: CommandName: [resource update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault?api-version=2017-05-10 @@ -710,7 +710,7 @@ interactions: cache-control: [no-cache] content-length: ['4817'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:24 GMT'] + date: ['Tue, 29 May 2018 19:40:40 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -728,7 +728,7 @@ interactions: "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "objectId": "30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5", "permissions": {"keys": + "objectId": "fda7aa86-7ea1-4562-983e-e842da0c4c4b", "permissions": {"keys": ["get", "wrapKey", "unwrapKey", "recover"]}}], "enabledForDeployment": false, "enableSoftDelete": true, "vaultUri": "https://clitest000003.vault.azure.net/", "provisioningState": "RegisteringDns", "enablePurgeProtection": true}}''' @@ -739,19 +739,52 @@ interactions: Connection: [keep-alive] Content-Length: ['1133'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"RegisteringDns"}}'} + headers: + cache-control: [no-cache] + content-length: ['1333'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 29 May 2018 19:40:42 GMT'] + expires: ['-1'] + pragma: [no-cache] + server: [Microsoft-IIS/10.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-aspnet-version: [4.0.30319] + x-content-type-options: [nosniff] + x-ms-keyvault-service-version: [1.0.0.217] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [resource update] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python + AZURECLI/2.0.34] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003?api-version=2016-10-01 + response: + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitest000003","name":"clitest000003","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4b1f6d49-d203-442f-bb23-06d98ab68f05","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","permissions":{"keys":["get","wrapKey","unwrapKey","recover"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"enablePurgeProtection":true,"vaultUri":"https://clitest000003.vault.azure.net/","provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['1328'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:27 GMT'] + date: ['Tue, 29 May 2018 19:41:12 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-IIS/10.0] @@ -760,8 +793,7 @@ interactions: vary: [Accept-Encoding] x-aspnet-version: [4.0.30319] x-content-type-options: [nosniff] - x-ms-keyvault-service-version: [1.0.0.215] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-keyvault-service-version: [1.0.0.217] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -772,18 +804,18 @@ interactions: CommandName: [storage account update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"identity":{"principalId":"30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:36:47.2482326Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"identity":{"principalId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:40:05.0101480Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1387'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:27 GMT'] + date: ['Tue, 29 May 2018 19:41:13 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -797,7 +829,7 @@ interactions: body: 'b''{"sku": {"name": "Standard_LRS"}, "tags": {}, "properties": {"encryption": {"services": {"blob": {"enabled": true}, "file": {"enabled": true}}, "keySource": "Microsoft.Keyvault", "keyvaultproperties": {"keyname": "testkey", "keyversion": - "e89f9c7fda784282b8c41431a709ce2c", "keyvaulturi": "https://clitest000003.vault.azure.net/"}}, + "66fa88dacc5748f0b71925eefe0303ef", "keyvaulturi": "https://clitest000003.vault.azure.net/"}}, "supportsHttpsTrafficOnly": false, "networkAcls": {"bypass": "AzureServices", "virtualNetworkRules": [], "ipRules": [], "defaultAction": "Allow"}}}''' headers: @@ -807,18 +839,18 @@ interactions: Connection: [keep-alive] Content-Length: ['491'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"identity":{"principalId":"30dfd4c6-2b4c-46aa-b5f2-e468575e8ab5","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"keyvaultproperties":{"keyvaulturi":"https://clitest000003.vault.azure.net/","keyname":"testkey","keyversion":"e89f9c7fda784282b8c41431a709ce2c"},"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.3575942Z"}},"keySource":"Microsoft.Keyvault"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:36:47.2482326Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"identity":{"principalId":"fda7aa86-7ea1-4562-983e-e842da0c4c4b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"keyvaultproperties":{"keyvaulturi":"https://clitest000003.vault.azure.net/","keyname":"testkey","keyversion":"66fa88dacc5748f0b71925eefe0303ef"},"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:05.0726411Z"}},"keySource":"Microsoft.Keyvault"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:40:05.0101480Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1545'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:28 GMT'] + date: ['Tue, 29 May 2018 19:41:17 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -827,7 +859,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -838,9 +870,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -849,9 +881,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:37:30 GMT'] + date: ['Tue, 29 May 2018 19:41:18 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1NTVMSEpPRDJHNEhOM0czV0FGWjRJU0tXQUNCMlZOTFpQVHw1RkZBQ0VDMERFMjlCQjNGLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdJWjNZUk9PUUZLQk1QU1lPSllUS1FJTUZIT0xPTk9KVFJUQnxFMDk5QjE3OTRBQTkwMUYwLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_list_locations.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_list_locations.yaml index c4cf2dc2bf6..a1cd65afda0 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_list_locations.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_list_locations.yaml @@ -7,8 +7,8 @@ interactions: CommandName: [account list-locations] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 subscriptionclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 subscriptionclient/1.2.1 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2016-06-01 @@ -48,7 +48,7 @@ interactions: cache-control: [no-cache] content-length: ['5269'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:31 GMT'] + date: ['Tue, 29 May 2018 19:41:18 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_list_storage_accounts.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_list_storage_accounts.yaml index ba83c0dc2f4..2aa03b9c631 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_list_storage_accounts.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_list_storage_accounts.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:37:31Z"}}' + "date": "2018-05-29T19:41:19Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:37:31Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:41:19Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:32 GMT'] + date: ['Tue, 29 May 2018 19:41:19 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:33 GMT'] + date: ['Tue, 29 May 2018 19:41:21 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/cd2ec24c-1584-4b25-861d-329394e3e91c?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/31a7b700-2c29-45bb-9e44-6dc217eb6b35?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/cd2ec24c-1584-4b25-861d-329394e3e91c?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/31a7b700-2c29-45bb-9e44-6dc217eb6b35?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:33.9786217Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:33.9786217Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:37:33.9004874Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:21.8666437Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:21.8666437Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:41:21.7416432Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:50 GMT'] + date: ['Tue, 29 May 2018 19:41:38 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"IhZq4tccOrpWfd2OdiGgocNixHbcXcxu7Z1dFew5qLV/4hRpa6Dr0DogmZGw5wH+ZYVirFvgDT6KxWCrfJrg1w==","permissions":"FULL"},{"keyName":"key2","value":"LGMURunn/V7n6P8rOUmgW79SiAN78WWrniWl3ol6QPA4FDn5gfBbVipaToWTei8RQ7yR2sT4/4M/fb5jQBIoeg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"zSAxmEUPGVlRUk+5IhxTIxt5Yss+nzm9DMzevB3b5mmywGFPBlsIIRRkAlMOvjpQYUHWoXvULofbYsi+vUvBPw==","permissions":"FULL"},{"keyName":"key2","value":"L0p6aJoe2sKtGcUeCxobE3YJZDkuAAX3bHwRog/xTqcw2mULQw1LypfAEY7fqHmw4ZHRkveWHIxoP2RtVR9+Lw==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:52 GMT'] + date: ['Tue, 29 May 2018 19:41:40 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -127,20 +127,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:53 GMT'] + date: ['Tue, 29 May 2018 19:41:41 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/126b6e37-202b-42de-9a74-dbdf89cb1cf5?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/91ef8d10-caab-4a3e-a51a-d3e16047939f?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -155,17 +155,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/126b6e37-202b-42de-9a74-dbdf89cb1cf5?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/91ef8d10-caab-4a3e-a51a-d3e16047939f?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:53.6714993Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:53.6714993Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:37:53.6058765Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:42.0282766Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:42.0282766Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:41:41.9345010Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:11 GMT'] + date: ['Tue, 29 May 2018 19:41:58 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -184,18 +184,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"a/3UfAe9wAUF6vtGB1J4AZBdSfSOWMwB98euNNu751uHetPZdseWpwm6D9nChWqtiecc15upwIeiJt21X84bNg==","permissions":"FULL"},{"keyName":"key2","value":"7C6X1VMLvx6RjSf+VYtEtkCGFqy7lkV4iOwS4a7mnObTegRH9OKLO76yQcGQs0UHfWKMSLx7GrCMO+nM71aecQ==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"oThxZWhGkfxg8WyXxTY7IMq5Y2f0sYfCAvQFQjTg4Z1nLVUkAWFVtiIdAwCi6ihDdq1+BjftoE6Zc86gJo2ASA==","permissions":"FULL"},{"keyName":"key2","value":"j/Ez+H1calXD5PUUVG3aHdkRUBjzdX/RMao48A8lY9eJPm5kNv/l7/0XzmdznEiC8OHQ/98NL8tPK+twg3M/8g==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:11 GMT'] + date: ['Tue, 29 May 2018 19:42:00 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -214,25 +214,25 @@ interactions: CommandName: [storage account list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmokbu3vpm7zf77lbzpf5fdd4zzujihuja7pdxdwkssyruaivix4dqhxjom7yio2yf/providers/Microsoft.Storage/storageAccounts/clitest44s63ie7mav5i2j7t","name":"clitest44s63ie7mav5i2j7t","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:40.1222754Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:40.1222754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:37:40.0597537Z","primaryEndpoints":{"blob":"https://clitest44s63ie7mav5i2j7t.blob.core.windows.net/","queue":"https://clitest44s63ie7mav5i2j7t.queue.core.windows.net/","table":"https://clitest44s63ie7mav5i2j7t.table.core.windows.net/","file":"https://clitest44s63ie7mav5i2j7t.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdvbchva4fbe25yuh36bos4xjiib7vrqorccsd7ygetriyxjknrf6cin7zgjn4sejt/providers/Microsoft.Storage/storageAccounts/clitestt6a3uqllegkthrodk","name":"clitestt6a3uqllegkthrodk","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:15.0292662Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:15.0292662Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:37:14.9668157Z","primaryEndpoints":{"blob":"https://clitestt6a3uqllegkthrodk.blob.core.windows.net/","queue":"https://clitestt6a3uqllegkthrodk.queue.core.windows.net/","table":"https://clitestt6a3uqllegkthrodk.table.core.windows.net/","file":"https://clitestt6a3uqllegkthrodk.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:53.6714993Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:53.6714993Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:37:53.6058765Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:33.9786217Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:33.9786217Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:37:33.9004874Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6o7xaftvzgmoxfwfgudgrw3fldv5hn6idway5si5bzwxfd2d2hywch72mghv7obux/providers/Microsoft.Storage/storageAccounts/clitestxghr4wv33vmt3w76g","name":"clitestxghr4wv33vmt3w76g","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:38:04.9672880Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:38:04.9672880Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-14T23:38:04.8891770Z","primaryEndpoints":{"blob":"https://clitestxghr4wv33vmt3w76g.blob.core.windows.net/","queue":"https://clitestxghr4wv33vmt3w76g.queue.core.windows.net/","table":"https://clitestxghr4wv33vmt3w76g.table.core.windows.net/","file":"https://clitestxghr4wv33vmt3w76g.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"web":"https://acliautomationlab8902.web.core.windows.net/","blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"web":"https://clitestnlmd52jlcmr4ce7b4.web.core.windows.net/","blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"web":"https://wilxstorageworm.web.core.windows.net/","blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstorageworm-secondary.web.core.windows.net/","blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"web":"https://clitestjwzkdsfuou3niutbd.web.core.windows.net/","blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"web":"https://clitestt6pqb7xneswrh2sp6.web.core.windows.net/","blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"web":"https://clitestpabilv4yd6qxvguml.web.core.windows.net/","blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"web":"https://clitesta2lvllqz23rgasyf7.web.core.windows.net/","blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"web":"https://clitestfyixx74gs3loj3isf.web.core.windows.net/","blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"web":"https://clitestixsogcl5p5af5w2p3.web.core.windows.net/","blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"web":"https://clitestcrdofae6jvibomf2w.web.core.windows.net/","blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"web":"https://clitestcdx4bwlcvgviotc2p.web.core.windows.net/","blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} + body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:21.8666437Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:21.8666437Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:41:21.7416432Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgng4mhm44zqdudzzavwp4jtlri6hpnw37hksijg5voohin5jayzskh6nmvbxddzogx/providers/Microsoft.Storage/storageAccounts/clitesthxwmuys4zce5abj53","name":"clitesthxwmuys4zce5abj53","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:32.8376584Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:32.8376584Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:41:32.7126388Z","primaryEndpoints":{"blob":"https://clitesthxwmuys4zce5abj53.blob.core.windows.net/","queue":"https://clitesthxwmuys4zce5abj53.queue.core.windows.net/","table":"https://clitesthxwmuys4zce5abj53.table.core.windows.net/","file":"https://clitesthxwmuys4zce5abj53.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbdjlj5fudrmtv6xsnk7sxkig65v3aoziufdfx2twzg2byvie5enva3cai4ttg6tm2/providers/Microsoft.Storage/storageAccounts/clitestzuhet6aaeoko64vkm","name":"clitestzuhet6aaeoko64vkm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:06.9874633Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:06.9874633Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:41:06.9093573Z","primaryEndpoints":{"blob":"https://clitestzuhet6aaeoko64vkm.blob.core.windows.net/","queue":"https://clitestzuhet6aaeoko64vkm.queue.core.windows.net/","table":"https://clitestzuhet6aaeoko64vkm.table.core.windows.net/","file":"https://clitestzuhet6aaeoko64vkm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:42.0282766Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:42.0282766Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:41:41.9345010Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfhep77mmcmcn3afvnvskjk3g27ybc7gq6kh5c6vu7ugy7e3ykawkib6u7st25kbi/providers/Microsoft.Storage/storageAccounts/clitest5o5upfigqe5aenkc3","name":"clitest5o5upfigqe5aenkc3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:22:12.4388487Z","primaryEndpoints":{"blob":"https://clitest5o5upfigqe5aenkc3.blob.core.windows.net/","queue":"https://clitest5o5upfigqe5aenkc3.queue.core.windows.net/","table":"https://clitest5o5upfigqe5aenkc3.table.core.windows.net/","file":"https://clitest5o5upfigqe5aenkc3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv6extdlzddtno2qf5o37e5g2n2d2x5ah4gq2olmpqezmxibj4h36focak4y6dose7/providers/Microsoft.Storage/storageAccounts/clitestcushmpfbtkste2a2a","name":"clitestcushmpfbtkste2a2a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:20:25.0780033Z","primaryEndpoints":{"blob":"https://clitestcushmpfbtkste2a2a.blob.core.windows.net/","queue":"https://clitestcushmpfbtkste2a2a.queue.core.windows.net/","table":"https://clitestcushmpfbtkste2a2a.table.core.windows.net/","file":"https://clitestcushmpfbtkste2a2a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup/providers/Microsoft.Storage/storageAccounts/wilxstoragedlm","name":"wilxstoragedlm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T17:27:21.3073351Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T17:27:21.3073351Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-05-29T17:27:21.2604579Z","primaryEndpoints":{"web":"https://wilxstoragedlm.z3.web.core.windows.net/","blob":"https://wilxstoragedlm.blob.core.windows.net/","queue":"https://wilxstoragedlm.queue.core.windows.net/","table":"https://wilxstoragedlm.table.core.windows.net/","file":"https://wilxstoragedlm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstoragedlm-secondary.z3.web.core.windows.net/","blob":"https://wilxstoragedlm-secondary.blob.core.windows.net/","queue":"https://wilxstoragedlm-secondary.queue.core.windows.net/","table":"https://wilxstoragedlm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzhnckmw5ftoqmm2b5gezwgslvfm2dqg7ldpwvuukicy7ca4unquohsptfrbddr2a/providers/Microsoft.Storage/storageAccounts/clitestvjlqxa4ctzkwwpg4b","name":"clitestvjlqxa4ctzkwwpg4b","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.5165939Z","primaryEndpoints":{"blob":"https://clitestvjlqxa4ctzkwwpg4b.blob.core.windows.net/","queue":"https://clitestvjlqxa4ctzkwwpg4b.queue.core.windows.net/","table":"https://clitestvjlqxa4ctzkwwpg4b.table.core.windows.net/","file":"https://clitestvjlqxa4ctzkwwpg4b.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6xf4idvnxclgamrcp2ezv54qhk3doyffriwiegbm7ouxjbfmd2cj7izni3bhdv4wf/providers/Microsoft.Storage/storageAccounts/clitestoj23vdhimampujgji","name":"clitestoj23vdhimampujgji","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:09:49.3684695Z","primaryEndpoints":{"blob":"https://clitestoj23vdhimampujgji.blob.core.windows.net/","queue":"https://clitestoj23vdhimampujgji.queue.core.windows.net/","table":"https://clitestoj23vdhimampujgji.table.core.windows.net/","file":"https://clitestoj23vdhimampujgji.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} headers: cache-control: [no-cache] - content-length: ['23161'] + content-length: ['27700'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:38:12 GMT'] + date: ['Tue, 29 May 2018 19:42:01 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-original-request-ids: [131f58e8-3344-44e8-9b5a-4471abe7f279, 13f25e5a-67bb-42e5-8e63-ac8b3ddeaa17, - 06a1d455-194b-460a-9e60-5d32bf0e663b, 61a7d7be-6ff2-4a1e-ab51-ed4a918a6f52] + x-ms-original-request-ids: [74a4b730-959f-4336-ab76-1a2bdd5a21ea, 4566fd72-abef-4ed5-8344-ea080259428b, + 5e5a3d7a-97b0-4ae1-a725-81bc17cda2a8, d790c207-1f73-4e9d-bd11-f628d2ca3e9b] status: {code: 200, message: OK} - request: body: null @@ -243,9 +243,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -254,9 +254,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:38:13 GMT'] + date: ['Tue, 29 May 2018 19:42:02 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdBUTNCSkJBRjNHT0RQU0o1QUpRVVVSN0dLQlIyNFZRNVUyUXxENjMxMThGQjJFQTFGQ0YwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdVUzY2Sk1EMlY3QlRXNFROS1EzQzZWTDNQTzY2SzU3RUM0UXw5Rjg4QTJCMEU1MDcwQzlCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_logging_operations.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_logging_operations.yaml index b74370f001c..8261e02f3b8 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_logging_operations.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_logging_operations.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:38:14Z"}}' + "date": "2018-05-29T19:42:03Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:38:14Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:42:03Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:38:15 GMT'] + date: ['Tue, 29 May 2018 19:42:05 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:38:16 GMT'] + date: ['Tue, 29 May 2018 19:42:06 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/966ccf5f-3298-4910-9dcb-5634ebe7e832?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/45a8c3bc-0c3c-4109-a1c0-89a853a96c17?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/966ccf5f-3298-4910-9dcb-5634ebe7e832?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/45a8c3bc-0c3c-4109-a1c0-89a853a96c17?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:38:16.7634659Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:38:16.7634659Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:38:16.7008574Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:42:06.4564135Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:42:06.4564135Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:42:06.3626603Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:34 GMT'] + date: ['Tue, 29 May 2018 19:42:24 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"l/IxKlwxgXq0vr4kicr0LdMBaxpYvdff5fFnnyOAKGSEioxWB9QGMijn/Mx6Pbl5SG442NelX8u51T1caUt05w==","permissions":"FULL"},{"keyName":"key2","value":"Zt42L6OFjf0V0Zx2CIwV+iawk0Sx7KgJy0TjGEjITgoEjO85z1WOWsND7AVXprFhUbFZF7zF/yZA22wjqv+HgA==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"onJdzijM/uKhUnglNotmImLUG6m2rSHteKdFPIOdj8cJiO1YwL9BK848s/FeqaT2RXsBtI+jVSVQt1dGa4wt9w==","permissions":"FULL"},{"keyName":"key2","value":"/FVEf5mliFWesBN9likI/4qnOMbq2A4l1tlWMTTf6rRZYWc7//o/JAu4z05HwAMvvlbcNkM/nG+xR3MDjhcMxw==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:35 GMT'] + date: ['Tue, 29 May 2018 19:42:24 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"l/IxKlwxgXq0vr4kicr0LdMBaxpYvdff5fFnnyOAKGSEioxWB9QGMijn/Mx6Pbl5SG442NelX8u51T1caUt05w==","permissions":"FULL"},{"keyName":"key2","value":"Zt42L6OFjf0V0Zx2CIwV+iawk0Sx7KgJy0TjGEjITgoEjO85z1WOWsND7AVXprFhUbFZF7zF/yZA22wjqv+HgA==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"onJdzijM/uKhUnglNotmImLUG6m2rSHteKdFPIOdj8cJiO1YwL9BK848s/FeqaT2RXsBtI+jVSVQt1dGa4wt9w==","permissions":"FULL"},{"keyName":"key2","value":"/FVEf5mliFWesBN9likI/4qnOMbq2A4l1tlWMTTf6rRZYWc7//o/JAu4z05HwAMvvlbcNkM/nG+xR3MDjhcMxw==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:35 GMT'] + date: ['Tue, 29 May 2018 19:42:25 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -152,29 +152,30 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:36 GMT'] - x-ms-version: ['2017-11-09'] + DataServiceVersion: [3.0;NetFx] + MaxDataServiceVersion: ['3.0'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:26 GMT'] + x-ms-version: ['2017-04-17'] method: GET - uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties response: body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalsefalse"} + \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:38:35 GMT'] - server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:26 GMT'] + server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-11-09'] + x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:36 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:26 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties @@ -184,7 +185,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:38:35 GMT'] + date: ['Tue, 29 May 2018 19:42:26 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -193,22 +194,21 @@ interactions: body: null headers: Connection: [keep-alive] - DataServiceVersion: [3.0;NetFx] - MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:36 GMT'] - x-ms-version: ['2017-04-17'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:26 GMT'] + x-ms-version: ['2017-11-09'] method: GET - uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} + \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:38:35 GMT'] - server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:26 GMT'] + server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-04-17'] + x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} - request: body: ' @@ -218,15 +218,15 @@ interactions: Connection: [keep-alive] Content-Length: ['264'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:37 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:27 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:38:37 GMT'] + date: ['Tue, 29 May 2018 19:42:27 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -235,29 +235,30 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:37 GMT'] - x-ms-version: ['2017-11-09'] + DataServiceVersion: [3.0;NetFx] + MaxDataServiceVersion: ['3.0'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:27 GMT'] + x-ms-version: ['2017-04-17'] method: GET - uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0truefalsefalsetrue11.0truetruetrue71.0falsefalsefalse"} + body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:38:37 GMT'] - server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:27 GMT'] + server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-11-09'] + x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:37 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:28 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties @@ -267,7 +268,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:38:37 GMT'] + date: ['Tue, 29 May 2018 19:42:27 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -276,22 +277,21 @@ interactions: body: null headers: Connection: [keep-alive] - DataServiceVersion: [3.0;NetFx] - MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:38 GMT'] - x-ms-version: ['2017-04-17'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:28 GMT'] + x-ms-version: ['2017-11-09'] method: GET - uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} + body: {string: "\uFEFF1.0truefalsefalsetrue11.0truetruetrue71.0falsefalsefalse"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:38:37 GMT'] - server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:27 GMT'] + server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-04-17'] + x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} - request: body: null @@ -302,9 +302,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -313,9 +313,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:38:38 GMT'] + date: ['Tue, 29 May 2018 19:42:29 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1UDVJWklWNlRQT0NER1RCTk82TVo0Q0VCSFY3UEFUQ0lUTnwzRDhCN0M0N0Q1QkMzMjI5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdVUE5aUVRTNkZWUzVIVlVaVkFQTEJLNkNFTzM3TVhYWVNaWXxEOTJERTdFRUUxQkZGNkNDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_metrics_operations.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_metrics_operations.yaml index 1c95cae48cc..c13de0da3de 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_metrics_operations.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_metrics_operations.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:38:39Z"}}' + "date": "2018-05-29T19:42:30Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:38:39Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:42:30Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:38:40 GMT'] + date: ['Tue, 29 May 2018 19:42:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:38:41 GMT'] + date: ['Tue, 29 May 2018 19:42:32 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2765fd2c-2772-4156-bad2-5ac482b92df4?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/be42227a-4a89-427d-8ed1-a05401059c3d?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2765fd2c-2772-4156-bad2-5ac482b92df4?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/be42227a-4a89-427d-8ed1-a05401059c3d?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:38:41.7971272Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:38:41.7971272Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:38:41.7346398Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:42:32.9219656Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:42:32.9219656Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:42:32.8438287Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:59 GMT'] + date: ['Tue, 29 May 2018 19:42:50 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"JzT7nQxqhTZT1L7bZ9aSi8/Jx0u8oAb26Ggbno1sbujwI70kBgJgiH4xr2VHasVVRdtbsrnNSoGWlMfOB5TzpA==","permissions":"FULL"},{"keyName":"key2","value":"gWMl+syJaEC1N+yePwH1V6erVTosr4kx3NPWH4meeS5+UDUbHEEseKAQeh7pG7D0OQbX5J7wJM19Onj13XREmg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"/x0ivsi1Y5oSRK0tJ0cxgB9yJxYEGEONwo0Q4KV0qn2T0pYB0oKKijGxDCXqX3Nw0Ge5vJgGBf5SdEZWytuSgg==","permissions":"FULL"},{"keyName":"key2","value":"KN74X7//A4uUpDXN20kZuvn+3Q/MXUrHBfVKmb9arLd+wq6nkaXlFeWlJ1MEFz6k8h9bdfhUpSmsRsy6OE/i+Q==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:59 GMT'] + date: ['Tue, 29 May 2018 19:42:50 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,89 +115,89 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:00 GMT'] - x-ms-version: ['2017-11-09'] + DataServiceVersion: [3.0;NetFx] + MaxDataServiceVersion: ['3.0'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:52 GMT'] + x-ms-version: ['2017-04-17'] method: GET - uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties response: body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalsefalse"} + \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:00 GMT'] - server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:52 GMT'] + server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-11-09'] + x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:01 GMT'] - x-ms-version: ['2017-11-09'] + User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:52 GMT'] + x-ms-version: ['2017-07-29'] method: GET - uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse1.0truetruetrue71.0falsefalse"} headers: - cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:00 GMT'] - server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:52 GMT'] + server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-11-09'] + x-ms-version: ['2017-07-29'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:01 GMT'] - x-ms-version: ['2017-07-29'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:52 GMT'] + x-ms-version: ['2017-11-09'] method: GET - uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0truetruetrue71.0falsefalse1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} headers: + cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:01 GMT'] - server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:52 GMT'] + server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-07-29'] + x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - DataServiceVersion: [3.0;NetFx] - MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:01 GMT'] - x-ms-version: ['2017-04-17'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:53 GMT'] + x-ms-version: ['2017-11-09'] method: GET - uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} + \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:01 GMT'] - server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:53 GMT'] + server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-04-17'] + x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} - request: body: ' @@ -207,15 +207,15 @@ interactions: Connection: [keep-alive] Content-Length: ['446'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:02 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:53 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:39:01 GMT'] + date: ['Tue, 29 May 2018 19:42:53 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -224,83 +224,83 @@ interactions: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:02 GMT'] - x-ms-version: ['2017-11-09'] + DataServiceVersion: [3.0;NetFx] + MaxDataServiceVersion: ['3.0'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:54 GMT'] + x-ms-version: ['2017-04-17'] method: GET - uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties response: body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalsefalse"} + \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:02 GMT'] - server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:53 GMT'] + server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-11-09'] + x-ms-version: ['2017-04-17'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:03 GMT'] - x-ms-version: ['2017-11-09'] + User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:54 GMT'] + x-ms-version: ['2017-07-29'] method: GET - uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse1.0truetruetrue11.0truetruetrue1"} headers: - cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:03 GMT'] - server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:54 GMT'] + server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-11-09'] + x-ms-version: ['2017-07-29'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:03 GMT'] - x-ms-version: ['2017-07-29'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:54 GMT'] + x-ms-version: ['2017-11-09'] method: GET - uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0truetruetrue11.0truetruetrue11.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} headers: + cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:03 GMT'] - server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:54 GMT'] + server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-07-29'] + x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] - DataServiceVersion: [3.0;NetFx] - MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:03 GMT'] - x-ms-version: ['2017-04-17'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:55 GMT'] + x-ms-version: ['2017-11-09'] method: GET - uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties + uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} + \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:02 GMT'] - server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] + date: ['Tue, 29 May 2018 19:42:54 GMT'] + server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-04-17'] + x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} - request: body: null @@ -311,9 +311,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -322,12 +322,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:39:03 GMT'] + date: ['Tue, 29 May 2018 19:42:56 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdOUlRRVkxFRzJDMzVHQ1dBVlJIVzM3TUZWRkxWUkY1Mk82Snw3RThCQTU1NTBENzhERkM5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdRU05YMk5DS0JPQkcySkpDT1VIWFlNWjJXQjNSMkRTQVFORHw2NDA0QTAzMTk0MUFDNjRCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_renew_account_key.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_renew_account_key.yaml index 7cbc6008a3e..e0e4ef54b12 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_renew_account_key.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_renew_account_key.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:39:04Z"}}' + "date": "2018-05-29T19:42:56Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:39:04Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:42:56Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:39:05 GMT'] + date: ['Tue, 29 May 2018 19:42:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:39:07 GMT'] + date: ['Tue, 29 May 2018 19:42:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/784b9711-d665-4eb8-aa6a-62f6881f2439?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/25113d1c-827d-4e35-bd65-d3498e122ca3?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/784b9711-d665-4eb8-aa6a-62f6881f2439?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/25113d1c-827d-4e35-bd65-d3498e122ca3?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:06.9719539Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:06.9719539Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:06.9094529Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:42:58.9919047Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:42:58.9919047Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:42:58.8981573Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:23 GMT'] + date: ['Tue, 29 May 2018 19:43:16 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"BmFzw/IoNXkskVhKLBAqUMk17DpBIjMBdFLe0nu4gH4yPhwDvxqlkd3+WWuTrVhdceAlSfOi0YfSY2pDymmmyw==","permissions":"FULL"},{"keyName":"key2","value":"pfYrhbpwQbQmHGX9IBCVZP22HVpdOlBU2CiRJFInMBXWo0vsL0aJm/U2jeXMGyD/wx4cdT5pcIuKCmz0JdRQRw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"PJ8fnaCFvH1BTkqGpor/E9LyMNOxfntqWH4R1+G+jEpKS1MG5fiWTv/jzpmgOsQjQVrdYw2rq0cfBMjRmmpgvQ==","permissions":"FULL"},{"keyName":"key2","value":"IasmLsTX8SM5c4YJXkQcMqmramnV9Mr83lYi8A2cej15X44XL5tyEt4ZB5qCw+mBVFEUXCjlLXHDArE9WpROXQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:25 GMT'] + date: ['Tue, 29 May 2018 19:43:17 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"BmFzw/IoNXkskVhKLBAqUMk17DpBIjMBdFLe0nu4gH4yPhwDvxqlkd3+WWuTrVhdceAlSfOi0YfSY2pDymmmyw==","permissions":"FULL"},{"keyName":"key2","value":"pfYrhbpwQbQmHGX9IBCVZP22HVpdOlBU2CiRJFInMBXWo0vsL0aJm/U2jeXMGyD/wx4cdT5pcIuKCmz0JdRQRw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"PJ8fnaCFvH1BTkqGpor/E9LyMNOxfntqWH4R1+G+jEpKS1MG5fiWTv/jzpmgOsQjQVrdYw2rq0cfBMjRmmpgvQ==","permissions":"FULL"},{"keyName":"key2","value":"IasmLsTX8SM5c4YJXkQcMqmramnV9Mr83lYi8A2cej15X44XL5tyEt4ZB5qCw+mBVFEUXCjlLXHDArE9WpROXQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:25 GMT'] + date: ['Tue, 29 May 2018 19:43:18 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -157,18 +157,18 @@ interactions: Connection: [keep-alive] Content-Length: ['19'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/regenerateKey?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/regenerateKey?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"cLlUZI9daQL4g1rSNZXRRVDZpzXK2u+Pd9lxCLJO7s7HTPRCSk2XWkolK1bVHFsMdgvJOYGgj7peObMyFmYGew==","permissions":"FULL"},{"keyName":"key2","value":"pfYrhbpwQbQmHGX9IBCVZP22HVpdOlBU2CiRJFInMBXWo0vsL0aJm/U2jeXMGyD/wx4cdT5pcIuKCmz0JdRQRw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"VjwtbV629jXkLMT6LTAm2Rj/f0EybIdB087LDBKIIsImwh3YKjfymJ3PSAiy57BzbPNj4Kt5T8BTGI6uIKe6og==","permissions":"FULL"},{"keyName":"key2","value":"IasmLsTX8SM5c4YJXkQcMqmramnV9Mr83lYi8A2cej15X44XL5tyEt4ZB5qCw+mBVFEUXCjlLXHDArE9WpROXQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:26 GMT'] + date: ['Tue, 29 May 2018 19:43:18 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -177,7 +177,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: '{"keyName": "key2"}' @@ -188,18 +188,18 @@ interactions: Connection: [keep-alive] Content-Length: ['19'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/regenerateKey?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/regenerateKey?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"cLlUZI9daQL4g1rSNZXRRVDZpzXK2u+Pd9lxCLJO7s7HTPRCSk2XWkolK1bVHFsMdgvJOYGgj7peObMyFmYGew==","permissions":"FULL"},{"keyName":"key2","value":"nwJHOHT6Hxk44xVBKbWc3G5jVAVNG5Y3o5w4hksh0uvQrdK3CjtnyFSYc3oz5Nn2i9hMnPaaClXVIeZRA+R0hg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"VjwtbV629jXkLMT6LTAm2Rj/f0EybIdB087LDBKIIsImwh3YKjfymJ3PSAiy57BzbPNj4Kt5T8BTGI6uIKe6og==","permissions":"FULL"},{"keyName":"key2","value":"7dfTNwyOSxctew/QiOQ0YyLk0VXm+omZYLR+9Apuzzhk4dE6uvHaq84zezlKa7mDWSgjxY6vZvja5d3Ey91X2A==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:26 GMT'] + date: ['Tue, 29 May 2018 19:43:18 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -208,7 +208,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -219,9 +219,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -230,12 +230,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:39:28 GMT'] + date: ['Tue, 29 May 2018 19:43:20 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdGS0VTRkRQNDUzUUFXRjVGNFVDTlY2RVg1UzRYTEtDSEFGWXxFMUZCQTJGMEQ5MDg2QzE2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHT0ZNNVpSVUc1T1lIRkRPWFozVEZJR1JaVlFJQlFVNVA1S3xCOTY3NTQ3QjAzRkIxMTI4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14997'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_show_usage.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_show_usage.yaml index 2fc8670ef38..c87441720ee 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_show_usage.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_show_usage.yaml @@ -7,11 +7,11 @@ interactions: CommandName: [storage account show-usage] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc3 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/usages?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/usages?api-version=2018-03-01-preview response: body: {string: "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n\ \ \"currentValue\": 0,\r\n \"limit\": 250,\r\n \"name\": {\r\ @@ -21,7 +21,7 @@ interactions: cache-control: [no-cache] content-length: ['217'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:32:42 GMT'] + date: ['Tue, 29 May 2018 23:41:23 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0] @@ -38,11 +38,11 @@ interactions: CommandName: [storage account show-usage] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc3 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centraluseuap/usages?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centraluseuap/usages?api-version=2018-03-01-preview response: body: {string: '{"value":[{"unit":"Count","currentValue":0,"limit":250,"name":{"value":"StorageAccounts","localizedValue":"Storage Accounts"}}]}'} @@ -50,7 +50,7 @@ interactions: cache-control: [no-cache] content-length: ['128'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:32:43 GMT'] + date: ['Tue, 29 May 2018 23:41:23 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_account_service_endpoints.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_account_service_endpoints.yaml index 075142b5095..ea566e450c0 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_account_service_endpoints.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_account_service_endpoints.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:39:28Z"}}' + "date": "2018-05-29T19:43:21Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:39:28Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:43:21Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:39:30 GMT'] + date: ['Tue, 29 May 2018 19:43:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:39:31 GMT'] + date: ['Tue, 29 May 2018 19:43:24 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/af2032e4-46de-4abc-9a2e-b1ab1c0f1d3c?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7aec96a2-59ec-4f71-98c6-db23cfd2405f?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/af2032e4-46de-4abc-9a2e-b1ab1c0f1d3c?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7aec96a2-59ec-4f71-98c6-db23cfd2405f?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:48 GMT'] + date: ['Tue, 29 May 2018 19:43:41 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"4NrKKvnmCF44lHNzHMZd8ADadycbtSz21bj1djRRzEgHuGuFkcPS3fQXoxosqBk2gd4+1Oc6tNAfVDflBwj9GQ==","permissions":"FULL"},{"keyName":"key2","value":"Dv+QueBIDAhIBkQADa5w76WIvjNQJhzGywK6Y67IjiVmurMZWjEFoIwG+2IfNpQ0DSSZExUByDc9PrBtsr7A3Q==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"PXhTAZnPoCyAT6tPuZxjzY3r/b7AYaGyoisDzGK1oX9CJJUxJX3cSVPe+F/JDQSIBvHzuWLD0gx1buQ7F+uN2A==","permissions":"FULL"},{"keyName":"key2","value":"cdaAAMKaqf2sTL7fhLtQDoy6kjZX7rphsxhz7JJSJm8EGkx9LDq8RhjT8q9bLXFvywirqw29HoJOz/rpit10HA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:49 GMT'] + date: ['Tue, 29 May 2018 19:43:43 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -125,19 +125,19 @@ interactions: CommandName: [storage account create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:39:28Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:43:21Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:39:49 GMT'] + date: ['Tue, 29 May 2018 19:43:43 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -155,18 +155,18 @@ interactions: Connection: [keep-alive] Content-Length: ['190'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1478'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:50 GMT'] + date: ['Tue, 29 May 2018 19:43:44 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -175,7 +175,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -185,18 +185,18 @@ interactions: CommandName: [storage account update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Metrics","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1478'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:51 GMT'] + date: ['Tue, 29 May 2018 19:43:45 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -218,18 +218,18 @@ interactions: Connection: [keep-alive] Content-Length: ['322'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1479'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:18 GMT'] + date: ['Tue, 29 May 2018 19:43:46 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -238,7 +238,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1194'] status: {code: 200, message: OK} - request: body: null @@ -248,18 +248,18 @@ interactions: CommandName: [storage account update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1479'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:19 GMT'] + date: ['Tue, 29 May 2018 19:43:46 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -281,18 +281,18 @@ interactions: Connection: [keep-alive] Content-Length: ['321'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1478'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:19 GMT'] + date: ['Tue, 29 May 2018 19:43:47 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -301,7 +301,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -311,19 +311,19 @@ interactions: CommandName: [network vnet create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:39:28Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001","name":"cli_test_storage_service_endpoints000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:43:21Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:23 GMT'] + date: ['Tue, 29 May 2018 19:43:50 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -341,33 +341,33 @@ interactions: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 networkmanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2018-02-01 response: body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"b7c769ed-cb1b-45db-867b-09774206b95f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"6d14506e-663d-4986-8351-28973e31a1ba\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Updating\",\r\n \"resourceGuid\": \"2cb829ff-4f35-421b-9e50-8e6da1e6989a\"\ + \ \"Updating\",\r\n \"resourceGuid\": \"399c0bb9-e8b5-4577-86b8-806be5f8097c\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"b7c769ed-cb1b-45db-867b-09774206b95f\\\"\"\ + ,\r\n \"etag\": \"W/\\\"6d14506e-663d-4986-8351-28973e31a1ba\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ : false,\r\n \"enableVmProtection\": false\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da754914-d45f-4de3-b778-c6b73f658643?api-version=2018-02-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/48270100-f958-4b95-96dd-bcc7a087e515?api-version=2018-02-01'] cache-control: [no-cache] content-length: ['1230'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:24 GMT'] + date: ['Tue, 29 May 2018 19:43:51 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -382,18 +382,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 networkmanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da754914-d45f-4de3-b778-c6b73f658643?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/48270100-f958-4b95-96dd-bcc7a087e515?api-version=2018-02-01 response: body: {string: "{\r\n \"status\": \"InProgress\"\r\n}"} headers: cache-control: [no-cache] content-length: ['30'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:28 GMT'] + date: ['Tue, 29 May 2018 19:43:55 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -409,18 +409,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 networkmanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da754914-d45f-4de3-b778-c6b73f658643?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/48270100-f958-4b95-96dd-bcc7a087e515?api-version=2018-02-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:38 GMT'] + date: ['Tue, 29 May 2018 19:44:06 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -436,22 +436,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 networkmanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2018-02-01 response: body: {string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\ - ,\r\n \"etag\": \"W/\\\"5b87cc37-ec47-420b-bcba-56e5deb38fd4\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"377bebfe-2780-4b75-aab2-6cb2916fd243\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ ,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":\ - \ \"Succeeded\",\r\n \"resourceGuid\": \"2cb829ff-4f35-421b-9e50-8e6da1e6989a\"\ + \ \"Succeeded\",\r\n \"resourceGuid\": \"399c0bb9-e8b5-4577-86b8-806be5f8097c\"\ ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"\ 10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\"\ : []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"5b87cc37-ec47-420b-bcba-56e5deb38fd4\\\"\"\ + ,\r\n \"etag\": \"W/\\\"377bebfe-2780-4b75-aab2-6cb2916fd243\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -460,8 +460,8 @@ interactions: cache-control: [no-cache] content-length: ['1232'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:39 GMT'] - etag: [W/"5b87cc37-ec47-420b-bcba-56e5deb38fd4"] + date: ['Tue, 29 May 2018 19:44:06 GMT'] + etag: [W/"377bebfe-2780-4b75-aab2-6cb2916fd243"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -478,23 +478,23 @@ interactions: CommandName: [network vnet subnet update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 networkmanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2018-02-01 response: body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"5b87cc37-ec47-420b-bcba-56e5deb38fd4\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"377bebfe-2780-4b75-aab2-6cb2916fd243\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}"} headers: cache-control: [no-cache] content-length: ['403'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:40 GMT'] - etag: [W/"5b87cc37-ec47-420b-bcba-56e5deb38fd4"] + date: ['Tue, 29 May 2018 19:44:07 GMT'] + etag: [W/"377bebfe-2780-4b75-aab2-6cb2916fd243"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -507,7 +507,7 @@ interactions: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": "Microsoft.Storage"}], "provisioningState": "Succeeded"}, "name": "subnet1", - "etag": "W/\\"5b87cc37-ec47-420b-bcba-56e5deb38fd4\\""}''' + "etag": "W/\\"377bebfe-2780-4b75-aab2-6cb2916fd243\\""}''' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -515,26 +515,26 @@ interactions: Connection: [keep-alive] Content-Length: ['429'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 networkmanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2018-02-01 response: body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"84de4e67-ced0-454d-b055-7c82f9d25dc0\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8c4e89e2-0649-473f-9283-4f4263729f76\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [\r\n \ \ {\r\n \"provisioningState\": \"Updating\",\r\n \"service\"\ : \"Microsoft.Storage\",\r\n \"locations\": [\r\n \"westus\"\ ,\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n}"} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f9a82d55-a931-484b-ac06-f4253fc9853f?api-version=2018-02-01'] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ccf3b110-9c45-42b6-811e-aeb92c822f3b?api-version=2018-02-01'] cache-control: [no-cache] content-length: ['614'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:41 GMT'] + date: ['Tue, 29 May 2018 19:44:07 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -542,7 +542,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -551,18 +551,18 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet subnet update] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 networkmanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f9a82d55-a931-484b-ac06-f4253fc9853f?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ccf3b110-9c45-42b6-811e-aeb92c822f3b?api-version=2018-02-01 response: body: {string: "{\r\n \"status\": \"Succeeded\"\r\n}"} headers: cache-control: [no-cache] content-length: ['29'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:44 GMT'] + date: ['Tue, 29 May 2018 19:44:11 GMT'] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -578,14 +578,14 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [network vnet subnet update] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 networkmanagementclient/2.0.0rc2 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2018-02-01 response: body: {string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\ - ,\r\n \"etag\": \"W/\\\"e655fafc-6b32-44d8-a6bd-7316dd3f04ac\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"5c797658-c470-46f6-9068-996f4575371d\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"serviceEndpoints\": [\r\n \ \ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"service\"\ @@ -595,8 +595,8 @@ interactions: cache-control: [no-cache] content-length: ['616'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:44 GMT'] - etag: [W/"e655fafc-6b32-44d8-a6bd-7316dd3f04ac"] + date: ['Tue, 29 May 2018 19:44:12 GMT'] + etag: [W/"5c797658-c470-46f6-9068-996f4575371d"] expires: ['-1'] pragma: [no-cache] server: [Microsoft-HTTPAPI/2.0, Microsoft-HTTPAPI/2.0] @@ -613,18 +613,18 @@ interactions: CommandName: [storage account network-rule add] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1478'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:46 GMT'] + date: ['Tue, 29 May 2018 19:44:13 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -645,18 +645,18 @@ interactions: Connection: [keep-alive] Content-Length: ['196'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1515'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:47 GMT'] + date: ['Tue, 29 May 2018 19:44:14 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -665,7 +665,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -675,18 +675,18 @@ interactions: CommandName: [storage account network-rule add] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1515'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:48 GMT'] + date: ['Tue, 29 May 2018 19:44:15 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -707,18 +707,18 @@ interactions: Connection: [keep-alive] Content-Length: ['241'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1556'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:48 GMT'] + date: ['Tue, 29 May 2018 19:44:15 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -727,7 +727,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -737,18 +737,18 @@ interactions: CommandName: [storage account network-rule add] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1556'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:49 GMT'] + date: ['Tue, 29 May 2018 19:44:16 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -770,18 +770,18 @@ interactions: Connection: [keep-alive] Content-Length: ['478'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1810'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:52 GMT'] + date: ['Tue, 29 May 2018 19:44:19 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -790,7 +790,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -800,18 +800,18 @@ interactions: CommandName: [storage account network-rule list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1810'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:53 GMT'] + date: ['Tue, 29 May 2018 19:44:19 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -829,18 +829,18 @@ interactions: CommandName: [storage account network-rule remove] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.1.2.3","action":"Allow"},{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1810'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:53 GMT'] + date: ['Tue, 29 May 2018 19:44:20 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -862,18 +862,18 @@ interactions: Connection: [keep-alive] Content-Length: ['458'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1772'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:54 GMT'] + date: ['Tue, 29 May 2018 19:44:22 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -882,7 +882,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -892,18 +892,18 @@ interactions: CommandName: [storage account network-rule remove] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","action":"Allow","state":"Succeeded"}],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1772'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:54 GMT'] + date: ['Tue, 29 May 2018 19:44:23 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -924,18 +924,18 @@ interactions: Connection: [keep-alive] Content-Length: ['199'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1518'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:55 GMT'] + date: ['Tue, 29 May 2018 19:44:25 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -944,7 +944,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -954,18 +954,18 @@ interactions: CommandName: [storage account network-rule list] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:31.4730720Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:31.4105491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_storage_service_endpoints000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"Logging","virtualNetworkRules":[],"ipRules":[{"value":"25.2.0.0/24","action":"Allow"}],"defaultAction":"Deny"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:24.1561641Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:23.9842905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1518'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:56 GMT'] + date: ['Tue, 29 May 2018 19:44:25 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -984,9 +984,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_storage_service_endpoints000001?api-version=2017-05-10 @@ -995,12 +995,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:40:57 GMT'] + date: ['Tue, 29 May 2018 19:44:26 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGU1RPUkFHRTo1RlNFUlZJQ0U6NUZFTkRQT0lOVFNERVBWWXxCQUU1NzFENkM2MTkzQ0E2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGU1RPUkFHRTo1RlNFUlZJQ0U6NUZFTkRQT0lOVFNKTlRXSHwxODNFOERGNDlBOTIxQTE4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_append.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_append.yaml index 183eaf20f40..b4040d604ae 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_append.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_append.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:02Z"}}' + "date": "2018-05-29T19:38:19Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:02Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:19Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:05 GMT'] + date: ['Tue, 29 May 2018 19:38:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:06 GMT'] + date: ['Tue, 29 May 2018 19:38:23 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b1feda41-0e11-4742-af78-6abb4395c736?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/aa74ac64-c1c7-4bed-9286-58779d67f9fd?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b1feda41-0e11-4742-af78-6abb4395c736?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/aa74ac64-c1c7-4bed-9286-58779d67f9fd?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:06.5414563Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:06.5414563Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:06.4940448Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:23.8871593Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:23.8871593Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:23.6371175Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:23 GMT'] + date: ['Tue, 29 May 2018 19:38:41 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"ZCIZHnW0bfe6qPpGiWx+onsrnvC5jmAjbsOL39Jy35bZjlrksX0iZoJ041aYgVZzha8VsUrAQ2Ih7iDaXttYSw==","permissions":"FULL"},{"keyName":"key2","value":"V553VsCZ9upImmC8SyxXyPFYcZgArCgEJ9s/BORP1780NSyTlt1g/fn2LECdfgD8R2PA1kmWals3iTONpsW5yA==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"5bgWD++jOKY/KRMOZ33+oLc+WdSCDZGWxouIm7rUlwXZoiMIQ6LINKAssYfO9+lvT2DbtubAWOPKV1S2co3/Bw==","permissions":"FULL"},{"keyName":"key2","value":"nJi9azJToZr44NFoKxOj7f1lTWiKdHiF4oHKEhvFIlTGyFBXRWg3B7BNjYzqbxqBDK6WFu0WvTX0YxOp+w27nQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:24 GMT'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"ZCIZHnW0bfe6qPpGiWx+onsrnvC5jmAjbsOL39Jy35bZjlrksX0iZoJ041aYgVZzha8VsUrAQ2Ih7iDaXttYSw==","permissions":"FULL"},{"keyName":"key2","value":"V553VsCZ9upImmC8SyxXyPFYcZgArCgEJ9s/BORP1780NSyTlt1g/fn2LECdfgD8R2PA1kmWals3iTONpsW5yA==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"5bgWD++jOKY/KRMOZ33+oLc+WdSCDZGWxouIm7rUlwXZoiMIQ6LINKAssYfO9+lvT2DbtubAWOPKV1S2co3/Bw==","permissions":"FULL"},{"keyName":"key2","value":"nJi9azJToZr44NFoKxOj7f1lTWiKdHiF4oHKEhvFIlTGyFBXRWg3B7BNjYzqbxqBDK6WFu0WvTX0YxOp+w27nQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:43 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:25 GMT'] - etag: ['"0x8D5B9F35EDD282F"'] - last-modified: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] + etag: ['"0x8D5C59BC9E603A5"'] + last-modified: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -174,15 +174,15 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-error-code: [BlobNotFound] @@ -195,18 +195,18 @@ interactions: Content-Length: ['0'] If-None-Match: ['*'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-type: [AppendBlob] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:26 GMT'] - etag: ['"0x8D5B9F35F32BB53"'] - last-modified: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BCA5B56F0"'] + last-modified: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -244,8 +244,8 @@ interactions: Connection: [keep-alive] Content-Length: ['1024'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=appendblock @@ -253,9 +253,9 @@ interactions: body: {string: ''} headers: content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] - date: ['Mon, 14 May 2018 23:35:26 GMT'] - etag: ['"0x8D5B9F35F402C1B"'] - last-modified: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BCA63E411"'] + last-modified: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-blob-append-offset: ['0'] @@ -268,23 +268,23 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list response: body: {string: "\uFEFFblob000004Mon,\ - \ 14 May 2018 23:35:26 GMTMon, 14 May 2018\ - \ 23:35:26 GMT0x8D5B9F35F402C1B1024application/octet-streamblob000004Tue,\ + \ 29 May 2018 19:38:44 GMTTue, 29 May 2018\ + \ 19:38:44 GMT0x8D5C59BCA63E4111024application/octet-streamAppendBlobunlockedavailabletrue"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -294,8 +294,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -305,13 +305,13 @@ interactions: accept-ranges: [bytes] content-length: ['1024'] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:35:26 GMT'] - etag: ['"0x8D5B9F35F402C1B"'] - last-modified: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] + etag: ['"0x8D5C59BCA63E411"'] + last-modified: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-committed-block-count: ['1'] x-ms-blob-type: [AppendBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:35:26 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -323,15 +323,15 @@ interactions: Connection: [keep-alive] If-None-Match: ['*'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-error-code: [UnsatisfiableCondition] @@ -347,9 +347,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -358,9 +358,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHRVFZM1lQWEhOS1dWUk1FR1JCU0NIVVJNRU40WEczM0dHT3w1NEIzNUFCRDkxMkM0RDkwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdCSlRLMldBVTNDTTVEVVlIVVBRR09WQ1JLT0JCVFlBNlBXRXwwMkNCNDE5QzIxNjA2NTkxLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_container_operations.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_container_operations.yaml index da996606b53..29a1f2e28dd 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_container_operations.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_container_operations.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:28Z"}}' + "date": "2018-05-29T19:38:46Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:28Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:46Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:29 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:30 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8a406608-baa2-43db-8c9c-a734a7bdf905?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/03d96b5b-d66d-4f78-8625-280a7b1e2ce0?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8a406608-baa2-43db-8c9c-a734a7bdf905?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/03d96b5b-d66d-4f78-8625-280a7b1e2ce0?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:30.6567490Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:30.6567490Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:30.5899128Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:48.9050397Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:48.9050397Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:48.6061126Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:47 GMT'] + date: ['Tue, 29 May 2018 19:39:05 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"wUUIDvS7pACL+nZ6+8loo1CJyU0h8tLHAu7RhBTh+qRykRB6w4ikR76NtdMEK4VQSAuXNr73DCT7gc50jNZZpw==","permissions":"FULL"},{"keyName":"key2","value":"XSX9KkUj1YkDbcfKZKjvscPsLJN5bFojMQDF51hNEcZAefgSNomasRJkvhw37fWAUQhVn2zj7pXOVtVR6r5A8A==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"97lI5Cqn3ubeP8hfy5bT2199iJ2nvSzufDb2gqmE+Jc0Epe80O81Z0n9xkyllsFbplT5WsVvtUNBqJzhWZDCZQ==","permissions":"FULL"},{"keyName":"key2","value":"fGM/dDrVie9sEbikgYFE7ZktDc7l57RmG8SqBLzu+9s+9N46nclSLJ5Jje65Gc4pzSj9yCJeLLIL9XyjhLQKJA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:48 GMT'] + date: ['Tue, 29 May 2018 19:39:07 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"wUUIDvS7pACL+nZ6+8loo1CJyU0h8tLHAu7RhBTh+qRykRB6w4ikR76NtdMEK4VQSAuXNr73DCT7gc50jNZZpw==","permissions":"FULL"},{"keyName":"key2","value":"XSX9KkUj1YkDbcfKZKjvscPsLJN5bFojMQDF51hNEcZAefgSNomasRJkvhw37fWAUQhVn2zj7pXOVtVR6r5A8A==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"97lI5Cqn3ubeP8hfy5bT2199iJ2nvSzufDb2gqmE+Jc0Epe80O81Z0n9xkyllsFbplT5WsVvtUNBqJzhWZDCZQ==","permissions":"FULL"},{"keyName":"key2","value":"fGM/dDrVie9sEbikgYFE7ZktDc7l57RmG8SqBLzu+9s+9N46nclSLJ5Jje65Gc4pzSj9yCJeLLIL9XyjhLQKJA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:49 GMT'] + date: ['Tue, 29 May 2018 19:39:07 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:50 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:08 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:49 GMT'] - etag: ['"0x8D5B9F36D25DC01"'] - last-modified: ['Mon, 14 May 2018 23:35:50 GMT'] + date: ['Tue, 29 May 2018 19:39:08 GMT'] + etag: ['"0x8D5C59BD8A5ECAE"'] + last-modified: ['Tue, 29 May 2018 19:39:08 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -174,17 +174,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:50 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:08 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:50 GMT'] - etag: ['"0x8D5B9F36D25DC01"'] - last-modified: ['Mon, 14 May 2018 23:35:50 GMT'] + date: ['Tue, 29 May 2018 19:39:08 GMT'] + etag: ['"0x8D5C59BD8A5ECAE"'] + last-modified: ['Tue, 29 May 2018 19:39:08 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-has-immutability-policy: ['false'] @@ -198,8 +198,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:50 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:09 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -208,9 +208,9 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:50 GMT'] - etag: ['"0x8D5B9F36D25DC01"'] - last-modified: ['Mon, 14 May 2018 23:35:50 GMT'] + date: ['Tue, 29 May 2018 19:39:08 GMT'] + etag: ['"0x8D5C59BD8A5ECAE"'] + last-modified: ['Tue, 29 May 2018 19:39:08 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -223,18 +223,18 @@ interactions: Connection: [keep-alive] Content-Length: ['60'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-public-access: [blob] - x-ms-date: ['Mon, 14 May 2018 23:35:50 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:39:09 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:50 GMT'] - etag: ['"0x8D5B9F36DAE1F9D"'] - last-modified: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:39:09 GMT'] + etag: ['"0x8D5C59BD93D706C"'] + last-modified: ['Tue, 29 May 2018 19:39:09 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -244,8 +244,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:51 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:10 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -254,9 +254,9 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:51 GMT'] - etag: ['"0x8D5B9F36DAE1F9D"'] - last-modified: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:39:09 GMT'] + etag: ['"0x8D5C59BD93D706C"'] + last-modified: ['Tue, 29 May 2018 19:39:09 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-blob-public-access: [blob] @@ -267,8 +267,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:51 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:10 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -277,9 +277,9 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:51 GMT'] - etag: ['"0x8D5B9F36DAE1F9D"'] - last-modified: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] + etag: ['"0x8D5C59BD93D706C"'] + last-modified: ['Tue, 29 May 2018 19:39:09 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-blob-public-access: [blob] @@ -293,17 +293,17 @@ interactions: Connection: [keep-alive] Content-Length: ['60'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:51 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:10 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:51 GMT'] - etag: ['"0x8D5B9F36E3B3FC4"'] - last-modified: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] + etag: ['"0x8D5C59BD9D5D3C1"'] + last-modified: ['Tue, 29 May 2018 19:39:10 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -313,8 +313,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:10 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -323,9 +323,9 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:51 GMT'] - etag: ['"0x8D5B9F36E3B3FC4"'] - last-modified: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] + etag: ['"0x8D5C59BD9D5D3C1"'] + last-modified: ['Tue, 29 May 2018 19:39:10 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -335,17 +335,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:11 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:52 GMT'] - etag: ['"0x8D5B9F36E3B3FC4"'] - last-modified: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] + etag: ['"0x8D5C59BD9D5D3C1"'] + last-modified: ['Tue, 29 May 2018 19:39:10 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-has-immutability-policy: ['false'] @@ -359,19 +359,19 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:11 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?comp=list response: body: {string: "\uFEFFcont000003Mon,\ - \ 14 May 2018 23:35:52 GMT\"0x8D5B9F36E3B3FC4\"unlockedavailablefalsefalsecont000003Tue,\ + \ 29 May 2018 19:39:10 GMT\"0x8D5C59BD9D5D3C1\"unlockedavailablefalsefalse"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -382,8 +382,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:53 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:12 GMT'] x-ms-meta-foo: [bar] x-ms-meta-moo: [bak] x-ms-version: ['2017-11-09'] @@ -392,9 +392,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:53 GMT'] - etag: ['"0x8D5B9F36F0CCC9F"'] - last-modified: ['Mon, 14 May 2018 23:35:53 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] + etag: ['"0x8D5C59BDAD1C533"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -404,17 +404,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:53 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:12 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:53 GMT'] - etag: ['"0x8D5B9F36F0CCC9F"'] - last-modified: ['Mon, 14 May 2018 23:35:53 GMT'] + date: ['Tue, 29 May 2018 19:39:12 GMT'] + etag: ['"0x8D5C59BDAD1C533"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-meta-foo: [bar] @@ -427,17 +427,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:53 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:13 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:53 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:13 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -447,17 +447,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:54 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:13 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:53 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:12 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -469,8 +469,8 @@ interactions: Content-Length: ['0'] If-Modified-Since: ['Fri, 01 Apr 2016 12:00:00 GMT'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:54 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:14 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['60'] x-ms-proposed-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd] @@ -480,9 +480,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:54 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:13 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd] @@ -493,17 +493,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:54 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:14 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:54 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:14 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-has-immutability-policy: ['false'] @@ -519,8 +519,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:55 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:14 GMT'] x-ms-lease-action: [change] x-ms-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd] x-ms-proposed-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] @@ -530,9 +530,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:55 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:14 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] @@ -544,8 +544,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:55 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:15 GMT'] x-ms-lease-action: [renew] x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] x-ms-version: ['2017-11-09'] @@ -554,9 +554,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:55 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] @@ -567,17 +567,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:55 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:15 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:55 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-has-immutability-policy: ['false'] @@ -593,8 +593,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:56 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:16 GMT'] x-ms-lease-action: [break] x-ms-lease-break-period: ['30'] x-ms-version: ['2017-11-09'] @@ -603,9 +603,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:56 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:16 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-lease-time: ['30'] @@ -616,17 +616,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:56 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:16 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:56 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:16 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-has-immutability-policy: ['false'] @@ -641,8 +641,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:57 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:17 GMT'] x-ms-lease-action: [release] x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] x-ms-version: ['2017-11-09'] @@ -651,9 +651,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:56 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:16 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -663,17 +663,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:57 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:17 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:57 GMT'] - etag: ['"0x8D5B9F36F759311"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:17 GMT'] + etag: ['"0x8D5C59BDB5479CE"'] + last-modified: ['Tue, 29 May 2018 19:39:13 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-has-immutability-policy: ['false'] @@ -688,15 +688,15 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:58 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:18 GMT'] x-ms-version: ['2017-11-09'] method: DELETE uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:17 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -706,19 +706,19 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:58 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:18 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: "\uFEFFContainerNotFoundThe\ - \ specified container does not exist.\nRequestId:a0b4d707-701e-002a-6fdc-ebba6e000000\n\ - Time:2018-05-14T23:35:58.5726387Z"} + \ specified container does not exist.\nRequestId:8e02ae1c-001e-0098-5384-f70f80000000\n\ + Time:2018-05-29T19:39:19.0049132Z"} headers: content-length: ['225'] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:18 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-error-code: [ContainerNotFound] x-ms-version: ['2017-11-09'] @@ -732,9 +732,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -743,12 +743,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:19 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdaNVVISUozR0FYWEtHV0FJVFlBUFRRSDdDSDNZT0pEUktEMnxGQUUxOEU1MzI2MzkzNDI3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdGM1JGV0dCT1k1NkFVNEY1SUZEVFdUVjJMNlRQU1BaMlNUUHxENjBBODRGQTgyOERDODhGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_incremental_copy.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_incremental_copy.yaml index b4e7f513e24..7b1b53896bd 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_incremental_copy.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_incremental_copy.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: !!python/unicode '{"location": "westus", "tags": {"date": "2018-05-15T17:27:37Z", - "product": "azurecli", "cause": "automation"}}' + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2018-05-29T19:39:20Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"date":"2018-05-15T17:27:37Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:39:20Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Tue, 15 May 2018 17:27:38 GMT'] + date: ['Tue, 29 May 2018 19:39:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -29,8 +29,8 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: - body: !!python/unicode '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": - "westus", "properties": {"supportsHttpsTrafficOnly": false}}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", + "properties": {"supportsHttpsTrafficOnly": false}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: - body: {string: !!python/unicode ''} + body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Tue, 15 May 2018 17:27:41 GMT'] + date: ['Tue, 29 May 2018 19:39:22 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7e125475-10ad-4f95-b16d-af257328f009?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c988e120-901e-4fc1-9d0c-8e4fb060a2c4?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7e125475-10ad-4f95-b16d-af257328f009?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c988e120-901e-4fc1-9d0c-8e4fb060a2c4?monitor=true&api-version=2018-03-01-preview response: - body: {string: !!python/unicode '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T17:27:41.1039825Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T17:27:41.1039825Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T17:27:41.0258552Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:39:23.2001033Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:39:23.2001033Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:39:22.9657172Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Tue, 15 May 2018 17:27:58 GMT'] + date: ['Tue, 29 May 2018 19:39:40 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: !!python/unicode '{"keys":[{"keyName":"key1","value":"0E6LybWPFwa8qUiBbuvvpRHSVrHlRCRNk8wOHJQv1lvJ20a2V8v1E3y4UeJFIBZVerVC+cIBR3JD/F5ZvX+q8Q==","permissions":"FULL"},{"keyName":"key2","value":"7f80IHM/xgmgHrTICJ0YjdkMEqCtS3Ufq8v3WFVmds+FlKNkfFc8T0n1Wq7DrUas4IYkEEGYJ8o3QJ5UgYf7ow==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"jRwtRcuVLR0KlBCD4Vuns93PHikKMj0cZOQ16d1pVbKRpjOZcgLC1A47j3FLOVxaK1idb8dG1utDVXD9VGKf2w==","permissions":"FULL"},{"keyName":"key2","value":"yHVkLDfWoOEuzgJKU8qJzh7KQrfFhAVwquWacZ/FuTeIFInALQhtkVx0KI2ByEeiYH5unq2cNaM2zdhdlhdjbQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Tue, 15 May 2018 17:27:59 GMT'] + date: ['Tue, 29 May 2018 19:39:41 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,11 +115,11 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": - "westus", "properties": {"supportsHttpsTrafficOnly": false}}' + body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", + "properties": {"supportsHttpsTrafficOnly": false}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -127,26 +127,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2018-03-01-preview response: - body: {string: !!python/unicode ''} + body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Tue, 15 May 2018 17:28:00 GMT'] + date: ['Tue, 29 May 2018 19:39:43 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/9f01176c-ec20-405c-912d-1ff49d98d0b5?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e1242016-d0a5-4979-beca-e192e6b9124c?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -155,17 +155,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/9f01176c-ec20-405c-912d-1ff49d98d0b5?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e1242016-d0a5-4979-beca-e192e6b9124c?monitor=true&api-version=2018-03-01-preview response: - body: {string: !!python/unicode '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T17:28:01.0984259Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T17:28:01.0984259Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T17:28:01.0358692Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:39:43.1731503Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:39:43.1731503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:39:42.9075191Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Tue, 15 May 2018 17:28:18 GMT'] + date: ['Tue, 29 May 2018 19:40:00 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -184,18 +184,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2018-03-01-preview response: - body: {string: !!python/unicode '{"keys":[{"keyName":"key1","value":"EFwhIWpKdixVaLecAgAw/suozm4akGw6kqM0BlSsYYHqdtoPG8Hd9l+nDdgEW64TGAyAECxOJf9cnwcoyHyHlQ==","permissions":"FULL"},{"keyName":"key2","value":"EKh3y2YE9z6lBKyt/6AkQsxGykGPKlpjSNsQ4SrJ3IrfeUrkPjxL0+V8TwJJYGJ1H4w9b4TTLh5BBsLoP3MNpg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"rTnO894fzz7f/N3xQmWqARKlFcJVjaqEyoOqOmBl8XvxaI8bPb+4H4QrxBLnw4iYGvLdvhLTWee4ynkqKS2ccA==","permissions":"FULL"},{"keyName":"key2","value":"DnbVIWyojjAZ+OXaL0q/xV1DL/V1tbtyV99t/X/8SOFegldhP4sej/r4Ivua24vLNTiTJDEOS0XKcpXaJ1m1oQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Tue, 15 May 2018 17:28:18 GMT'] + date: ['Tue, 29 May 2018 19:40:02 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -204,7 +204,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -215,18 +215,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: !!python/unicode '{"keys":[{"keyName":"key1","value":"0E6LybWPFwa8qUiBbuvvpRHSVrHlRCRNk8wOHJQv1lvJ20a2V8v1E3y4UeJFIBZVerVC+cIBR3JD/F5ZvX+q8Q==","permissions":"FULL"},{"keyName":"key2","value":"7f80IHM/xgmgHrTICJ0YjdkMEqCtS3Ufq8v3WFVmds+FlKNkfFc8T0n1Wq7DrUas4IYkEEGYJ8o3QJ5UgYf7ow==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"jRwtRcuVLR0KlBCD4Vuns93PHikKMj0cZOQ16d1pVbKRpjOZcgLC1A47j3FLOVxaK1idb8dG1utDVXD9VGKf2w==","permissions":"FULL"},{"keyName":"key2","value":"yHVkLDfWoOEuzgJKU8qJzh7KQrfFhAVwquWacZ/FuTeIFInALQhtkVx0KI2ByEeiYH5unq2cNaM2zdhdlhdjbQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Tue, 15 May 2018 17:28:19 GMT'] + date: ['Tue, 29 May 2018 19:40:02 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -235,25 +235,25 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 2.7.13; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Tue, 15 May 2018 17:28:20 GMT'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:03 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004?restype=container response: - body: {string: !!python/unicode ''} + body: {string: ''} headers: - date: ['Tue, 15 May 2018 17:28:20 GMT'] - etag: ['"0x8D5BA89412628E0"'] - last-modified: ['Tue, 15 May 2018 17:28:20 GMT'] + date: ['Tue, 29 May 2018 19:40:02 GMT'] + etag: ['"0x8D5C59BF9346E73"'] + last-modified: ['Tue, 29 May 2018 19:40:03 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -263,479 +263,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 2.7.13; Windows - 10) AZURECLI/2.0.33] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] x-ms-blob-content-length: ['16384'] x-ms-blob-type: [PageBlob] - x-ms-date: ['Tue, 15 May 2018 17:28:21 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:40:03 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004/src response: - body: {string: !!python/unicode ''} - headers: - date: ['Tue, 15 May 2018 17:28:20 GMT'] - etag: ['"0x8D5BA89418929E9"'] - last-modified: ['Tue, 15 May 2018 17:28:21 GMT'] - server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] - transfer-encoding: [chunked] - x-ms-request-server-encrypted: ['true'] - x-ms-version: ['2017-11-09'] - status: {code: 201, message: Created} -- request: - body: !!python/unicode "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\ - \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - headers: - Connection: [keep-alive] - Content-Length: ['16384'] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 2.7.13; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Tue, 15 May 2018 17:28:21 GMT'] - x-ms-page-write: [update] - x-ms-range: [bytes=0-16383] - x-ms-version: ['2017-11-09'] - method: PUT - uri: https://clitest000002.blob.core.windows.net/cont000004/src?comp=page - response: - body: {string: !!python/unicode ''} + body: {string: ''} headers: - content-md5: [zjOP5omXeKrPwoQU8tlJiw==] - date: ['Tue, 15 May 2018 17:28:20 GMT'] - etag: ['"0x8D5BA89419F4E2F"'] - last-modified: ['Tue, 15 May 2018 17:28:21 GMT'] + date: ['Tue, 29 May 2018 19:40:03 GMT'] + etag: ['"0x8D5C59BF976FFE7"'] + last-modified: ['Tue, 29 May 2018 19:40:03 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-blob-sequence-number: ['0'] x-ms-request-server-encrypted: ['true'] x-ms-version: ['2017-11-09'] status: {code: 201, message: Created} @@ -744,21 +287,21 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 2.7.13; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Tue, 15 May 2018 17:28:21 GMT'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:04 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004/src?comp=snapshot response: - body: {string: !!python/unicode ''} + body: {string: ''} headers: - date: ['Tue, 15 May 2018 17:28:21 GMT'] - etag: ['"0x8D5BA89419F4E2F"'] - last-modified: ['Tue, 15 May 2018 17:28:21 GMT'] + date: ['Tue, 29 May 2018 19:40:04 GMT'] + etag: ['"0x8D5C59BF976FFE7"'] + last-modified: ['Tue, 29 May 2018 19:40:03 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-snapshot: ['2018-05-15T17:28:22.0340842Z'] + x-ms-snapshot: ['2018-05-29T19:40:04.3905035Z'] x-ms-version: ['2017-11-09'] status: {code: 201, message: Created} - request: @@ -770,18 +313,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2018-03-01-preview response: - body: {string: !!python/unicode '{"keys":[{"keyName":"key1","value":"EFwhIWpKdixVaLecAgAw/suozm4akGw6kqM0BlSsYYHqdtoPG8Hd9l+nDdgEW64TGAyAECxOJf9cnwcoyHyHlQ==","permissions":"FULL"},{"keyName":"key2","value":"EKh3y2YE9z6lBKyt/6AkQsxGykGPKlpjSNsQ4SrJ3IrfeUrkPjxL0+V8TwJJYGJ1H4w9b4TTLh5BBsLoP3MNpg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"rTnO894fzz7f/N3xQmWqARKlFcJVjaqEyoOqOmBl8XvxaI8bPb+4H4QrxBLnw4iYGvLdvhLTWee4ynkqKS2ccA==","permissions":"FULL"},{"keyName":"key2","value":"DnbVIWyojjAZ+OXaL0q/xV1DL/V1tbtyV99t/X/8SOFegldhP4sej/r4Ivua24vLNTiTJDEOS0XKcpXaJ1m1oQ==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Tue, 15 May 2018 17:28:22 GMT'] + date: ['Tue, 29 May 2018 19:40:04 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -797,18 +340,18 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 2.7.13; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Tue, 15 May 2018 17:28:22 GMT'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:05 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000003.blob.core.windows.net/cont000005?restype=container response: - body: {string: !!python/unicode ''} + body: {string: ''} headers: - date: ['Tue, 15 May 2018 17:28:22 GMT'] - etag: ['"0x8D5BA894278E904"'] - last-modified: ['Tue, 15 May 2018 17:28:23 GMT'] + date: ['Tue, 29 May 2018 19:40:04 GMT'] + etag: ['"0x8D5C59BFA622F29"'] + last-modified: ['Tue, 29 May 2018 19:40:05 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -818,22 +361,22 @@ interactions: headers: Connection: [keep-alive] Content-Length: ['0'] - User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 2.7.13; Windows - 10) AZURECLI/2.0.33] - x-ms-copy-source: ['https://clitestcaqjf5wdcluxkinn7.blob.core.windows.net/cont5lbqdgjutut7yhz3oeh5/src?sr=b&spr=https&sp=r&sv=2017-11-09&sig=U1Y9e0czd5uKCIu53EMqSFbgKZ0IMNI3F2UFbsmoMro%3D&se=2018-05-16T17%3A28%3A23Z&snapshot=2018-05-15T17:28:22.0340842Z'] - x-ms-date: ['Tue, 15 May 2018 17:28:23 GMT'] + User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows + 10) AZURECLI/2.0.34] + x-ms-copy-source: ['https://clitestdk7mpx3teuckvw4vw.blob.core.windows.net/contlzbme75ku2qti47nflyq/src?se=2018-05-30T19%3A40%3A05Z&sp=r&spr=https&sv=2017-11-09&sr=b&sig=0yMmFkphHaF6udxYp42oUepZZsT9UC0HxYZlkmNTGh0%3D&snapshot=2018-05-29T19:40:04.3905035Z'] + x-ms-date: ['Tue, 29 May 2018 19:40:05 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000003.blob.core.windows.net/cont000005/backup?comp=incrementalcopy response: - body: {string: !!python/unicode ''} + body: {string: ''} headers: - date: ['Tue, 15 May 2018 17:28:23 GMT'] - etag: ['"0x8D5BA8942E8AB27"'] - last-modified: ['Tue, 15 May 2018 17:28:23 GMT'] + date: ['Tue, 29 May 2018 19:40:05 GMT'] + etag: ['"0x8D5C59BFABCD7EC"'] + last-modified: ['Tue, 29 May 2018 19:40:06 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-copy-id: [0e6c5f3e-e4b1-4196-add5-3fa040a1766b] + x-ms-copy-id: [27e5c824-35bd-41ec-b56e-274660a3f44e] x-ms-copy-status: [pending] x-ms-version: ['2017-11-09'] status: {code: 202, message: Accepted} @@ -846,20 +389,20 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.13 (Windows-10-10.0.16299) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: !!python/unicode ''} + body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 15 May 2018 17:28:24 GMT'] + date: ['Tue, 29 May 2018 19:40:06 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdTS0pSMk1GWlpRTUZUSk5RS0dXNFI1UkJKNlhaV09FUFo1M3wxQUJGOTZGQURBNUFBNzQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdTWjVRUk9CTjM1RUVTQ1U3QUc0RlJMSkFHSEpLT1pPQkhUNnxGMjQ0NzUyMURDNkUwNzVGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_lease_operations.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_lease_operations.yaml index b181c7517e7..34587710d84 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_lease_operations.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_lease_operations.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:36:45Z"}}' + "date": "2018-05-29T19:40:07Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:36:45Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:40:07Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:36:45 GMT'] + date: ['Tue, 29 May 2018 19:40:08 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:36:46 GMT'] + date: ['Tue, 29 May 2018 19:40:09 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fe3bdfcf-26bd-4f87-baa7-6a51fb7e41c9?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/864513ea-4c38-446d-ac73-758d10e3b8a6?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fe3bdfcf-26bd-4f87-baa7-6a51fb7e41c9?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/864513ea-4c38-446d-ac73-758d10e3b8a6?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.2536948Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:36:47.2536948Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:36:47.1912061Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:09.7200384Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:09.7200384Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:40:09.6106642Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:04 GMT'] + date: ['Tue, 29 May 2018 19:40:27 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"dAkj9xVxUZotoX+nme9Lz4DF6Pi/+FBrj4fT3FPmbFfkJJTYibkNoVEOY+duGJ+Je1c5MOooes2Y+OZXUZD0Ow==","permissions":"FULL"},{"keyName":"key2","value":"dGY9vHt93wdmd6KZp57r37kPEJDQdoh3Q03JEF1P9ljvll3/xoYT+fQSmAqgLaJziuPeolx0wj/A1jzgjDaLRg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"gT4CSkWlDExuqKSCd7/xpUBc8F3AKAi/v8kmRW58fKH8LoItQQoVJdZUo8DBlUMCJ+WePwMCeN6neD5asCBUSQ==","permissions":"FULL"},{"keyName":"key2","value":"J6PA9LdeladWZGStizK2MNTT8v1l/vByNTIV/R1hQyH66YhFZYm3TmFuHn8dg/HwoI8QxS0I0Gl5JtVxqqBWjA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:04 GMT'] + date: ['Tue, 29 May 2018 19:40:28 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"dAkj9xVxUZotoX+nme9Lz4DF6Pi/+FBrj4fT3FPmbFfkJJTYibkNoVEOY+duGJ+Je1c5MOooes2Y+OZXUZD0Ow==","permissions":"FULL"},{"keyName":"key2","value":"dGY9vHt93wdmd6KZp57r37kPEJDQdoh3Q03JEF1P9ljvll3/xoYT+fQSmAqgLaJziuPeolx0wj/A1jzgjDaLRg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"gT4CSkWlDExuqKSCd7/xpUBc8F3AKAi/v8kmRW58fKH8LoItQQoVJdZUo8DBlUMCJ+WePwMCeN6neD5asCBUSQ==","permissions":"FULL"},{"keyName":"key2","value":"J6PA9LdeladWZGStizK2MNTT8v1l/vByNTIV/R1hQyH66YhFZYm3TmFuHn8dg/HwoI8QxS0I0Gl5JtVxqqBWjA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:05 GMT'] + date: ['Tue, 29 May 2018 19:40:29 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:06 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:29 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:06 GMT'] - etag: ['"0x8D5B9F39AE204ED"'] - last-modified: ['Mon, 14 May 2018 23:37:06 GMT'] + date: ['Tue, 29 May 2018 19:40:30 GMT'] + etag: ['"0x8D5C59C0933F362"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -3624,9 +3624,9 @@ interactions: Connection: [keep-alive] Content-Length: ['131072'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-type: [BlockBlob] - x-ms-date: ['Mon, 14 May 2018 23:37:07 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:40:30 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -3634,9 +3634,9 @@ interactions: body: {string: ''} headers: content-md5: [DfvoqkwgtS4bi/PLbL3xkw==] - date: ['Mon, 14 May 2018 23:37:06 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:30 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -3649,8 +3649,8 @@ interactions: Content-Length: ['0'] If-Modified-Since: ['Fri, 01 Apr 2016 12:00:00 GMT'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:07 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:31 GMT'] x-ms-lease-action: [acquire] x-ms-lease-duration: ['60'] x-ms-proposed-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd] @@ -3660,9 +3660,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:07 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:30 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd] @@ -3673,8 +3673,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:08 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:31 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -3685,12 +3685,12 @@ interactions: content-length: ['131072'] content-md5: [DfvoqkwgtS4bi/PLbL3xkw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:37:07 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:31 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:37:07 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:40:30 GMT'] x-ms-lease-duration: [fixed] x-ms-lease-state: [leased] x-ms-lease-status: [locked] @@ -3703,8 +3703,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:08 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:32 GMT'] x-ms-lease-action: [change] x-ms-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd] x-ms-proposed-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] @@ -3714,9 +3714,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:07 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:31 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] @@ -3728,8 +3728,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:08 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:32 GMT'] x-ms-lease-action: [renew] x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] x-ms-version: ['2017-11-09'] @@ -3738,9 +3738,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:08 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:32 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] @@ -3751,8 +3751,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:09 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:33 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -3763,12 +3763,12 @@ interactions: content-length: ['131072'] content-md5: [DfvoqkwgtS4bi/PLbL3xkw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:37:09 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:32 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:37:07 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:40:30 GMT'] x-ms-lease-duration: [fixed] x-ms-lease-state: [leased] x-ms-lease-status: [locked] @@ -3781,8 +3781,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:09 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:33 GMT'] x-ms-lease-action: [break] x-ms-lease-break-period: ['30'] x-ms-version: ['2017-11-09'] @@ -3791,9 +3791,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:09 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:33 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-lease-time: ['30'] @@ -3804,8 +3804,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:09 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:34 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -3816,12 +3816,12 @@ interactions: content-length: ['131072'] content-md5: [DfvoqkwgtS4bi/PLbL3xkw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:37:09 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:33 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:37:07 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:40:30 GMT'] x-ms-lease-state: [breaking] x-ms-lease-status: [locked] x-ms-server-encrypted: ['true'] @@ -3833,8 +3833,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:10 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:34 GMT'] x-ms-lease-action: [release] x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba] x-ms-version: ['2017-11-09'] @@ -3843,9 +3843,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:09 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:34 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -3855,8 +3855,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:10 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:35 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -3867,12 +3867,12 @@ interactions: content-length: ['131072'] content-md5: [DfvoqkwgtS4bi/PLbL3xkw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:37:10 GMT'] - etag: ['"0x8D5B9F39B1E6DE2"'] - last-modified: ['Mon, 14 May 2018 23:37:07 GMT'] + date: ['Tue, 29 May 2018 19:40:34 GMT'] + etag: ['"0x8D5C59C098456E6"'] + last-modified: ['Tue, 29 May 2018 19:40:30 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:37:07 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:40:30 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -3887,9 +3887,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -3898,9 +3898,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:37:12 GMT'] + date: ['Tue, 29 May 2018 19:40:36 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdaVkZTRjVBNFVTVDdEU001WkQ2Mko0VjZBVk1TQ0pRM0pQVXwxQTNFOEE0NzdBNjY0Q0RGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdNQ0Y0TDNMQVJMNFBJQlM0NERNVlVXWlFMNUtSQzRDM0hUQXw5QTc0RDc1RDMwNzJCRTdFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_metadata_operations.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_metadata_operations.yaml index 623fac1c53d..7737d0df504 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_metadata_operations.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_metadata_operations.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:37:13Z"}}' + "date": "2018-05-29T19:40:37Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:37:13Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:40:37Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:13 GMT'] + date: ['Tue, 29 May 2018 19:40:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:14 GMT'] + date: ['Tue, 29 May 2018 19:40:39 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/dedb082f-8add-4b19-9fb5-37eae21ca133?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/689385ad-d2fb-45ca-a553-68641463ef6a?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/dedb082f-8add-4b19-9fb5-37eae21ca133?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/689385ad-d2fb-45ca-a553-68641463ef6a?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:15.0292662Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:15.0292662Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:37:14.9668157Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:39.6396055Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:40:39.6396055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:40:39.5614829Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:32 GMT'] + date: ['Tue, 29 May 2018 19:40:56 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"s0QelywWuhzl066hH5/J8RelZQqH1/MoULaZc2CAhrdz1wWzRj0MMtVOdjT7u1oEm0MhHUH2PB6dPUQR4Lnwhw==","permissions":"FULL"},{"keyName":"key2","value":"+2E9KaJ+Y/bOX3EQ8MwHccKRy0fl3y+jt5Cn91ONn1KbbOfxrQs0+EE/QGGv8FQ8Qq3Ql9I6D+CAaVYl7LLDNw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"W5LGFi2kIHNrTBwVISOKlvVD3MCTHMa+nNoSoHRWIGW+Lm/AtjO6XvkHdv2ZdtvxzFNt5e2vrLvcYSBFqY2Y8g==","permissions":"FULL"},{"keyName":"key2","value":"bxostRRD8FH9/SOBDpP0eh/UcEHZlgdfIblHXjEc9ROs2bG2Rg5t3SG3H9nXrcSTVE8s69DvhdhVFz3K6cCXLg==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:33 GMT'] + date: ['Tue, 29 May 2018 19:40:58 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"s0QelywWuhzl066hH5/J8RelZQqH1/MoULaZc2CAhrdz1wWzRj0MMtVOdjT7u1oEm0MhHUH2PB6dPUQR4Lnwhw==","permissions":"FULL"},{"keyName":"key2","value":"+2E9KaJ+Y/bOX3EQ8MwHccKRy0fl3y+jt5Cn91ONn1KbbOfxrQs0+EE/QGGv8FQ8Qq3Ql9I6D+CAaVYl7LLDNw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"W5LGFi2kIHNrTBwVISOKlvVD3MCTHMa+nNoSoHRWIGW+Lm/AtjO6XvkHdv2ZdtvxzFNt5e2vrLvcYSBFqY2Y8g==","permissions":"FULL"},{"keyName":"key2","value":"bxostRRD8FH9/SOBDpP0eh/UcEHZlgdfIblHXjEc9ROs2bG2Rg5t3SG3H9nXrcSTVE8s69DvhdhVFz3K6cCXLg==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:33 GMT'] + date: ['Tue, 29 May 2018 19:40:59 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:34 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:40:59 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:33 GMT'] - etag: ['"0x8D5B9F3AB713E9A"'] - last-modified: ['Mon, 14 May 2018 23:37:34 GMT'] + date: ['Tue, 29 May 2018 19:40:59 GMT'] + etag: ['"0x8D5C59C1AC5CEB7"'] + last-modified: ['Tue, 29 May 2018 19:40:59 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -443,10 +443,10 @@ interactions: Connection: [keep-alive] Content-Length: ['21495'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-content-type: [text/plain] x-ms-blob-type: [BlockBlob] - x-ms-date: ['Mon, 14 May 2018 23:37:34 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:40:59 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -454,9 +454,9 @@ interactions: body: {string: ''} headers: content-md5: [DmEC+37xioYUtTDIwpR8pQ==] - date: ['Mon, 14 May 2018 23:37:34 GMT'] - etag: ['"0x8D5B9F3ABB942C4"'] - last-modified: ['Mon, 14 May 2018 23:37:35 GMT'] + date: ['Tue, 29 May 2018 19:40:59 GMT'] + etag: ['"0x8D5C59C1B164395"'] + last-modified: ['Tue, 29 May 2018 19:41:00 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -468,8 +468,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:35 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:41:00 GMT'] x-ms-meta-a: [b] x-ms-meta-c: [d] x-ms-version: ['2017-11-09'] @@ -478,9 +478,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:35 GMT'] - etag: ['"0x8D5B9F3ABF0B08F"'] - last-modified: ['Mon, 14 May 2018 23:37:35 GMT'] + date: ['Tue, 29 May 2018 19:41:00 GMT'] + etag: ['"0x8D5C59C1B7760B5"'] + last-modified: ['Tue, 29 May 2018 19:41:00 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -491,17 +491,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:35 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:41:01 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:35 GMT'] - etag: ['"0x8D5B9F3ABF0B08F"'] - last-modified: ['Mon, 14 May 2018 23:37:35 GMT'] + date: ['Tue, 29 May 2018 19:41:01 GMT'] + etag: ['"0x8D5C59C1B7760B5"'] + last-modified: ['Tue, 29 May 2018 19:41:00 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-meta-a: [b] @@ -514,17 +514,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:36 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:41:01 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:35 GMT'] - etag: ['"0x8D5B9F3AC5AF78B"'] - last-modified: ['Mon, 14 May 2018 23:37:36 GMT'] + date: ['Tue, 29 May 2018 19:41:01 GMT'] + etag: ['"0x8D5C59C1C167C4B"'] + last-modified: ['Tue, 29 May 2018 19:41:01 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -535,17 +535,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:36 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:41:02 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:36 GMT'] - etag: ['"0x8D5B9F3AC5AF78B"'] - last-modified: ['Mon, 14 May 2018 23:37:36 GMT'] + date: ['Tue, 29 May 2018 19:41:01 GMT'] + etag: ['"0x8D5C59C1C167C4B"'] + last-modified: ['Tue, 29 May 2018 19:41:01 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -559,9 +559,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -570,12 +570,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:37:37 GMT'] + date: ['Tue, 29 May 2018 19:41:03 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdEVkJDSFZBNEZCRTI1WVVIMzZCT1M0WEpJSUI3VlJRT1JDQ3xCMTRCQjIyNzM5RUY3RTdBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdRU08ySEQ2Q1dYNTM0QUxVSTNTQkJJQVNPNTJaVElPREI0RHw4RTkxQjc3QjVFOTE5QUVGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_snapshot_operations.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_snapshot_operations.yaml index 1623b139aee..74a1c48f4e5 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_snapshot_operations.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_snapshot_operations.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:37:38Z"}}' + "date": "2018-05-29T19:41:04Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:37:38Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:41:04Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:37 GMT'] + date: ['Tue, 29 May 2018 19:41:05 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:37:39 GMT'] + date: ['Tue, 29 May 2018 19:41:06 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/71b447f4-087d-4e6e-85fe-4ba7b1419ca1?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/0b48917e-4c56-406a-9abc-742d0b9442bd?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/71b447f4-087d-4e6e-85fe-4ba7b1419ca1?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/0b48917e-4c56-406a-9abc-742d0b9442bd?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:40.1222754Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:37:40.1222754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:37:40.0597537Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:06.9874633Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:06.9874633Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:41:06.9093573Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:56 GMT'] + date: ['Tue, 29 May 2018 19:41:23 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"ll5iLQFCSFrzOduEWASS4ETqNOJfb0SFFP620weR0gKuQEWCa+B/CMl2zAY/pRn5fJ51l68sBUwNV0nnwbl/FQ==","permissions":"FULL"},{"keyName":"key2","value":"HTfb8teyKnxJcV8rqpiB7Yj2y+jVqm3mcx0QjEFBGCPayoWSA0tP1s7Afa65USuJlu2+5fOmROCicnnpdf/6Cg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"nKtpJlSTKt2AE6Ua+MuEVUXqQFG/49DW1zraaQR5kSRgDH2SD7YjkogSVg29nWnPAD6CpVatiuW+9BbvQ4gP6A==","permissions":"FULL"},{"keyName":"key2","value":"tueLZmdgy0rXlF8WDXO4dieXUVOnTmHM2Inn9iD6xAn5wTje5gppzG29CwO5S/eQKnFlI6C4kko/A7pkxQOgzw==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:58 GMT'] + date: ['Tue, 29 May 2018 19:41:25 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"ll5iLQFCSFrzOduEWASS4ETqNOJfb0SFFP620weR0gKuQEWCa+B/CMl2zAY/pRn5fJ51l68sBUwNV0nnwbl/FQ==","permissions":"FULL"},{"keyName":"key2","value":"HTfb8teyKnxJcV8rqpiB7Yj2y+jVqm3mcx0QjEFBGCPayoWSA0tP1s7Afa65USuJlu2+5fOmROCicnnpdf/6Cg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"nKtpJlSTKt2AE6Ua+MuEVUXqQFG/49DW1zraaQR5kSRgDH2SD7YjkogSVg29nWnPAD6CpVatiuW+9BbvQ4gP6A==","permissions":"FULL"},{"keyName":"key2","value":"tueLZmdgy0rXlF8WDXO4dieXUVOnTmHM2Inn9iD6xAn5wTje5gppzG29CwO5S/eQKnFlI6C4kko/A7pkxQOgzw==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:37:58 GMT'] + date: ['Tue, 29 May 2018 19:41:26 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:37:59 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:41:27 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:37:59 GMT'] - etag: ['"0x8D5B9F3BA6E6F15"'] - last-modified: ['Mon, 14 May 2018 23:37:59 GMT'] + date: ['Tue, 29 May 2018 19:41:26 GMT'] + etag: ['"0x8D5C59C2B3199C9"'] + last-modified: ['Tue, 29 May 2018 19:41:27 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -3624,9 +3624,9 @@ interactions: Connection: [keep-alive] Content-Length: ['131072'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-type: [BlockBlob] - x-ms-date: ['Mon, 14 May 2018 23:38:00 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:41:27 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -3634,9 +3634,9 @@ interactions: body: {string: ''} headers: content-md5: [DfvoqkwgtS4bi/PLbL3xkw==] - date: ['Mon, 14 May 2018 23:37:59 GMT'] - etag: ['"0x8D5B9F3BACDFF48"'] - last-modified: ['Mon, 14 May 2018 23:38:00 GMT'] + date: ['Tue, 29 May 2018 19:41:27 GMT'] + etag: ['"0x8D5C59C2B8A5828"'] + last-modified: ['Tue, 29 May 2018 19:41:27 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -3648,20 +3648,20 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:00 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:41:28 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=snapshot response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:38:00 GMT'] - etag: ['"0x8D5B9F3BACDFF48"'] - last-modified: ['Mon, 14 May 2018 23:38:00 GMT'] + date: ['Tue, 29 May 2018 19:41:27 GMT'] + etag: ['"0x8D5C59C2B8A5828"'] + last-modified: ['Tue, 29 May 2018 19:41:27 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-snapshot: ['2018-05-14T23:38:00.8839805Z'] + x-ms-snapshot: ['2018-05-29T19:41:28.3813547Z'] x-ms-version: ['2017-11-09'] status: {code: 201, message: Created} - request: @@ -3669,11 +3669,11 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:01 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:41:28 GMT'] x-ms-version: ['2017-11-09'] method: HEAD - uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?snapshot=2018-05-14T23%3A38%3A00.8839805Z + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?snapshot=2018-05-29T19%3A41%3A28.3813547Z response: body: {string: ''} headers: @@ -3681,12 +3681,12 @@ interactions: content-length: ['131072'] content-md5: [DfvoqkwgtS4bi/PLbL3xkw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:38:00 GMT'] - etag: ['"0x8D5B9F3BACDFF48"'] - last-modified: ['Mon, 14 May 2018 23:38:00 GMT'] + date: ['Tue, 29 May 2018 19:41:28 GMT'] + etag: ['"0x8D5C59C2B8A5828"'] + last-modified: ['Tue, 29 May 2018 19:41:27 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:38:00 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:41:27 GMT'] x-ms-server-encrypted: ['true'] x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} @@ -3699,9 +3699,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -3710,12 +3710,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:38:01 GMT'] + date: ['Tue, 29 May 2018 19:41:29 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdNT0tCVTNWUE03WkY3N0xCWlBGNUZERDRaWlVKSUhVSkE3UHwyN0M5MjZFNzkwMEE1MjM2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdCREpMSjVGVURSTVRWNlhTTks3U1hLSUc2NVYzQU9aSVVGRHw2OEMxMjM2ODA5ODUyOEEwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14997'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_socket_timeout.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_socket_timeout.yaml index b4e911fe262..9e25c49d8b8 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_socket_timeout.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_socket_timeout.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:38:02Z"}}' + "date": "2018-05-29T19:41:30Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:38:02Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:41:30Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:38:03 GMT'] + date: ['Tue, 29 May 2018 19:41:31 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:38:05 GMT'] + date: ['Tue, 29 May 2018 19:41:32 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e8f22443-053c-4254-bdc6-28cb1d1ca410?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/9f39fd15-a8e4-481d-a15b-2f1f8f79d81f?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e8f22443-053c-4254-bdc6-28cb1d1ca410?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/9f39fd15-a8e4-481d-a15b-2f1f8f79d81f?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:38:04.9672880Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:38:04.9672880Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:38:04.8891770Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:32.8376584Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:41:32.8376584Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:41:32.7126388Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:21 GMT'] + date: ['Tue, 29 May 2018 19:41:49 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"bimrgrhoucMwLZIxnYlYAW0fW7cnPf3XCtcZ1HwtJvh3YhSQLL5wUK8lIFHzGgcL+sdfLW9wogV1yIugT68HAA==","permissions":"FULL"},{"keyName":"key2","value":"V85o7hBhXBZZabjpZvx1wWFMzyz56MO/gM8l7T7EFfIV1FVGKLiPg39FANskdRXlfY745Cu+eoVCdohdIr5BBQ==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"AhTyEEfnYSak08jNhLFayufOwYNL0g3j8sKMcqdIIjz7xTh3paxA+NkaLBvSay8bowKdMtcMTN4fyam7Zkypgg==","permissions":"FULL"},{"keyName":"key2","value":"gHLg+vKXjPnvzl9ySljdXCrHIGAImPigipMq84V2TnurMg4N2Ra/RRryzdBfADOf4yodK4A1xhCUME3meXbIAA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:22 GMT'] + date: ['Tue, 29 May 2018 19:41:51 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"bimrgrhoucMwLZIxnYlYAW0fW7cnPf3XCtcZ1HwtJvh3YhSQLL5wUK8lIFHzGgcL+sdfLW9wogV1yIugT68HAA==","permissions":"FULL"},{"keyName":"key2","value":"V85o7hBhXBZZabjpZvx1wWFMzyz56MO/gM8l7T7EFfIV1FVGKLiPg39FANskdRXlfY745Cu+eoVCdohdIr5BBQ==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"AhTyEEfnYSak08jNhLFayufOwYNL0g3j8sKMcqdIIjz7xTh3paxA+NkaLBvSay8bowKdMtcMTN4fyam7Zkypgg==","permissions":"FULL"},{"keyName":"key2","value":"gHLg+vKXjPnvzl9ySljdXCrHIGAImPigipMq84V2TnurMg4N2Ra/RRryzdBfADOf4yodK4A1xhCUME3meXbIAA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:38:23 GMT'] + date: ['Tue, 29 May 2018 19:41:51 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:38:24 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:41:52 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:38:23 GMT'] - etag: ['"0x8D5B9F3C930897C"'] - last-modified: ['Mon, 14 May 2018 23:38:24 GMT'] + date: ['Tue, 29 May 2018 19:41:52 GMT'] + etag: ['"0x8D5C59C3A928FF9"'] + last-modified: ['Tue, 29 May 2018 19:41:53 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -174,15 +174,15 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:47 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:39:26 GMT'] + date: ['Tue, 29 May 2018 19:42:47 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-error-code: [BlobNotFound] @@ -220,9 +220,9 @@ interactions: Connection: [keep-alive] Content-Length: ['1024'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-type: [BlockBlob] - x-ms-date: ['Mon, 14 May 2018 23:39:27 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:42:47 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -230,9 +230,9 @@ interactions: body: {string: ''} headers: content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] - date: ['Mon, 14 May 2018 23:39:26 GMT'] - etag: ['"0x8D5B9F3EEAE333A"'] - last-modified: ['Mon, 14 May 2018 23:39:27 GMT'] + date: ['Tue, 29 May 2018 19:42:47 GMT'] + etag: ['"0x8D5C59C5B6CECF3"'] + last-modified: ['Tue, 29 May 2018 19:42:48 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -243,8 +243,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:48 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -255,12 +255,12 @@ interactions: content-length: ['1024'] content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:39:27 GMT'] - etag: ['"0x8D5B9F3EEAE333A"'] - last-modified: ['Mon, 14 May 2018 23:39:27 GMT'] + date: ['Tue, 29 May 2018 19:42:48 GMT'] + etag: ['"0x8D5C59C5B6CECF3"'] + last-modified: ['Tue, 29 May 2018 19:42:48 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:39:27 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:42:48 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -271,8 +271,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:49 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -283,12 +283,12 @@ interactions: content-length: ['1024'] content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:39:27 GMT'] - etag: ['"0x8D5B9F3EEAE333A"'] - last-modified: ['Mon, 14 May 2018 23:39:27 GMT'] + date: ['Tue, 29 May 2018 19:42:49 GMT'] + etag: ['"0x8D5C59C5B6CECF3"'] + last-modified: ['Tue, 29 May 2018 19:42:48 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:39:27 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:42:48 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -299,8 +299,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:42:49 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-11-09'] method: GET @@ -339,13 +339,13 @@ interactions: content-length: ['1024'] content-range: [bytes 0-1023/1024] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:39:28 GMT'] - etag: ['"0x8D5B9F3EEAE333A"'] - last-modified: ['Mon, 14 May 2018 23:39:27 GMT'] + date: ['Tue, 29 May 2018 19:42:49 GMT'] + etag: ['"0x8D5C59C5B6CECF3"'] + last-modified: ['Tue, 29 May 2018 19:42:48 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:39:27 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:42:48 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -360,9 +360,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -371,9 +371,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:39:29 GMT'] + date: ['Tue, 29 May 2018 19:42:50 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc2TzdYQUZUVlpHTU9YRldGR1VER1JXM0ZMRFY1SE42SURXQXw3QTI2RDU3NjU3MTY3ODQ5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdORzRNSE00NFpRRFVEWlpBVldQNEpUTFJJNkhQTlczN0hLU3w2RTczQTg2NENBMEFBQzg5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_soft_delete.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_soft_delete.yaml index 6b93e4fbf91..4cbd670a0ae 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_soft_delete.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_soft_delete.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:39:30Z"}}' + "date": "2018-05-29T19:42:51Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:39:30Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:42:51Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:39:31 GMT'] + date: ['Tue, 29 May 2018 19:42:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:39:32 GMT'] + date: ['Tue, 29 May 2018 19:42:54 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b80f6330-b51a-4c59-b405-bd29bf504c2d?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/1835cd7d-2b89-40cf-a1b2-efa22a749e78?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b80f6330-b51a-4c59-b405-bd29bf504c2d?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/1835cd7d-2b89-40cf-a1b2-efa22a749e78?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:32.4263996Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:39:32.4263996Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:39:32.3638616Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:42:54.3699935Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:42:54.3699935Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:42:54.2720725Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:49 GMT'] + date: ['Tue, 29 May 2018 19:43:12 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"3ViZPBhfwkb2BT2XFID14+2/xpyrcGXBT0NoGGVKzh75FqjOuwvwcSpJGv9G5u4OCfzxev9Ip2+oHO6aZJEaQg==","permissions":"FULL"},{"keyName":"key2","value":"dBDri6ZIvhWDAR9v3+r99qktpnFCkav+N0oMbZq8p00sml729jONRptYpikkcx2hCqqJY+9k/Q1//LahIjoD6w==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"MZzxOQxoA7qbjXdrlcYFsGTtnU8fgtim/CBMpxV0UJD/GtRoi/kfevqqvOM6eeOsvFs55wy3ayna3Iw2qbfXQg==","permissions":"FULL"},{"keyName":"key2","value":"YCG2MacTIGPv799WwGKFSt8wk8e1uBJ16WmR4uGKi6fgu37ags7LxMpe0q3PksF/Kw4Yufq8krIuhMLANvQHdg==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:50 GMT'] + date: ['Tue, 29 May 2018 19:43:12 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"3ViZPBhfwkb2BT2XFID14+2/xpyrcGXBT0NoGGVKzh75FqjOuwvwcSpJGv9G5u4OCfzxev9Ip2+oHO6aZJEaQg==","permissions":"FULL"},{"keyName":"key2","value":"dBDri6ZIvhWDAR9v3+r99qktpnFCkav+N0oMbZq8p00sml729jONRptYpikkcx2hCqqJY+9k/Q1//LahIjoD6w==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"MZzxOQxoA7qbjXdrlcYFsGTtnU8fgtim/CBMpxV0UJD/GtRoi/kfevqqvOM6eeOsvFs55wy3ayna3Iw2qbfXQg==","permissions":"FULL"},{"keyName":"key2","value":"YCG2MacTIGPv799WwGKFSt8wk8e1uBJ16WmR4uGKi6fgu37ags7LxMpe0q3PksF/Kw4Yufq8krIuhMLANvQHdg==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:39:51 GMT'] + date: ['Tue, 29 May 2018 19:43:14 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:52 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:14 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:39:51 GMT'] - etag: ['"0x8D5B9F3FD7B114F"'] - last-modified: ['Mon, 14 May 2018 23:39:52 GMT'] + date: ['Tue, 29 May 2018 19:43:14 GMT'] + etag: ['"0x8D5C59C6B7AF48E"'] + last-modified: ['Tue, 29 May 2018 19:43:15 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -201,9 +201,9 @@ interactions: Connection: [keep-alive] Content-Length: ['1024'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-type: [BlockBlob] - x-ms-date: ['Mon, 14 May 2018 23:39:52 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:43:15 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 @@ -211,9 +211,9 @@ interactions: body: {string: ''} headers: content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] - date: ['Mon, 14 May 2018 23:39:52 GMT'] - etag: ['"0x8D5B9F3FDDB888F"'] - last-modified: ['Mon, 14 May 2018 23:39:53 GMT'] + date: ['Tue, 29 May 2018 19:43:14 GMT'] + etag: ['"0x8D5C59C6BCB50DA"'] + last-modified: ['Tue, 29 May 2018 19:43:15 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -224,23 +224,23 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:53 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:15 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list response: body: {string: "\uFEFFblob000004Mon,\ - \ 14 May 2018 23:39:53 GMTMon, 14 May 2018\ - \ 23:39:53 GMT0x8D5B9F3FDDB888F1024application/octet-streamblob000004Tue,\ + \ 29 May 2018 19:43:15 GMTTue, 29 May 2018\ + \ 19:43:15 GMT0x8D5C59C6BCB50DA1024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletrue"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:52 GMT'] + date: ['Tue, 29 May 2018 19:43:15 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -250,8 +250,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:53 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:16 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -260,7 +260,7 @@ interactions: \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:53 GMT'] + date: ['Tue, 29 May 2018 19:43:16 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -273,15 +273,15 @@ interactions: Connection: [keep-alive] Content-Length: ['176'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:53 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:16 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:39:53 GMT'] + date: ['Tue, 29 May 2018 19:43:17 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -291,8 +291,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:54 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:17 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -301,7 +301,7 @@ interactions: \ />true2"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:53 GMT'] + date: ['Tue, 29 May 2018 19:43:17 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -311,8 +311,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:54 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:18 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -321,7 +321,7 @@ interactions: \ />true2"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:53 GMT'] + date: ['Tue, 29 May 2018 19:43:17 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -332,15 +332,15 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:54 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:18 GMT'] x-ms-version: ['2017-11-09'] method: DELETE uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:39:54 GMT'] + date: ['Tue, 29 May 2018 19:43:18 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-delete-type-permanent: ['false'] @@ -351,8 +351,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:55 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:19 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list @@ -362,7 +362,7 @@ interactions: cont000003\">"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:54 GMT'] + date: ['Tue, 29 May 2018 19:43:18 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -372,24 +372,24 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:55 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:20 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&include=deleted response: body: {string: "\uFEFFblob000004trueMon,\ - \ 14 May 2018 23:39:53 GMTMon, 14 May 2018\ - \ 23:39:53 GMT0x8D5B9F3FDDB888F1024application/octet-streamblob000004trueTue,\ + \ 29 May 2018 19:43:15 GMTTue, 29 May 2018\ + \ 19:43:15 GMT0x8D5C59C6BCB50DA1024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobtrueMon,\ - \ 14 May 2018 23:39:54 GMT1BlockBlobtrueTue,\ + \ 29 May 2018 19:43:19 GMT1"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:54 GMT'] + date: ['Tue, 29 May 2018 19:43:19 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -400,15 +400,15 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:56 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:20 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=undelete response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:39:56 GMT'] + date: ['Tue, 29 May 2018 19:43:20 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -418,23 +418,23 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:39:56 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:21 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list response: body: {string: "\uFEFFblob000004Mon,\ - \ 14 May 2018 23:39:53 GMTMon, 14 May 2018\ - \ 23:39:53 GMT0x8D5B9F3FDDB888F1024application/octet-streamblob000004Tue,\ + \ 29 May 2018 19:43:15 GMTTue, 29 May 2018\ + \ 19:43:15 GMT0x8D5C59C6BCB50DA1024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletrue"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:39:56 GMT'] + date: ['Tue, 29 May 2018 19:43:20 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -448,9 +448,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -459,12 +459,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:39:57 GMT'] + date: ['Tue, 29 May 2018 19:43:21 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc0NVhHVFFUMktFUTdLUE1VWDVPWFlLNFozWDNDRkRHNzZMS3wyODA3MDIzMjQ3RDBGMzBGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdCVDNCV0JTVERBS0YyNTRNRVpFWElRTldIQ0EzVkVXQkZRSXxGNzlERjYyMTY1RDZFQ0Q3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14997'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_upload_midsize_file.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_upload_midsize_file.yaml index e42817f94c7..d347115b060 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_upload_midsize_file.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_upload_midsize_file.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:39:57Z"}}' + "date": "2018-05-29T19:43:22Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:39:57Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:43:22Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:39:58 GMT'] + date: ['Tue, 29 May 2018 19:43:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:01 GMT'] + date: ['Tue, 29 May 2018 19:43:25 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d2980552-1e4b-4e67-94c0-3fe6c2e43974?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/62597616-e932-403d-a288-d11590d02a9f?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d2980552-1e4b-4e67-94c0-3fe6c2e43974?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/62597616-e932-403d-a288-d11590d02a9f?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:40:00.6606233Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:40:00.6606233Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:40:00.2699751Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:25.2186738Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:25.2186738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:25.1092897Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:18 GMT'] + date: ['Tue, 29 May 2018 19:43:42 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"A4CKroOye2Uj/I8Tvg0fH3CWEzjmUtxp/DrohM4be7U7qy6fx9i+Jja/W8e9Pq4hg9XvtS7jgdsWoDC636r1iQ==","permissions":"FULL"},{"keyName":"key2","value":"D/49hH2RVsODpSorEsharufFG4yqPFMDSbbERpaZiGbUU/P/ItaUPsCoJUpJ2ljbu5vELecsw7DYohnFt/Cm4A==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"ByQvV3guOfy6lK7SdEC7lQj1bkfY2DmK8C2L0MVmIJrPnxRHSRVbRzgLOFAB9bv8NPGUKOBzy7sUbBQW/K/4Fg==","permissions":"FULL"},{"keyName":"key2","value":"IPbJ/bfR9/7gRCCRTCyVW3PZfRzoOB6nv0mRWEfLoUxVlq7P6MzKPKJbSRPGY9ways5iUEJ8NqcUm1LLo/rz1Q==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:19 GMT'] + date: ['Tue, 29 May 2018 19:43:43 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"A4CKroOye2Uj/I8Tvg0fH3CWEzjmUtxp/DrohM4be7U7qy6fx9i+Jja/W8e9Pq4hg9XvtS7jgdsWoDC636r1iQ==","permissions":"FULL"},{"keyName":"key2","value":"D/49hH2RVsODpSorEsharufFG4yqPFMDSbbERpaZiGbUU/P/ItaUPsCoJUpJ2ljbu5vELecsw7DYohnFt/Cm4A==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"ByQvV3guOfy6lK7SdEC7lQj1bkfY2DmK8C2L0MVmIJrPnxRHSRVbRzgLOFAB9bv8NPGUKOBzy7sUbBQW/K/4Fg==","permissions":"FULL"},{"keyName":"key2","value":"IPbJ/bfR9/7gRCCRTCyVW3PZfRzoOB6nv0mRWEfLoUxVlq7P6MzKPKJbSRPGY9ways5iUEJ8NqcUm1LLo/rz1Q==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:20 GMT'] + date: ['Tue, 29 May 2018 19:43:44 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:21 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:45 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:40:20 GMT'] - etag: ['"0x8D5B9F40ED2FA47"'] - last-modified: ['Mon, 14 May 2018 23:40:21 GMT'] + date: ['Tue, 29 May 2018 19:43:44 GMT'] + etag: ['"0x8D5C59C7D9DC2B8"'] + last-modified: ['Tue, 29 May 2018 19:43:45 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -174,15 +174,15 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:21 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:45 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:40:21 GMT'] + date: ['Tue, 29 May 2018 19:43:45 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-error-code: [BlobNotFound] @@ -195,9 +195,9 @@ interactions: Connection: [keep-alive] Content-Length: ['4194304'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-type: [BlockBlob] - x-ms-date: ['Mon, 14 May 2018 23:40:21 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:43:46 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -205,9 +205,9 @@ interactions: body: {string: ''} headers: content-md5: [tc+p1sj+vWGPkawoQ9UKHA==] - date: ['Mon, 14 May 2018 23:40:22 GMT'] - etag: ['"0x8D5B9F40F74133B"'] - last-modified: ['Mon, 14 May 2018 23:40:22 GMT'] + date: ['Tue, 29 May 2018 19:43:47 GMT'] + etag: ['"0x8D5C59C7E97D7DF"'] + last-modified: ['Tue, 29 May 2018 19:43:47 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -218,8 +218,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:22 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:47 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -230,12 +230,12 @@ interactions: content-length: ['4194304'] content-md5: [tc+p1sj+vWGPkawoQ9UKHA==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:40:22 GMT'] - etag: ['"0x8D5B9F40F74133B"'] - last-modified: ['Mon, 14 May 2018 23:40:22 GMT'] + date: ['Tue, 29 May 2018 19:43:47 GMT'] + etag: ['"0x8D5C59C7E97D7DF"'] + last-modified: ['Tue, 29 May 2018 19:43:47 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:22 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:43:47 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -246,23 +246,23 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:23 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:48 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000004?restype=container&comp=list&maxresults=1 response: body: {string: "\uFEFF1blob000003Mon,\ - \ 14 May 2018 23:40:22 GMTMon, 14 May 2018\ - \ 23:40:22 GMT0x8D5B9F40F74133B4194304application/octet-stream1blob000003Tue,\ + \ 29 May 2018 19:43:47 GMTTue, 29 May 2018\ + \ 19:43:47 GMT0x8D5C59C7E97D7DF4194304application/octet-streamtc+p1sj+vWGPkawoQ9UKHA==BlockBlobunlockedavailabletrue"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:40:23 GMT'] + date: ['Tue, 29 May 2018 19:43:48 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -272,8 +272,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:23 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:48 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -284,12 +284,12 @@ interactions: content-length: ['4194304'] content-md5: [tc+p1sj+vWGPkawoQ9UKHA==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:40:23 GMT'] - etag: ['"0x8D5B9F40F74133B"'] - last-modified: ['Mon, 14 May 2018 23:40:22 GMT'] + date: ['Tue, 29 May 2018 19:43:48 GMT'] + etag: ['"0x8D5C59C7E97D7DF"'] + last-modified: ['Tue, 29 May 2018 19:43:47 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:22 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:43:47 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -300,8 +300,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:24 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:49 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -312,12 +312,12 @@ interactions: content-length: ['4194304'] content-md5: [tc+p1sj+vWGPkawoQ9UKHA==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:40:23 GMT'] - etag: ['"0x8D5B9F40F74133B"'] - last-modified: ['Mon, 14 May 2018 23:40:22 GMT'] + date: ['Tue, 29 May 2018 19:43:49 GMT'] + etag: ['"0x8D5C59C7E97D7DF"'] + last-modified: ['Tue, 29 May 2018 19:43:47 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:22 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:43:47 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -329,19 +329,19 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-content-md5: [tc+p1sj+vWGPkawoQ9UKHA==] x-ms-blob-content-type: [application/test-content] - x-ms-date: ['Mon, 14 May 2018 23:40:24 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:43:50 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003?comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:40:24 GMT'] - etag: ['"0x8D5B9F410CFC321"'] - last-modified: ['Mon, 14 May 2018 23:40:24 GMT'] + date: ['Tue, 29 May 2018 19:43:50 GMT'] + etag: ['"0x8D5C59C809402DC"'] + last-modified: ['Tue, 29 May 2018 19:43:50 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -351,8 +351,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:24 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:50 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -363,12 +363,12 @@ interactions: content-length: ['4194304'] content-md5: [tc+p1sj+vWGPkawoQ9UKHA==] content-type: [application/test-content] - date: ['Mon, 14 May 2018 23:40:24 GMT'] - etag: ['"0x8D5B9F410CFC321"'] - last-modified: ['Mon, 14 May 2018 23:40:24 GMT'] + date: ['Tue, 29 May 2018 19:43:50 GMT'] + etag: ['"0x8D5C59C809402DC"'] + last-modified: ['Tue, 29 May 2018 19:43:50 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:22 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:43:47 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -379,8 +379,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:25 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:51 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -389,7 +389,7 @@ interactions: \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:40:25 GMT'] + date: ['Tue, 29 May 2018 19:43:51 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -399,8 +399,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:25 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:52 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-11-09'] method: GET @@ -414,13 +414,13 @@ interactions: content-length: ['4194304'] content-range: [bytes 0-4194303/4194304] content-type: [application/test-content] - date: ['Mon, 14 May 2018 23:40:25 GMT'] - etag: ['"0x8D5B9F410CFC321"'] - last-modified: ['Mon, 14 May 2018 23:40:24 GMT'] + date: ['Tue, 29 May 2018 19:43:52 GMT'] + etag: ['"0x8D5C59C809402DC"'] + last-modified: ['Tue, 29 May 2018 19:43:50 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-content-md5: [tc+p1sj+vWGPkawoQ9UKHA==] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:22 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:43:47 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -431,8 +431,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:43:53 GMT'] x-ms-range: [bytes=10-499] x-ms-version: ['2017-11-09'] method: GET @@ -457,13 +457,13 @@ interactions: content-length: ['490'] content-range: [bytes 10-499/4194304] content-type: [application/test-content] - date: ['Mon, 14 May 2018 23:40:27 GMT'] - etag: ['"0x8D5B9F410CFC321"'] - last-modified: ['Mon, 14 May 2018 23:40:24 GMT'] + date: ['Tue, 29 May 2018 19:43:52 GMT'] + etag: ['"0x8D5C59C809402DC"'] + last-modified: ['Tue, 29 May 2018 19:43:50 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-content-md5: [tc+p1sj+vWGPkawoQ9UKHA==] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:22 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:43:47 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -478,9 +478,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -489,9 +489,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:40:27 GMT'] + date: ['Tue, 29 May 2018 19:43:54 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc0VVJKNjNLWkMzRzc2REpHR1JERFNZRTNRNUxWV0UzQlBRWHxDMDc0RTUyNzdFNjZFODRDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc3M1lEUExERlZZVlMzS1NVNzRMUEs0RE9ZVkJQTEhYTFZTSHxEN0QyRDk3Q0VFQ0Q2MzZGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_upload_small_file.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_upload_small_file.yaml index 2910d465e04..9dff7030d3a 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_upload_small_file.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_blob_upload_small_file.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:40:28Z"}}' + "date": "2018-05-29T19:43:55Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:40:28Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:43:55Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:28 GMT'] + date: ['Tue, 29 May 2018 19:43:56 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:30 GMT'] + date: ['Tue, 29 May 2018 19:43:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/19646cb8-2ef9-4b86-9279-2180d8f05152?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/30f199be-ce60-4916-87c3-8e95cf18c806?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/19646cb8-2ef9-4b86-9279-2180d8f05152?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/30f199be-ce60-4916-87c3-8e95cf18c806?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:40:30.6623035Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:40:30.6623035Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:40:30.5841438Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:57.9291999Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:43:57.9291999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:43:57.8355029Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:48 GMT'] + date: ['Tue, 29 May 2018 19:44:15 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"RY/mCAyF9S44BU1ZNK1tlIIEwi+xTp3VQTHpALPKosSEh77HcLsywikVy7q6euJqvDWDtmDGxeCpR9QTPzJWsg==","permissions":"FULL"},{"keyName":"key2","value":"qVabhM7Hyg+Qa6DgGpZCVepkBIYJljZpNLssR8WbeWP5TsScWiErmj3q30dr/aiavhrR0G+Nt3r7y8GODYpPrw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"Mnrha13vZ4sOvACaC4c010lVtz9EZhD6naTwxw+t1R7yPMB7207KWsHmlXwqseGt1hYxrpv6QPU8z/nlc5hGeA==","permissions":"FULL"},{"keyName":"key2","value":"vUXBL2RJLllJaQquXOm4dg8fK0ujo/FjK+a0PnTrSK4tpXEQJveoznF8Rg2jbLo3VV66uL372u+7DNjG9I7u+Q==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:48 GMT'] + date: ['Tue, 29 May 2018 19:44:16 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"RY/mCAyF9S44BU1ZNK1tlIIEwi+xTp3VQTHpALPKosSEh77HcLsywikVy7q6euJqvDWDtmDGxeCpR9QTPzJWsg==","permissions":"FULL"},{"keyName":"key2","value":"qVabhM7Hyg+Qa6DgGpZCVepkBIYJljZpNLssR8WbeWP5TsScWiErmj3q30dr/aiavhrR0G+Nt3r7y8GODYpPrw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"Mnrha13vZ4sOvACaC4c010lVtz9EZhD6naTwxw+t1R7yPMB7207KWsHmlXwqseGt1hYxrpv6QPU8z/nlc5hGeA==","permissions":"FULL"},{"keyName":"key2","value":"vUXBL2RJLllJaQquXOm4dg8fK0ujo/FjK+a0PnTrSK4tpXEQJveoznF8Rg2jbLo3VV66uL372u+7DNjG9I7u+Q==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:40:49 GMT'] + date: ['Tue, 29 May 2018 19:44:17 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:50 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:18 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:40:49 GMT'] - etag: ['"0x8D5B9F42011E832"'] - last-modified: ['Mon, 14 May 2018 23:40:50 GMT'] + date: ['Tue, 29 May 2018 19:44:18 GMT'] + etag: ['"0x8D5C59C9150DAFB"'] + last-modified: ['Tue, 29 May 2018 19:44:18 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -174,15 +174,15 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:50 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:18 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:40:50 GMT'] + date: ['Tue, 29 May 2018 19:44:19 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-error-code: [BlobNotFound] @@ -220,9 +220,9 @@ interactions: Connection: [keep-alive] Content-Length: ['1024'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-type: [BlockBlob] - x-ms-date: ['Mon, 14 May 2018 23:40:50 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:44:19 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -230,9 +230,9 @@ interactions: body: {string: ''} headers: content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] - date: ['Mon, 14 May 2018 23:40:51 GMT'] - etag: ['"0x8D5B9F420853A10"'] - last-modified: ['Mon, 14 May 2018 23:40:51 GMT'] + date: ['Tue, 29 May 2018 19:44:19 GMT'] + etag: ['"0x8D5C59C9215F0C1"'] + last-modified: ['Tue, 29 May 2018 19:44:19 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -243,8 +243,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:51 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:20 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -255,12 +255,12 @@ interactions: content-length: ['1024'] content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:40:50 GMT'] - etag: ['"0x8D5B9F420853A10"'] - last-modified: ['Mon, 14 May 2018 23:40:51 GMT'] + date: ['Tue, 29 May 2018 19:44:19 GMT'] + etag: ['"0x8D5C59C9215F0C1"'] + last-modified: ['Tue, 29 May 2018 19:44:19 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:51 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:44:19 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -271,23 +271,23 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:51 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:20 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000004?restype=container&comp=list&maxresults=1 response: body: {string: "\uFEFF1blob000003Mon,\ - \ 14 May 2018 23:40:51 GMTMon, 14 May 2018\ - \ 23:40:51 GMT0x8D5B9F420853A101024application/octet-stream1blob000003Tue,\ + \ 29 May 2018 19:44:19 GMTTue, 29 May 2018\ + \ 19:44:19 GMT0x8D5C59C9215F0C11024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletrue"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:40:51 GMT'] + date: ['Tue, 29 May 2018 19:44:20 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -297,8 +297,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:52 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:21 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -309,12 +309,12 @@ interactions: content-length: ['1024'] content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:40:52 GMT'] - etag: ['"0x8D5B9F420853A10"'] - last-modified: ['Mon, 14 May 2018 23:40:51 GMT'] + date: ['Tue, 29 May 2018 19:44:21 GMT'] + etag: ['"0x8D5C59C9215F0C1"'] + last-modified: ['Tue, 29 May 2018 19:44:19 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:51 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:44:19 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -325,8 +325,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:52 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:22 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -337,12 +337,12 @@ interactions: content-length: ['1024'] content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:40:52 GMT'] - etag: ['"0x8D5B9F420853A10"'] - last-modified: ['Mon, 14 May 2018 23:40:51 GMT'] + date: ['Tue, 29 May 2018 19:44:22 GMT'] + etag: ['"0x8D5C59C9215F0C1"'] + last-modified: ['Tue, 29 May 2018 19:44:19 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:51 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:44:19 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -354,19 +354,19 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] + 10) AZURECLI/2.0.34] x-ms-blob-content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] x-ms-blob-content-type: [application/test-content] - x-ms-date: ['Mon, 14 May 2018 23:40:53 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:44:22 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003?comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:40:52 GMT'] - etag: ['"0x8D5B9F421C9696E"'] - last-modified: ['Mon, 14 May 2018 23:40:53 GMT'] + date: ['Tue, 29 May 2018 19:44:22 GMT'] + etag: ['"0x8D5C59C93F6EF2B"'] + last-modified: ['Tue, 29 May 2018 19:44:23 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -376,8 +376,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:53 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:23 GMT'] x-ms-version: ['2017-11-09'] method: HEAD uri: https://clitest000002.blob.core.windows.net/cont000004/blob000003 @@ -388,12 +388,12 @@ interactions: content-length: ['1024'] content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] content-type: [application/test-content] - date: ['Mon, 14 May 2018 23:40:52 GMT'] - etag: ['"0x8D5B9F421C9696E"'] - last-modified: ['Mon, 14 May 2018 23:40:53 GMT'] + date: ['Tue, 29 May 2018 19:44:24 GMT'] + etag: ['"0x8D5C59C93F6EF2B"'] + last-modified: ['Tue, 29 May 2018 19:44:23 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:51 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:44:19 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -404,8 +404,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:53 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:24 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -414,7 +414,7 @@ interactions: \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:40:53 GMT'] + date: ['Tue, 29 May 2018 19:44:24 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -424,8 +424,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:54 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:24 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-11-09'] method: GET @@ -464,13 +464,13 @@ interactions: content-length: ['1024'] content-range: [bytes 0-1023/1024] content-type: [application/test-content] - date: ['Mon, 14 May 2018 23:40:54 GMT'] - etag: ['"0x8D5B9F421C9696E"'] - last-modified: ['Mon, 14 May 2018 23:40:53 GMT'] + date: ['Tue, 29 May 2018 19:44:25 GMT'] + etag: ['"0x8D5C59C93F6EF2B"'] + last-modified: ['Tue, 29 May 2018 19:44:23 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:51 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:44:19 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -481,8 +481,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:40:54 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:44:25 GMT'] x-ms-range: [bytes=10-499] x-ms-version: ['2017-11-09'] method: GET @@ -507,13 +507,13 @@ interactions: content-length: ['490'] content-range: [bytes 10-499/1024] content-type: [application/test-content] - date: ['Mon, 14 May 2018 23:40:55 GMT'] - etag: ['"0x8D5B9F421C9696E"'] - last-modified: ['Mon, 14 May 2018 23:40:53 GMT'] + date: ['Tue, 29 May 2018 19:44:25 GMT'] + etag: ['"0x8D5C59C93F6EF2B"'] + last-modified: ['Tue, 29 May 2018 19:44:23 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] x-ms-blob-content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==] x-ms-blob-type: [BlockBlob] - x-ms-creation-time: ['Mon, 14 May 2018 23:40:51 GMT'] + x-ms-creation-time: ['Tue, 29 May 2018 19:44:19 GMT'] x-ms-lease-state: [available] x-ms-lease-status: [unlocked] x-ms-server-encrypted: ['true'] @@ -528,9 +528,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -539,9 +539,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:40:55 GMT'] + date: ['Tue, 29 May 2018 19:44:26 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkcySE5CVUdQRkpNNEQ2R0pSSDZPUzdCUDVPUUQ3SFFXR1hMVXxFNEI0QzhCQzJEMDdGMjQ1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdURFVJTjM0UVBFSlk2QkFEVVk2TkxGWjZXS1BUTFJGVVVNWnxGM0YwOEM1MUNFNjA4MjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_container_acl_scenarios.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_container_acl_scenarios.yaml index 7f07b92c910..589607509c9 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_container_acl_scenarios.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_container_acl_scenarios.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:00Z"}}' + "date": "2018-05-29T19:38:16Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:00Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:16Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:02 GMT'] + date: ['Tue, 29 May 2018 19:38:19 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:03 GMT'] + date: ['Tue, 29 May 2018 19:38:20 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/891e78bb-5481-46e0-be6c-51061542f7be?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/5a3b8f8e-02e6-4a3a-8a3a-d1d70f74083b?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/891e78bb-5481-46e0-be6c-51061542f7be?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/5a3b8f8e-02e6-4a3a-8a3a-d1d70f74083b?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:03.5837547Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:03.5837547Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:03.5524977Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:20.8402338Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:20.8402338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:20.4339479Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:20 GMT'] + date: ['Tue, 29 May 2018 19:38:38 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"rwAa8g52R9p5h/SVH1tGvMW9aFfElSNuV0lZWbkj0rGr1jyXAOHhQVwsUfL6nd0PZIFraKEgryefMlpZA9u+oA==","permissions":"FULL"},{"keyName":"key2","value":"fT+glLTqzerI64b84lzgNAHQHUzxh2ovhrbVZUPANCelxn8JUa3eIkDqn2SFL6LQYaqPylw0xdOCQJdn+Wev2w==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"3RInveRJXMQpdTHjt8FLba5Hhd5Tv2SsObKNXCmSm0Yqdmr+WfQEY/gyKcERr1hXQTPPEs0uIWIXJkPyQGX2Aw==","permissions":"FULL"},{"keyName":"key2","value":"+upKKIakjqrnIighDmGg9p27TPbjpMJWr431BGw5AkCTUH2Uuv8c6qVJCFkOObXiuojKDCRfdoSWwxJzyGCYGw==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:21 GMT'] + date: ['Tue, 29 May 2018 19:38:39 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"rwAa8g52R9p5h/SVH1tGvMW9aFfElSNuV0lZWbkj0rGr1jyXAOHhQVwsUfL6nd0PZIFraKEgryefMlpZA9u+oA==","permissions":"FULL"},{"keyName":"key2","value":"fT+glLTqzerI64b84lzgNAHQHUzxh2ovhrbVZUPANCelxn8JUa3eIkDqn2SFL6LQYaqPylw0xdOCQJdn+Wev2w==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"3RInveRJXMQpdTHjt8FLba5Hhd5Tv2SsObKNXCmSm0Yqdmr+WfQEY/gyKcERr1hXQTPPEs0uIWIXJkPyQGX2Aw==","permissions":"FULL"},{"keyName":"key2","value":"+upKKIakjqrnIighDmGg9p27TPbjpMJWr431BGw5AkCTUH2Uuv8c6qVJCFkOObXiuojKDCRfdoSWwxJzyGCYGw==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:22 GMT'] + date: ['Tue, 29 May 2018 19:38:40 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:23 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:40 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:23 GMT'] - etag: ['"0x8D5B9F35D8039DB"'] - last-modified: ['Mon, 14 May 2018 23:35:23 GMT'] + date: ['Tue, 29 May 2018 19:38:40 GMT'] + etag: ['"0x8D5C59BC8055BDD"'] + last-modified: ['Tue, 29 May 2018 19:38:40 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -174,8 +174,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:24 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:41 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -184,9 +184,9 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:23 GMT'] - etag: ['"0x8D5B9F35D8039DB"'] - last-modified: ['Mon, 14 May 2018 23:35:23 GMT'] + date: ['Tue, 29 May 2018 19:38:40 GMT'] + etag: ['"0x8D5C59BC8055BDD"'] + last-modified: ['Tue, 29 May 2018 19:38:40 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -196,8 +196,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:24 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:41 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -206,9 +206,9 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:24 GMT'] - etag: ['"0x8D5B9F35D8039DB"'] - last-modified: ['Mon, 14 May 2018 23:35:23 GMT'] + date: ['Tue, 29 May 2018 19:38:41 GMT'] + etag: ['"0x8D5C59BC8055BDD"'] + last-modified: ['Tue, 29 May 2018 19:38:40 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -221,17 +221,17 @@ interactions: Connection: [keep-alive] Content-Length: ['184'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:24 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:41 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:24 GMT'] - etag: ['"0x8D5B9F35DEE446B"'] - last-modified: ['Mon, 14 May 2018 23:35:24 GMT'] + date: ['Tue, 29 May 2018 19:38:41 GMT'] + etag: ['"0x8D5C59BC8826D15"'] + last-modified: ['Tue, 29 May 2018 19:38:41 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -241,8 +241,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:24 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:41 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -250,9 +250,9 @@ interactions: body: {string: "\uFEFFtest1l"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:24 GMT'] - etag: ['"0x8D5B9F35DEE446B"'] - last-modified: ['Mon, 14 May 2018 23:35:24 GMT'] + date: ['Tue, 29 May 2018 19:38:41 GMT'] + etag: ['"0x8D5C59BC8826D15"'] + last-modified: ['Tue, 29 May 2018 19:38:41 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -265,17 +265,17 @@ interactions: Connection: [keep-alive] Content-Length: ['296'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:25 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:42 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:24 GMT'] - etag: ['"0x8D5B9F35E28EAB4"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] + etag: ['"0x8D5C59BC8CB6A0C"'] + last-modified: ['Tue, 29 May 2018 19:38:42 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -285,8 +285,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:25 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:42 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -294,9 +294,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Z"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:24 GMT'] - etag: ['"0x8D5B9F35E28EAB4"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] + etag: ['"0x8D5C59BC8CB6A0C"'] + last-modified: ['Tue, 29 May 2018 19:38:42 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -309,17 +309,17 @@ interactions: Connection: [keep-alive] Content-Length: ['413'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:25 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:42 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:24 GMT'] - etag: ['"0x8D5B9F35E5C151F"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] + etag: ['"0x8D5C59BC9041074"'] + last-modified: ['Tue, 29 May 2018 19:38:42 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -329,8 +329,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:25 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:42 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -338,9 +338,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Z"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:25 GMT'] - etag: ['"0x8D5B9F35E5C151F"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] + etag: ['"0x8D5C59BC9041074"'] + last-modified: ['Tue, 29 May 2018 19:38:42 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -353,17 +353,17 @@ interactions: Connection: [keep-alive] Content-Length: ['591'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:25 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:43 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:25 GMT'] - etag: ['"0x8D5B9F35E93D488"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] + etag: ['"0x8D5C59BC947672F"'] + last-modified: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -373,8 +373,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:25 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:43 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -382,9 +382,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:25 GMT'] - etag: ['"0x8D5B9F35E93D488"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] + etag: ['"0x8D5C59BC947672F"'] + last-modified: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -394,8 +394,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:43 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -403,9 +403,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:26 GMT'] - etag: ['"0x8D5B9F35E93D488"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] + etag: ['"0x8D5C59BC947672F"'] + last-modified: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -415,8 +415,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:43 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -424,9 +424,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:26 GMT'] - etag: ['"0x8D5B9F35E93D488"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] + etag: ['"0x8D5C59BC947672F"'] + last-modified: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -436,8 +436,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -445,9 +445,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:27 GMT'] - etag: ['"0x8D5B9F35E93D488"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BC947672F"'] + last-modified: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -457,8 +457,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -466,9 +466,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:26 GMT'] - etag: ['"0x8D5B9F35E93D488"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BC947672F"'] + last-modified: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -478,8 +478,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -487,9 +487,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:27 GMT'] - etag: ['"0x8D5B9F35E93D488"'] - last-modified: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BC947672F"'] + last-modified: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -502,17 +502,17 @@ interactions: Connection: [keep-alive] Content-Length: ['597'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:27 GMT'] - etag: ['"0x8D5B9F35FB6C992"'] - last-modified: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BCAA5B00B"'] + last-modified: ['Tue, 29 May 2018 19:38:45 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -522,8 +522,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -531,9 +531,9 @@ interactions: body: {string: "\uFEFFtest1rtest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:27 GMT'] - etag: ['"0x8D5B9F35FB6C992"'] - last-modified: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BCAA5B00B"'] + last-modified: ['Tue, 29 May 2018 19:38:45 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -543,8 +543,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -552,9 +552,9 @@ interactions: body: {string: "\uFEFFtest1rtest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:28 GMT'] - etag: ['"0x8D5B9F35FB6C992"'] - last-modified: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] + etag: ['"0x8D5C59BCAA5B00B"'] + last-modified: ['Tue, 29 May 2018 19:38:45 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -567,17 +567,17 @@ interactions: Connection: [keep-alive] Content-Length: ['491'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:46 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:28 GMT'] - etag: ['"0x8D5B9F360264863"'] - last-modified: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] + etag: ['"0x8D5C59BCB2B72B7"'] + last-modified: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -587,8 +587,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:46 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=acl @@ -596,9 +596,9 @@ interactions: body: {string: "\uFEFFtest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:28 GMT'] - etag: ['"0x8D5B9F360264863"'] - last-modified: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] + etag: ['"0x8D5C59BCB2B72B7"'] + last-modified: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -612,9 +612,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -623,9 +623,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:29 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1RUxZRTVJT0Y1R1FPSlc2T0dTVURPR0hORFpFVVVDV1A0Q3w1OTg3NzdEQTg1Q0U5ODhELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdYSlBGQkJKWUZCUUVGWUNTNVBGT0FSQjRYS0tXTUFSMjNVV3w5MzZENEYxOTkyNDg2RkJCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_cors_scenario.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_cors_scenario.yaml index 0ff8f2a5f70..715af3e5823 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_cors_scenario.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_cors_scenario.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:03Z"}}' + "date": "2018-05-29T19:38:20Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:03Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:20Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:05 GMT'] + date: ['Tue, 29 May 2018 19:38:21 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:08 GMT'] + date: ['Tue, 29 May 2018 19:38:23 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b6542236-76f9-4674-9882-728dacd70aa0?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/cecba5fa-23de-4d50-a7ae-7f6f8e2d2abc?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b6542236-76f9-4674-9882-728dacd70aa0?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/cecba5fa-23de-4d50-a7ae-7f6f8e2d2abc?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:08.5293957Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:08.5293957Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:08.4812533Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.1684294Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.1684294Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:23.9496266Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:41 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"CJ6MAO38fGi4aJ4XlFnw9vF6oUnBXMpyeHd2/VMd8VfUGzD8a1imSi2jU5qQA0fvgew/I14/H0mgC0ylaFHnWw==","permissions":"FULL"},{"keyName":"key2","value":"Rlefil8n7yeip8ADf2kgQ4XbgVZP8swlBkoy/soxg21XqoA0HB3kPE8aCT8loR81dn5j0hyO4urNsqVsECzUpg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"vSftVi2WliSaaw1ZyeHBNNPiowppG2VJeyjxBtZZG2X6EMgxPxM/Z/niipngMa/t1ECsyihmvr0rT6GM85lYBg==","permissions":"FULL"},{"keyName":"key2","value":"R45hs8d54fe109R28xKsadvCUFeLEpIX9gULMdk7r/wJZT9SQDL1ZA0EFQ4yxA6zUyeb2+kw0gXL0Ox2HVZvig==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"CJ6MAO38fGi4aJ4XlFnw9vF6oUnBXMpyeHd2/VMd8VfUGzD8a1imSi2jU5qQA0fvgew/I14/H0mgC0ylaFHnWw==","permissions":"FULL"},{"keyName":"key2","value":"Rlefil8n7yeip8ADf2kgQ4XbgVZP8swlBkoy/soxg21XqoA0HB3kPE8aCT8loR81dn5j0hyO4urNsqVsECzUpg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"vSftVi2WliSaaw1ZyeHBNNPiowppG2VJeyjxBtZZG2X6EMgxPxM/Z/niipngMa/t1ECsyihmvr0rT6GM85lYBg==","permissions":"FULL"},{"keyName":"key2","value":"R45hs8d54fe109R28xKsadvCUFeLEpIX9gULMdk7r/wJZT9SQDL1ZA0EFQ4yxA6zUyeb2+kw0gXL0Ox2HVZvig==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -148,33 +148,13 @@ interactions: x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} -- request: - body: null - headers: - Connection: [keep-alive] - User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] - x-ms-version: ['2017-07-29'] - method: GET - uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties - response: - body: {string: "\uFEFF1.0truetruetrue71.0falsefalse"} - headers: - content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:27 GMT'] - server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - transfer-encoding: [chunked] - x-ms-version: ['2017-07-29'] - status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:43 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties @@ -184,7 +164,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -194,8 +174,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -204,39 +184,18 @@ interactions: \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} -- request: - body: null - headers: - Connection: [keep-alive] - DataServiceVersion: [3.0;NetFx] - MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] - x-ms-version: ['2017-04-17'] - method: GET - uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties - response: - body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} - headers: - content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:28 GMT'] - server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] - transfer-encoding: [chunked] - x-ms-version: ['2017-04-17'] - status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties @@ -245,40 +204,39 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] status: {code: 200, message: OK} - request: - body: ' - - http://example.comPOST60' + body: null headers: Connection: [keep-alive] - Content-Length: ['287'] - User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:29 GMT'] - x-ms-version: ['2017-07-29'] - method: PUT - uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties + DataServiceVersion: [3.0;NetFx] + MaxDataServiceVersion: ['3.0'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] + x-ms-version: ['2017-04-17'] + method: GET + uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties response: - body: {string: ''} + body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalse"} headers: - date: ['Mon, 14 May 2018 23:35:29 GMT'] - server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] + content-type: [application/xml] + date: ['Tue, 29 May 2018 19:38:45 GMT'] + server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-version: ['2017-07-29'] - status: {code: 202, message: Accepted} + x-ms-version: ['2017-04-17'] + status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:30 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties @@ -288,7 +246,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:30 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -302,15 +260,15 @@ interactions: Connection: [keep-alive] Content-Length: ['287'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:30 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -320,8 +278,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:31 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -329,8 +287,9 @@ interactions: body: {string: "\uFEFF1.0falsefalsefalsefalse1.0truetruetrue71.0falsefalsefalse"} headers: + connection: [close] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:47 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -344,15 +303,15 @@ interactions: Connection: [keep-alive] Content-Length: ['287'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:31 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -362,29 +321,50 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:32 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0truetruetrue71.0falsefalsePOSThttp://example.com60"} + body: {string: "\uFEFF1.0truetruetrue71.0falsefalse"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:47 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - vary: [Origin] x-ms-version: ['2017-07-29'] status: {code: 200, message: OK} +- request: + body: ' + + http://example.comPOST60' + headers: + Connection: [keep-alive] + Content-Length: ['287'] + User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] + x-ms-version: ['2017-07-29'] + method: PUT + uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties + response: + body: {string: ''} + headers: + date: ['Tue, 29 May 2018 19:38:47 GMT'] + server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] + transfer-encoding: [chunked] + x-ms-version: ['2017-07-29'] + status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:32 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties @@ -394,7 +374,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:32 GMT'] + date: ['Tue, 29 May 2018 19:38:47 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] vary: [Origin] @@ -405,8 +385,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:32 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -415,20 +395,41 @@ interactions: \ />60false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] vary: [Origin] x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} +- request: + body: null + headers: + Connection: [keep-alive] + User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] + x-ms-version: ['2017-07-29'] + method: GET + uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties + response: + body: {string: "\uFEFF1.0truetruetrue71.0falsefalsePOSThttp://example.com60"} + headers: + content-type: [application/xml] + date: ['Tue, 29 May 2018 19:38:48 GMT'] + server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] + transfer-encoding: [chunked] + vary: [Origin] + x-ms-version: ['2017-07-29'] + status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:32 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties @@ -437,7 +438,7 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:32 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -445,72 +446,52 @@ interactions: - request: body: ' - ' - headers: - Connection: [keep-alive] - Content-Length: ['100'] - User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:33 GMT'] - x-ms-version: ['2017-07-29'] - method: PUT - uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties - response: - body: {string: ''} - headers: - date: ['Mon, 14 May 2018 23:35:33 GMT'] - server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - transfer-encoding: [chunked] - x-ms-version: ['2017-07-29'] - status: {code: 202, message: Accepted} -- request: - body: ' - ' headers: Connection: [keep-alive] Content-Length: ['100'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:34 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:33 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] status: {code: 202, message: Accepted} - request: - body: null + body: ' + + ' headers: Connection: [keep-alive] + Content-Length: ['100'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:34 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-07-29'] - method: GET + method: PUT uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0truetruetrue71.0falsefalse"} + body: {string: ''} headers: - content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:33 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] - status: {code: 200, message: OK} + status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:34 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties @@ -520,7 +501,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:34 GMT'] + date: ['Tue, 29 May 2018 19:38:49 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] vary: [Origin] @@ -531,8 +512,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:35 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -541,19 +522,39 @@ interactions: \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:35 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} +- request: + body: null + headers: + Connection: [keep-alive] + User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] + x-ms-version: ['2017-07-29'] + method: GET + uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties + response: + body: {string: "\uFEFF1.0truetruetrue71.0falsefalse"} + headers: + content-type: [application/xml] + date: ['Tue, 29 May 2018 19:38:49 GMT'] + server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] + transfer-encoding: [chunked] + x-ms-version: ['2017-07-29'] + status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:35 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties @@ -562,7 +563,7 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:35 GMT'] + date: ['Tue, 29 May 2018 19:38:49 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -570,41 +571,20 @@ interactions: - request: body: ' - ' - headers: - Connection: [keep-alive] - Content-Length: ['100'] - User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:35 GMT'] - x-ms-version: ['2017-07-29'] - method: PUT - uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties - response: - body: {string: ''} - headers: - date: ['Mon, 14 May 2018 23:35:35 GMT'] - server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - transfer-encoding: [chunked] - x-ms-version: ['2017-07-29'] - status: {code: 202, message: Accepted} -- request: - body: ' - ' headers: Connection: [keep-alive] Content-Length: ['100'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:35 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -617,46 +597,47 @@ interactions: Connection: [keep-alive] Content-Length: ['100'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:36 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] status: {code: 202, message: Accepted} - request: - body: null + body: ' + + ' headers: Connection: [keep-alive] + Content-Length: ['100'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:37 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:51 GMT'] x-ms-version: ['2017-07-29'] - method: GET + method: PUT uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties response: - body: {string: "\uFEFF1.0truetruetrue71.0falsefalse"} + body: {string: ''} headers: - content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] - status: {code: 200, message: OK} + status: {code: 202, message: Accepted} - request: body: null headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:37 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties @@ -666,7 +647,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -676,8 +657,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:37 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties @@ -686,19 +667,39 @@ interactions: \ />false"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:51 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] status: {code: 200, message: OK} +- request: + body: null + headers: + Connection: [keep-alive] + User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] + x-ms-version: ['2017-07-29'] + method: GET + uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties + response: + body: {string: "\uFEFF1.0truetruetrue71.0falsefalse"} + headers: + content-type: [application/xml] + date: ['Tue, 29 May 2018 19:38:52 GMT'] + server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] + transfer-encoding: [chunked] + x-ms-version: ['2017-07-29'] + status: {code: 200, message: OK} - request: body: null headers: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:37 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:53 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties @@ -707,7 +708,7 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:37 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -721,9 +722,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -732,9 +733,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:38 GMT'] + date: ['Tue, 29 May 2018 19:38:54 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdEWUdTWllQNzc1QVM2UE1OWFlEWDRPRTJBN0pOSkQzSEVKV3w0NERGNjI2MDBBOUE1RDIwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdWVFNBUUhRTzRBS1NVVUZFM0tVRUNSSVpRVllDN0FDQU9INHw1M0I0NkM1RDcxNzlCRTI4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml index 8b42a8815f8..bbdb242bedf 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_create_default_sku.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-05-14T23:40:58Z"}}' + "automation", "date": "2018-05-29T19:44:27Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['118'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:40:58Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:44:27Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:59 GMT'] + date: ['Tue, 29 May 2018 19:44:28 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 201, message: Created} - request: body: null @@ -36,19 +36,19 @@ interactions: CommandName: [storage account create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:40:58Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:44:27Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:40:59 GMT'] + date: ['Tue, 29 May 2018 19:44:29 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -65,26 +65,26 @@ interactions: Connection: [keep-alive] Content-Length: ['135'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:41:01 GMT'] + date: ['Tue, 29 May 2018 19:44:31 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/ed334863-d14d-4474-bbaf-c840fd17a026?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/7a485de2-5ef2-4a19-bc67-36a04eda3392?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1195'] status: {code: 202, message: Accepted} - request: body: null @@ -93,17 +93,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/ed334863-d14d-4474-bbaf-c840fd17a026?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/7a485de2-5ef2-4a19-bc67-36a04eda3392?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:41:01.2400960Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:41:01.2400960Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:41:01.1463308Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:44:31.2398735Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:44:31.2398735Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:44:31.1773699Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://cli000002-secondary.blob.core.windows.net/","queue":"https://cli000002-secondary.queue.core.windows.net/","table":"https://cli000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1570'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:41:18 GMT'] + date: ['Tue, 29 May 2018 19:44:48 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -122,9 +122,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -133,12 +133,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:41:20 GMT'] + date: ['Tue, 29 May 2018 19:44:50 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdYWkZPSE4ySlZFWjRWR0w3NkxVS0tXMkpHTE1XMkE2RDMzMnw2NThCMEY5MzZCQzI2MEFFLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdVUkxMNDJJT0lPUzdLUlBLN1pNTzU2VUZXVERZUzNSSUNWRHw5MTM3MkU3QTFGNDdFQUY5LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14997'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_file_copy_scenario.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_file_copy_scenario.yaml index 86511f236d9..956db3be5ce 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_file_copy_scenario.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_file_copy_scenario.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:03Z"}}' + "date": "2018-05-29T19:38:21Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:03Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:21Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:05 GMT'] + date: ['Tue, 29 May 2018 19:38:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:07 GMT'] + date: ['Tue, 29 May 2018 19:38:24 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/3d1065a5-42ad-46ea-9eff-c4292fa773fc?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/5f08d046-bdb4-4470-a318-b7367bc145e9?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/3d1065a5-42ad-46ea-9eff-c4292fa773fc?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/5f08d046-bdb4-4470-a318-b7367bc145e9?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.2602485Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.2602485Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:07.2134214Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.8090262Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.8090262Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:24.6996393Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:24 GMT'] + date: ['Tue, 29 May 2018 19:38:41 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"TNcIZgwyOHDvijLxRtLrLnWmwOGY/yMQZWQ7ZZSMpvQxjCpXhaExku41YorlvOYqG0FHLvYffiUm9ol+UcJuzw==","permissions":"FULL"},{"keyName":"key2","value":"lStznOXPasFTjnUJfypD9NIp/J9geRXGHSlkzsb6bii7zbPVnIojx6dAqGy4AyO6Md2Mv+XwrU3BweLlC5ST3A==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"hl0+750jGTpxGguugVdQ5aB9CwGAahKhlzqd36L80rf/3O4z489FrcKmlOd3DcF8ihuFd9AeZBiQiAnfrxjuUw==","permissions":"FULL"},{"keyName":"key2","value":"QdA/yDSFCaSHXbuC/V1umKpPyqXSGjF9h+wPvCe1iik8hu20QfJBniQEpops9AKUr+TxoU8uc6JaDvNU3+A7Fg==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"TNcIZgwyOHDvijLxRtLrLnWmwOGY/yMQZWQ7ZZSMpvQxjCpXhaExku41YorlvOYqG0FHLvYffiUm9ol+UcJuzw==","permissions":"FULL"},{"keyName":"key2","value":"lStznOXPasFTjnUJfypD9NIp/J9geRXGHSlkzsb6bii7zbPVnIojx6dAqGy4AyO6Md2Mv+XwrU3BweLlC5ST3A==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"hl0+750jGTpxGguugVdQ5aB9CwGAahKhlzqd36L80rf/3O4z489FrcKmlOd3DcF8ihuFd9AeZBiQiAnfrxjuUw==","permissions":"FULL"},{"keyName":"key2","value":"QdA/yDSFCaSHXbuC/V1umKpPyqXSGjF9h+wPvCe1iik8hu20QfJBniQEpops9AKUr+TxoU8uc6JaDvNU3+A7Fg==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:27 GMT'] - etag: ['"0x8D5B9F35F5BE1F0"'] - last-modified: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BCA377123"'] + last-modified: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -175,17 +175,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:44 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000004?restype=share response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:27 GMT'] - etag: ['"0x8D5B9F35FD162A4"'] - last-modified: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BCA73DFDA"'] + last-modified: ['Tue, 29 May 2018 19:38:44 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -196,17 +196,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003/dir1?restype=directory response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:28 GMT'] - etag: ['"0x8D5B9F360152205"'] - last-modified: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] + etag: ['"0x8D5C59BCAAA3C2A"'] + last-modified: ['Tue, 29 May 2018 19:38:45 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -218,17 +218,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000004/dir2?restype=directory response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:28 GMT'] - etag: ['"0x8D5B9F3605F7EFD"'] - last-modified: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] + etag: ['"0x8D5C59BCAE665B7"'] + last-modified: ['Tue, 29 May 2018 19:38:45 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -240,9 +240,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] + AZURECLI/2.0.34] x-ms-content-length: ['524288'] - x-ms-date: ['Mon, 14 May 2018 23:35:29 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:38:46 GMT'] x-ms-type: [file] x-ms-version: ['2017-07-29'] method: PUT @@ -250,9 +250,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:28 GMT'] - etag: ['"0x8D5B9F360A631C9"'] - last-modified: ['Mon, 14 May 2018 23:35:29 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] + etag: ['"0x8D5C59BCB45FC37"'] + last-modified: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -265,8 +265,8 @@ interactions: Connection: [keep-alive] Content-Length: ['524288'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:29 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:46 GMT'] x-ms-range: [bytes=0-524287] x-ms-version: ['2017-07-29'] x-ms-write: [update] @@ -276,9 +276,9 @@ interactions: body: {string: ''} headers: content-md5: [WQcVkAmdId1DmJZZIzi/lQ==] - date: ['Mon, 14 May 2018 23:35:29 GMT'] - etag: ['"0x8D5B9F360CEF6E4"'] - last-modified: ['Mon, 14 May 2018 23:35:29 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] + etag: ['"0x8D5C59BCB65E614"'] + last-modified: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -289,8 +289,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:29 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:46 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000003/dir1/source_file.txt @@ -299,9 +299,9 @@ interactions: headers: content-length: ['524288'] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:35:29 GMT'] - etag: ['"0x8D5B9F360CEF6E4"'] - last-modified: ['Mon, 14 May 2018 23:35:29 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] + etag: ['"0x8D5C59BCB65E614"'] + last-modified: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -313,21 +313,21 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-copy-source: ['https://clitest43ic4i5nspxaetnoz.file.core.windows.net/sharetdky6tk2wd2kodgcdvi/dir1/source_file.txt'] - x-ms-date: ['Mon, 14 May 2018 23:35:30 GMT'] + AZURECLI/2.0.34] + x-ms-copy-source: ['https://clitestnoihgzqsrptijn64v.file.core.windows.net/sharei3f5p3oyefjldaqdxji/dir1/source_file.txt'] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000004/dir2/destination_file.txt response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:30 GMT'] - etag: ['"0x8D5B9F361BFC448"'] - last-modified: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] + etag: ['"0x8D5C59BCCC6EEEC"'] + last-modified: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-copy-id: [2e3fb406-1193-4ab9-91b1-11b73abe5d0b] + x-ms-copy-id: [a3d87539-dfa4-4da5-adae-f8d8b99970a0] x-ms-copy-status: [success] x-ms-version: ['2017-07-29'] status: {code: 202, message: Accepted} @@ -336,8 +336,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:31 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000004/dir2/destination_file.txt @@ -346,14 +346,14 @@ interactions: headers: content-length: ['524288'] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:35:31 GMT'] - etag: ['"0x8D5B9F361BFC448"'] - last-modified: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] + etag: ['"0x8D5C59BCCC6EEEC"'] + last-modified: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-completion-time: ['Mon, 14 May 2018 23:35:31 GMT'] - x-ms-copy-id: [2e3fb406-1193-4ab9-91b1-11b73abe5d0b] + x-ms-copy-completion-time: ['Tue, 29 May 2018 19:38:48 GMT'] + x-ms-copy-id: [a3d87539-dfa4-4da5-adae-f8d8b99970a0] x-ms-copy-progress: [524288/524288] - x-ms-copy-source: ['https://clitest43ic4i5nspxaetnoz.file.core.windows.net/sharetdky6tk2wd2kodgcdvi/dir1/source_file.txt'] + x-ms-copy-source: ['https://clitestnoihgzqsrptijn64v.file.core.windows.net/sharei3f5p3oyefjldaqdxji/dir1/source_file.txt'] x-ms-copy-status: [success] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -365,21 +365,21 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-copy-source: ['https://clitest43ic4i5nspxaetnoz.file.core.windows.net/sharetdky6tk2wd2kodgcdvi/dir1/source_file.txt'] - x-ms-date: ['Mon, 14 May 2018 23:35:31 GMT'] + AZURECLI/2.0.34] + x-ms-copy-source: ['https://clitestnoihgzqsrptijn64v.file.core.windows.net/sharei3f5p3oyefjldaqdxji/dir1/source_file.txt'] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000004/dir2/destination_file.txt response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:32 GMT'] - etag: ['"0x8D5B9F362F76B90"'] - last-modified: ['Mon, 14 May 2018 23:35:33 GMT'] + date: ['Tue, 29 May 2018 19:38:49 GMT'] + etag: ['"0x8D5C59BCD7A59FA"'] + last-modified: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-copy-id: [74f3c57f-f907-4196-9b60-149fa36749ca] + x-ms-copy-id: [94d28d98-bd63-446f-bc95-2f0bd82e43c2] x-ms-copy-status: [success] x-ms-version: ['2017-07-29'] status: {code: 202, message: Accepted} @@ -388,8 +388,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:33 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000004/dir2/destination_file.txt @@ -398,14 +398,14 @@ interactions: headers: content-length: ['524288'] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:35:32 GMT'] - etag: ['"0x8D5B9F362F76B90"'] - last-modified: ['Mon, 14 May 2018 23:35:33 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] + etag: ['"0x8D5C59BCD7A59FA"'] + last-modified: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] - x-ms-copy-completion-time: ['Mon, 14 May 2018 23:35:33 GMT'] - x-ms-copy-id: [74f3c57f-f907-4196-9b60-149fa36749ca] + x-ms-copy-completion-time: ['Tue, 29 May 2018 19:38:49 GMT'] + x-ms-copy-id: [94d28d98-bd63-446f-bc95-2f0bd82e43c2] x-ms-copy-progress: [524288/524288] - x-ms-copy-source: ['https://clitest43ic4i5nspxaetnoz.file.core.windows.net/sharetdky6tk2wd2kodgcdvi/dir1/source_file.txt'] + x-ms-copy-source: ['https://clitestnoihgzqsrptijn64v.file.core.windows.net/sharei3f5p3oyefjldaqdxji/dir1/source_file.txt'] x-ms-copy-status: [success] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -417,21 +417,21 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-copy-source: ['https://clitest43ic4i5nspxaetnoz.file.core.windows.net/sharetdky6tk2wd2kodgcdvi/dir1%5Csource_file.txt'] - x-ms-date: ['Mon, 14 May 2018 23:35:33 GMT'] + AZURECLI/2.0.34] + x-ms-copy-source: ['https://clitestnoihgzqsrptijn64v.file.core.windows.net/sharei3f5p3oyefjldaqdxji/dir1%5Csource_file.txt'] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000004/dir2/destination_file.txt response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:34 GMT'] - etag: ['"0x8D5B9F3640BCCF0"'] - last-modified: ['Mon, 14 May 2018 23:35:34 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] + etag: ['"0x8D5C59BCE0D17A7"'] + last-modified: ['Tue, 29 May 2018 19:38:51 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] - x-ms-copy-id: [63dc1712-8876-4a99-8f6d-1684939cdeca] + x-ms-copy-id: [f95ecfd3-8b8d-4334-b158-75b974259f89] x-ms-copy-status: [success] x-ms-version: ['2017-07-29'] status: {code: 202, message: Accepted} @@ -444,9 +444,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -455,9 +455,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:35 GMT'] + date: ['Tue, 29 May 2018 19:38:51 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdEMkVDRkNRVVlPRFNJTFNERkYyTTNQTjNKRUpFTEtXRVVaVHxGQUJCMzRFQTZGRkVENzhGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc0QUVZT0lUSDdXWkVSNUpTTlBOSVdHUEpQSlM2NVRLTDUyNnwzM0FERUQ4NjczN0M0MjU2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_file_main_scenario.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_file_main_scenario.yaml index 4da446e066b..1928cece4ae 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_file_main_scenario.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_file_main_scenario.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:35Z"}}' + "date": "2018-05-29T19:38:52Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:35Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:52Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:37 GMT'] + date: ['Tue, 29 May 2018 19:38:53 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/f11da9d4-effe-4e1f-bbbf-cf23b4c8a455?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/bc5e2b52-a916-4153-b62d-33d30fb90158?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/f11da9d4-effe-4e1f-bbbf-cf23b4c8a455?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/bc5e2b52-a916-4153-b62d-33d30fb90158?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:38.1668346Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:38.1668346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:37.9637189Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:54.4654753Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:54.4654753Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:54.3248563Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"UyQIV4I+ztkCO5hAwvmOO/jARYimlK3AJokCiiSJ1BjzEinkwzY0yMgMPT9Vl83EZZcts9ivPRv9GxZ5DWYOuQ==","permissions":"FULL"},{"keyName":"key2","value":"kMiPiLXMHAsPvJRrk8xL/SPTga7s7BmAzfnywoFAIw5TkId5cPtd+g5ETchVfw9yPfkmgrtfzlhVHY/TvpCagw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"ECFfUqHcNF4uArXeNUQ1Cc+OgAi1K3OqflV6ztI5EP+W16xIvr3t0dsJ+7ZmUJiQDtm+TglgBqmo/+XwcqFBlQ==","permissions":"FULL"},{"keyName":"key2","value":"isXFdHKtvkbVpBgATwH8Rpgkhcv5jx6JAD4qmNqrFFtzd+5BY4IYC3H0jIymgBssrOZjNcqXKhhE4AIYGwjMKA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:56 GMT'] + date: ['Tue, 29 May 2018 19:39:12 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"UyQIV4I+ztkCO5hAwvmOO/jARYimlK3AJokCiiSJ1BjzEinkwzY0yMgMPT9Vl83EZZcts9ivPRv9GxZ5DWYOuQ==","permissions":"FULL"},{"keyName":"key2","value":"kMiPiLXMHAsPvJRrk8xL/SPTga7s7BmAzfnywoFAIw5TkId5cPtd+g5ETchVfw9yPfkmgrtfzlhVHY/TvpCagw==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"ECFfUqHcNF4uArXeNUQ1Cc+OgAi1K3OqflV6ztI5EP+W16xIvr3t0dsJ+7ZmUJiQDtm+TglgBqmo/+XwcqFBlQ==","permissions":"FULL"},{"keyName":"key2","value":"isXFdHKtvkbVpBgATwH8Rpgkhcv5jx6JAD4qmNqrFFtzd+5BY4IYC3H0jIymgBssrOZjNcqXKhhE4AIYGwjMKA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:13 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:57 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:14 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:56 GMT'] - etag: ['"0x8D5B9F3719F127B"'] - last-modified: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:13 GMT'] + etag: ['"0x8D5C59BDBE90035"'] + last-modified: ['Tue, 29 May 2018 19:39:14 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -175,8 +175,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:57 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:14 GMT'] x-ms-meta-cat: [hat] x-ms-meta-foo: [bar] x-ms-version: ['2017-07-29'] @@ -185,9 +185,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:57 GMT'] - etag: ['"0x8D5B9F371CEA9D3"'] - last-modified: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:14 GMT'] + etag: ['"0x8D5C59BDC2B841E"'] + last-modified: ['Tue, 29 May 2018 19:39:14 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -197,17 +197,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:58 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:14 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:57 GMT'] - etag: ['"0x8D5B9F3719F127B"'] - last-modified: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:14 GMT'] + etag: ['"0x8D5C59BDBE90035"'] + last-modified: ['Tue, 29 May 2018 19:39:14 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-share-quota: ['5120'] @@ -218,17 +218,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:58 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:15 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000004?restype=share&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:58 GMT'] - etag: ['"0x8D5B9F371CEA9D3"'] - last-modified: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDC2B841E"'] + last-modified: ['Tue, 29 May 2018 19:39:14 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-meta-cat: [hat] @@ -240,20 +240,20 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:58 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:15 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/?comp=list response: body: {string: "\uFEFFshare000004Mon,\ - \ 14 May 2018 23:35:58 GMT\"0x8D5B9F371CEA9D3\"5120share000003Mon,\ - \ 14 May 2018 23:35:57 GMT\"0x8D5B9F3719F127B\"5120share000003Tue,\ + \ 29 May 2018 19:39:14 GMT\"0x8D5C59BDBE90035\"5120share000004Tue,\ + \ 29 May 2018 19:39:14 GMT\"0x8D5C59BDC2B841E\"5120"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -264,8 +264,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:59 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:16 GMT'] x-ms-meta-a: [b] x-ms-meta-c: [d] x-ms-version: ['2017-07-29'] @@ -274,9 +274,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:58 GMT'] - etag: ['"0x8D5B9F372D34618"'] - last-modified: ['Mon, 14 May 2018 23:35:59 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDD34D90D"'] + last-modified: ['Tue, 29 May 2018 19:39:16 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -286,17 +286,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:00 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:16 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:59 GMT'] - etag: ['"0x8D5B9F372D34618"'] - last-modified: ['Mon, 14 May 2018 23:35:59 GMT'] + date: ['Tue, 29 May 2018 19:39:16 GMT'] + etag: ['"0x8D5C59BDD34D90D"'] + last-modified: ['Tue, 29 May 2018 19:39:16 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-meta-a: [b] @@ -309,17 +309,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:00 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:17 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:01 GMT'] - etag: ['"0x8D5B9F373F6E9D1"'] - last-modified: ['Mon, 14 May 2018 23:36:01 GMT'] + date: ['Tue, 29 May 2018 19:39:16 GMT'] + etag: ['"0x8D5C59BDDC1F93C"'] + last-modified: ['Tue, 29 May 2018 19:39:17 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -329,17 +329,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:02 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:17 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:01 GMT'] - etag: ['"0x8D5B9F373F6E9D1"'] - last-modified: ['Mon, 14 May 2018 23:36:01 GMT'] + date: ['Tue, 29 May 2018 19:39:16 GMT'] + etag: ['"0x8D5C59BDDC1F93C"'] + last-modified: ['Tue, 29 May 2018 19:39:17 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -350,8 +350,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:02 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:17 GMT'] x-ms-share-quota: ['3'] x-ms-version: ['2017-07-29'] method: PUT @@ -359,9 +359,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:02 GMT'] - etag: ['"0x8D5B9F374844E1E"'] - last-modified: ['Mon, 14 May 2018 23:36:02 GMT'] + date: ['Tue, 29 May 2018 19:39:17 GMT'] + etag: ['"0x8D5C59BDE306665"'] + last-modified: ['Tue, 29 May 2018 19:39:18 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -371,17 +371,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:02 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:18 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:02 GMT'] - etag: ['"0x8D5B9F374844E1E"'] - last-modified: ['Mon, 14 May 2018 23:36:02 GMT'] + date: ['Tue, 29 May 2018 19:39:18 GMT'] + etag: ['"0x8D5C59BDE306665"'] + last-modified: ['Tue, 29 May 2018 19:39:18 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-share-quota: ['3'] @@ -393,9 +393,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] + AZURECLI/2.0.34] x-ms-content-length: ['131072'] - x-ms-date: ['Mon, 14 May 2018 23:36:03 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:39:19 GMT'] x-ms-type: [file] x-ms-version: ['2017-07-29'] method: PUT @@ -403,9 +403,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:02 GMT'] - etag: ['"0x8D5B9F37516A46C"'] - last-modified: ['Mon, 14 May 2018 23:36:03 GMT'] + date: ['Tue, 29 May 2018 19:39:18 GMT'] + etag: ['"0x8D5C59BDED8DC05"'] + last-modified: ['Tue, 29 May 2018 19:39:19 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -3866,8 +3866,8 @@ interactions: Connection: [keep-alive] Content-Length: ['131072'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:03 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:19 GMT'] x-ms-range: [bytes=0-131071] x-ms-version: ['2017-07-29'] x-ms-write: [update] @@ -3877,9 +3877,9 @@ interactions: body: {string: ''} headers: content-md5: [DfvoqkwgtS4bi/PLbL3xkw==] - date: ['Mon, 14 May 2018 23:36:02 GMT'] - etag: ['"0x8D5B9F3754165B4"'] - last-modified: ['Mon, 14 May 2018 23:36:03 GMT'] + date: ['Tue, 29 May 2018 19:39:18 GMT'] + etag: ['"0x8D5C59BDEF5449B"'] + last-modified: ['Tue, 29 May 2018 19:39:19 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -3890,8 +3890,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:04 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:19 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin @@ -3900,9 +3900,9 @@ interactions: headers: content-length: ['131072'] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:36:04 GMT'] - etag: ['"0x8D5B9F3754165B4"'] - last-modified: ['Mon, 14 May 2018 23:36:03 GMT'] + date: ['Tue, 29 May 2018 19:39:19 GMT'] + etag: ['"0x8D5C59BDEF5449B"'] + last-modified: ['Tue, 29 May 2018 19:39:19 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -3913,8 +3913,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:04 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:20 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-07-29'] method: GET @@ -7468,9 +7468,9 @@ interactions: content-length: ['131072'] content-range: [bytes 0-131071/131072] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:36:04 GMT'] - etag: ['"0x8D5B9F3754165B4"'] - last-modified: ['Mon, 14 May 2018 23:36:03 GMT'] + date: ['Tue, 29 May 2018 19:39:20 GMT'] + etag: ['"0x8D5C59BDEF5449B"'] + last-modified: ['Tue, 29 May 2018 19:39:19 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -7481,8 +7481,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:04 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:20 GMT'] x-ms-range: [bytes=0-511] x-ms-version: ['2017-07-29'] method: GET @@ -7507,9 +7507,9 @@ interactions: content-length: ['512'] content-range: [bytes 0-511/131072] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:36:03 GMT'] - etag: ['"0x8D5B9F3754165B4"'] - last-modified: ['Mon, 14 May 2018 23:36:03 GMT'] + date: ['Tue, 29 May 2018 19:39:20 GMT'] + etag: ['"0x8D5C59BDEF5449B"'] + last-modified: ['Tue, 29 May 2018 19:39:19 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -7521,18 +7521,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] + AZURECLI/2.0.34] x-ms-content-length: ['1234'] - x-ms-date: ['Mon, 14 May 2018 23:36:05 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:39:21 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin?comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:05 GMT'] - etag: ['"0x8D5B9F3767A93E2"'] - last-modified: ['Mon, 14 May 2018 23:36:05 GMT'] + date: ['Tue, 29 May 2018 19:39:21 GMT'] + etag: ['"0x8D5C59BE00C2915"'] + last-modified: ['Tue, 29 May 2018 19:39:21 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -7543,8 +7543,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:06 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:21 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin @@ -7553,9 +7553,9 @@ interactions: headers: content-length: ['1234'] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:36:05 GMT'] - etag: ['"0x8D5B9F3767A93E2"'] - last-modified: ['Mon, 14 May 2018 23:36:05 GMT'] + date: ['Tue, 29 May 2018 19:39:21 GMT'] + etag: ['"0x8D5C59BE00C2915"'] + last-modified: ['Tue, 29 May 2018 19:39:21 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -7567,8 +7567,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:06 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:21 GMT'] x-ms-meta-a: [b] x-ms-meta-c: [d] x-ms-version: ['2017-07-29'] @@ -7577,9 +7577,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:06 GMT'] - etag: ['"0x8D5B9F376F2E702"'] - last-modified: ['Mon, 14 May 2018 23:36:06 GMT'] + date: ['Tue, 29 May 2018 19:39:21 GMT'] + etag: ['"0x8D5C59BE09810BC"'] + last-modified: ['Tue, 29 May 2018 19:39:22 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -7590,17 +7590,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:06 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:22 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin?comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:06 GMT'] - etag: ['"0x8D5B9F376F2E702"'] - last-modified: ['Mon, 14 May 2018 23:36:06 GMT'] + date: ['Tue, 29 May 2018 19:39:22 GMT'] + etag: ['"0x8D5C59BE09810BC"'] + last-modified: ['Tue, 29 May 2018 19:39:22 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-meta-a: [b] @@ -7613,17 +7613,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:07 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:22 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin?comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:06 GMT'] - etag: ['"0x8D5B9F3776DAB9D"'] - last-modified: ['Mon, 14 May 2018 23:36:07 GMT'] + date: ['Tue, 29 May 2018 19:39:22 GMT'] + etag: ['"0x8D5C59BE127F103"'] + last-modified: ['Tue, 29 May 2018 19:39:23 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -7634,17 +7634,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:07 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:23 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin?comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:06 GMT'] - etag: ['"0x8D5B9F3776DAB9D"'] - last-modified: ['Mon, 14 May 2018 23:36:07 GMT'] + date: ['Tue, 29 May 2018 19:39:22 GMT'] + etag: ['"0x8D5C59BE127F103"'] + last-modified: ['Tue, 29 May 2018 19:39:23 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -7654,8 +7654,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:08 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:24 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=directory&comp=list @@ -7666,7 +7666,7 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:36:07 GMT'] + date: ['Tue, 29 May 2018 19:39:24 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -7676,8 +7676,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:08 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:24 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin @@ -7686,9 +7686,9 @@ interactions: headers: content-length: ['1234'] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:36:08 GMT'] - etag: ['"0x8D5B9F3776DAB9D"'] - last-modified: ['Mon, 14 May 2018 23:36:07 GMT'] + date: ['Tue, 29 May 2018 19:39:24 GMT'] + etag: ['"0x8D5C59BE127F103"'] + last-modified: ['Tue, 29 May 2018 19:39:23 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['false'] x-ms-type: [File] @@ -7700,18 +7700,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] + AZURECLI/2.0.34] x-ms-content-type: [test/type] - x-ms-date: ['Mon, 14 May 2018 23:36:08 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:39:25 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin?comp=properties response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:09 GMT'] - etag: ['"0x8D5B9F3786EF6BC"'] - last-modified: ['Mon, 14 May 2018 23:36:09 GMT'] + date: ['Tue, 29 May 2018 19:39:24 GMT'] + etag: ['"0x8D5C59BE284F05C"'] + last-modified: ['Tue, 29 May 2018 19:39:25 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -7722,8 +7722,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:09 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:25 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin @@ -7732,9 +7732,9 @@ interactions: headers: content-length: ['1234'] content-type: [test/type] - date: ['Mon, 14 May 2018 23:36:09 GMT'] - etag: ['"0x8D5B9F3786EF6BC"'] - last-modified: ['Mon, 14 May 2018 23:36:09 GMT'] + date: ['Tue, 29 May 2018 19:39:25 GMT'] + etag: ['"0x8D5C59BE284F05C"'] + last-modified: ['Tue, 29 May 2018 19:39:25 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['false'] x-ms-type: [File] @@ -7746,15 +7746,15 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:09 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:26 GMT'] x-ms-version: ['2017-07-29'] method: DELETE uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:10 GMT'] + date: ['Tue, 29 May 2018 19:39:26 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -7764,15 +7764,15 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:10 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:26 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000003/sample_file.bin response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:10 GMT'] + date: ['Tue, 29 May 2018 19:39:26 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-error-code: [ResourceNotFound] @@ -7784,17 +7784,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:10 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:27 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:10 GMT'] - etag: ['"0x8D5B9F3799DC2DD"'] - last-modified: ['Mon, 14 May 2018 23:36:11 GMT'] + date: ['Tue, 29 May 2018 19:39:27 GMT'] + etag: ['"0x8D5C59BE3A489AC"'] + last-modified: ['Tue, 29 May 2018 19:39:27 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -7805,8 +7805,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:11 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:27 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=directory&comp=list @@ -7817,7 +7817,7 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:36:10 GMT'] + date: ['Tue, 29 May 2018 19:39:26 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -7827,17 +7827,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:11 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:28 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:11 GMT'] - etag: ['"0x8D5B9F3799DC2DD"'] - last-modified: ['Mon, 14 May 2018 23:36:11 GMT'] + date: ['Tue, 29 May 2018 19:39:27 GMT'] + etag: ['"0x8D5C59BE3A489AC"'] + last-modified: ['Tue, 29 May 2018 19:39:27 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-server-encrypted: ['true'] @@ -7849,8 +7849,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:12 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:28 GMT'] x-ms-meta-a: [b] x-ms-meta-c: [d] x-ms-version: ['2017-07-29'] @@ -7859,9 +7859,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:11 GMT'] - etag: ['"0x8D5B9F37A5993CF"'] - last-modified: ['Mon, 14 May 2018 23:36:12 GMT'] + date: ['Tue, 29 May 2018 19:39:28 GMT'] + etag: ['"0x8D5C59BE4866E95"'] + last-modified: ['Tue, 29 May 2018 19:39:28 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -7872,17 +7872,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:12 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:28 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:12 GMT'] - etag: ['"0x8D5B9F37A5993CF"'] - last-modified: ['Mon, 14 May 2018 23:36:12 GMT'] + date: ['Tue, 29 May 2018 19:39:29 GMT'] + etag: ['"0x8D5C59BE4866E95"'] + last-modified: ['Tue, 29 May 2018 19:39:28 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-meta-a: [b] @@ -7894,17 +7894,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:13 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:29 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:12 GMT'] - etag: ['"0x8D5B9F37A5993CF"'] - last-modified: ['Mon, 14 May 2018 23:36:12 GMT'] + date: ['Tue, 29 May 2018 19:39:29 GMT'] + etag: ['"0x8D5C59BE4866E95"'] + last-modified: ['Tue, 29 May 2018 19:39:28 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-meta-a: [b] @@ -7918,17 +7918,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:13 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:30 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:13 GMT'] - etag: ['"0x8D5B9F37B1A47BA"'] - last-modified: ['Mon, 14 May 2018 23:36:13 GMT'] + date: ['Tue, 29 May 2018 19:39:30 GMT'] + etag: ['"0x8D5C59BE57835C7"'] + last-modified: ['Tue, 29 May 2018 19:39:30 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -7939,17 +7939,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:13 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:30 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:13 GMT'] - etag: ['"0x8D5B9F37B1A47BA"'] - last-modified: ['Mon, 14 May 2018 23:36:13 GMT'] + date: ['Tue, 29 May 2018 19:39:30 GMT'] + etag: ['"0x8D5C59BE57835C7"'] + last-modified: ['Tue, 29 May 2018 19:39:30 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -7960,9 +7960,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] + AZURECLI/2.0.34] x-ms-content-length: ['65536'] - x-ms-date: ['Mon, 14 May 2018 23:36:14 GMT'] + x-ms-date: ['Tue, 29 May 2018 19:39:30 GMT'] x-ms-type: [file] x-ms-version: ['2017-07-29'] method: PUT @@ -7970,9 +7970,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:14 GMT'] - etag: ['"0x8D5B9F37B9C3992"'] - last-modified: ['Mon, 14 May 2018 23:36:14 GMT'] + date: ['Tue, 29 May 2018 19:39:31 GMT'] + etag: ['"0x8D5C59BE60359F3"'] + last-modified: ['Tue, 29 May 2018 19:39:31 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -9708,8 +9708,8 @@ interactions: Connection: [keep-alive] Content-Length: ['65536'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:14 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:31 GMT'] x-ms-range: [bytes=0-65535] x-ms-version: ['2017-07-29'] x-ms-write: [update] @@ -9719,9 +9719,9 @@ interactions: body: {string: ''} headers: content-md5: [/Na8tWwWifzvKLV8IkdbrQ==] - date: ['Mon, 14 May 2018 23:36:14 GMT'] - etag: ['"0x8D5B9F37BB3211D"'] - last-modified: ['Mon, 14 May 2018 23:36:14 GMT'] + date: ['Tue, 29 May 2018 19:39:31 GMT'] + etag: ['"0x8D5C59BE61D50FB"'] + last-modified: ['Tue, 29 May 2018 19:39:31 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -9732,8 +9732,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:14 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:31 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000003/dir000005/testfile.txt @@ -9742,9 +9742,9 @@ interactions: headers: content-length: ['65536'] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:36:14 GMT'] - etag: ['"0x8D5B9F37BB3211D"'] - last-modified: ['Mon, 14 May 2018 23:36:14 GMT'] + date: ['Tue, 29 May 2018 19:39:31 GMT'] + etag: ['"0x8D5C59BE61D50FB"'] + last-modified: ['Tue, 29 May 2018 19:39:31 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -9755,8 +9755,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:15 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:32 GMT'] x-ms-range: [bytes=0-33554431] x-ms-version: ['2017-07-29'] method: GET @@ -11539,9 +11539,9 @@ interactions: content-length: ['65536'] content-range: [bytes 0-65535/65536] content-type: [application/octet-stream] - date: ['Mon, 14 May 2018 23:36:14 GMT'] - etag: ['"0x8D5B9F37BB3211D"'] - last-modified: ['Mon, 14 May 2018 23:36:14 GMT'] + date: ['Tue, 29 May 2018 19:39:31 GMT'] + etag: ['"0x8D5C59BE61D50FB"'] + last-modified: ['Tue, 29 May 2018 19:39:31 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-server-encrypted: ['true'] x-ms-type: [File] @@ -11552,8 +11552,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:15 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:32 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory&comp=list @@ -11564,7 +11564,7 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:36:15 GMT'] + date: ['Tue, 29 May 2018 19:39:32 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -11574,8 +11574,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:16 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:33 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=stats @@ -11583,7 +11583,7 @@ interactions: body: {string: "\uFEFF1"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:36:16 GMT'] + date: ['Tue, 29 May 2018 19:39:33 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -11594,15 +11594,15 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:16 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:33 GMT'] x-ms-version: ['2017-07-29'] method: DELETE uri: https://clitest000002.file.core.windows.net/share000003/dir000005/testfile.txt response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:16 GMT'] + date: ['Tue, 29 May 2018 19:39:33 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -11612,15 +11612,15 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:17 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:34 GMT'] x-ms-version: ['2017-07-29'] method: HEAD uri: https://clitest000002.file.core.windows.net/share000003/testfile.txt response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:16 GMT'] + date: ['Tue, 29 May 2018 19:39:34 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-error-code: [ResourceNotFound] @@ -11632,15 +11632,15 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:17 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:34 GMT'] x-ms-version: ['2017-07-29'] method: DELETE uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:17 GMT'] + date: ['Tue, 29 May 2018 19:39:34 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -11650,19 +11650,19 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:18 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:35 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/dir000005?restype=directory response: body: {string: "\uFEFFResourceNotFoundThe\ - \ specified resource does not exist.\nRequestId:34638243-d01a-00fc-32dc-ebbf20000000\n\ - Time:2018-05-14T23:36:18.2041997Z"} + \ specified resource does not exist.\nRequestId:7bc64b27-f01a-0012-1a84-f7fb37000000\n\ + Time:2018-05-29T19:39:35.7357443Z"} headers: content-length: ['223'] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:36:18 GMT'] + date: ['Tue, 29 May 2018 19:39:34 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] x-ms-error-code: [ResourceNotFound] x-ms-version: ['2017-07-29'] @@ -11673,8 +11673,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:18 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:36 GMT'] x-ms-meta-cat: [hat] x-ms-meta-foo: [bar] x-ms-version: ['2017-07-29'] @@ -11683,9 +11683,9 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:18 GMT'] - etag: ['"0x8D5B9F37E1D3E9A"'] - last-modified: ['Mon, 14 May 2018 23:36:18 GMT'] + date: ['Tue, 29 May 2018 19:39:35 GMT'] + etag: ['"0x8D5C59BE910BD7D"'] + last-modified: ['Tue, 29 May 2018 19:39:36 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-request-server-encrypted: ['true'] @@ -11696,17 +11696,17 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:18 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:36 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003/dir000006?restype=directory&comp=metadata response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:18 GMT'] - etag: ['"0x8D5B9F37E1D3E9A"'] - last-modified: ['Mon, 14 May 2018 23:36:18 GMT'] + date: ['Tue, 29 May 2018 19:39:36 GMT'] + etag: ['"0x8D5C59BE910BD7D"'] + last-modified: ['Tue, 29 May 2018 19:39:36 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-meta-cat: [hat] @@ -11719,15 +11719,15 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:19 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:37 GMT'] x-ms-version: ['2017-07-29'] method: DELETE uri: https://clitest000002.file.core.windows.net/share000003/dir000006?restype=directory response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:18 GMT'] + date: ['Tue, 29 May 2018 19:39:36 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -11738,15 +11738,15 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:19 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:37 GMT'] x-ms-version: ['2017-07-29'] method: DELETE uri: https://clitest000002.file.core.windows.net/share000003?restype=share response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:36:19 GMT'] + date: ['Tue, 29 May 2018 19:39:37 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -11760,9 +11760,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -11771,12 +11771,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:36:20 GMT'] + date: ['Tue, 29 May 2018 19:39:38 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdOQ1ZPSlBBTTdYVlFEN1FCRTJTTUhGUzZaSTdaUUNXQVkzRXwyMjIyN0UwQUQwMzg2N0Y1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdWUVFVRUJHV1NNQzVMWVJBTEFPWjJUUkRMNTIyUE9JQ1VLMnwwODg0NTEwRkQ3Q0JDNEExLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_immutability_policy.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_immutability_policy.yaml index 1005de1e567..7ef77610523 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_immutability_policy.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_immutability_policy.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus2euap", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-15T02:09:45Z"}}' + "date": "2018-05-29T19:38:14Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['115'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2018-05-15T02:09:45Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:14Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['389'] content-type: [application/json; charset=utf-8] - date: ['Tue, 15 May 2018 02:09:46 GMT'] + date: ['Tue, 29 May 2018 19:38:17 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['130'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Tue, 15 May 2018 02:09:49 GMT'] + date: ['Tue, 29 May 2018 19:38:19 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/ebb6fbf4-7a41-48f8-9a21-1a58a79c8339?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/64a1fc99-4bc7-4ba1-af00-e07527ae6a75?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/ebb6fbf4-7a41-48f8-9a21-1a58a79c8339?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/64a1fc99-4bc7-4ba1-af00-e07527ae6a75?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:09:49.3684695Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.5165939Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1241'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:07 GMT'] + date: ['Tue, 29 May 2018 19:38:37 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"V5Hr3+no4QBo3Y4Mj1/He5nYDBURm/sHqlkd04lC787/E5NwxyG7D4M7xZJ9FaWr5aHiBY3/PsjdRKy5wMXZTQ==","permissions":"FULL"},{"keyName":"key2","value":"lauHdb8Hi3VkUbH41feOjxsiJAriHl2VCpvcQFNmH0dgUyz87UODWRx+RLinx0f9CJUrrafo98HqlbuOiODHSA==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"JRqG8YXtiCfcb/kWpgG9QlQR1XUlznpDnhwWWmKmWtjlCz9pp7lg2mgn9fp5ejturSWKGQ2KHbxe0j6YImgN/Q==","permissions":"FULL"},{"keyName":"key2","value":"WyYJ87Sz9rAcsG1lzdcVeUBze7k3sjZX0s+ImPhwNS5stOpQVxI0/bKWETCCFHPUsnQH3IcuRgA/ZSj/RpGZlg==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:08 GMT'] + date: ['Tue, 29 May 2018 19:38:38 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -125,25 +125,25 @@ interactions: CommandName: [storage container create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"web":"https://acliautomationlab8902.web.core.windows.net/","blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"web":"https://clitestnlmd52jlcmr4ce7b4.web.core.windows.net/","blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"web":"https://wilxstorageworm.web.core.windows.net/","blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstorageworm-secondary.web.core.windows.net/","blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"web":"https://clitestjwzkdsfuou3niutbd.web.core.windows.net/","blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"web":"https://clitestt6pqb7xneswrh2sp6.web.core.windows.net/","blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"web":"https://clitestpabilv4yd6qxvguml.web.core.windows.net/","blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"web":"https://clitesta2lvllqz23rgasyf7.web.core.windows.net/","blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"web":"https://clitestfyixx74gs3loj3isf.web.core.windows.net/","blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:09:49.3684695Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"web":"https://clitestixsogcl5p5af5w2p3.web.core.windows.net/","blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"web":"https://clitestcrdofae6jvibomf2w.web.core.windows.net/","blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"web":"https://clitestcdx4bwlcvgviotc2p.web.core.windows.net/","blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} + body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbjtk2wau3cm5duyhupqgovcrkobbtya6pwe44xuyl2mlde7zfylmzjug34cn6z36f/providers/Microsoft.Storage/storageAccounts/clitestziyz6qcg53gjr4mva","name":"clitestziyz6qcg53gjr4mva","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:23.8871593Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:23.8871593Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:23.6371175Z","primaryEndpoints":{"blob":"https://clitestziyz6qcg53gjr4mva.blob.core.windows.net/","queue":"https://clitestziyz6qcg53gjr4mva.queue.core.windows.net/","table":"https://clitestziyz6qcg53gjr4mva.table.core.windows.net/","file":"https://clitestziyz6qcg53gjr4mva.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4aeyoith7wzer5jsnpniwgpjpjs65tkl526ioesaprwquiac7kl6eexcu3fkl5dor/providers/Microsoft.Storage/storageAccounts/clitestnoihgzqsrptijn64v","name":"clitestnoihgzqsrptijn64v","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.8090262Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.8090262Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:24.6996393Z","primaryEndpoints":{"blob":"https://clitestnoihgzqsrptijn64v.blob.core.windows.net/","queue":"https://clitestnoihgzqsrptijn64v.queue.core.windows.net/","table":"https://clitestnoihgzqsrptijn64v.table.core.windows.net/","file":"https://clitestnoihgzqsrptijn64v.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjpfbbjyfbqefycs5pfoarb4xkkwmar23uw7pdv4foy7oqkrwvpljoua6eiw2o652/providers/Microsoft.Storage/storageAccounts/clitestvvbrprvvlaqaphx74","name":"clitestvvbrprvvlaqaphx74","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:20.8402338Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:20.8402338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:20.4339479Z","primaryEndpoints":{"blob":"https://clitestvvbrprvvlaqaphx74.blob.core.windows.net/","queue":"https://clitestvvbrprvvlaqaphx74.queue.core.windows.net/","table":"https://clitestvvbrprvvlaqaphx74.table.core.windows.net/","file":"https://clitestvvbrprvvlaqaphx74.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsamkomjzf5nvfprwf5mfbh2akkdp7df4tcirgzevnfawzvoj7a64jynnvm75g2lie/providers/Microsoft.Storage/storageAccounts/clitestsym42rwv3iaizlei6","name":"clitestsym42rwv3iaizlei6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:27.3715224Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:27.3715224Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:27.2777784Z","primaryEndpoints":{"blob":"https://clitestsym42rwv3iaizlei6.blob.core.windows.net/","queue":"https://clitestsym42rwv3iaizlei6.queue.core.windows.net/","table":"https://clitestsym42rwv3iaizlei6.table.core.windows.net/","file":"https://clitestsym42rwv3iaizlei6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestsym42rwv3iaizlei6-secondary.blob.core.windows.net/","queue":"https://clitestsym42rwv3iaizlei6-secondary.queue.core.windows.net/","table":"https://clitestsym42rwv3iaizlei6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvtsaqhqo4aksuufe3kuecrizqvyc7acaoh4l37i76poorbogbrwlljbqhmtjwdvqu/providers/Microsoft.Storage/storageAccounts/clitest4fkcxa2rmognfolwg","name":"clitest4fkcxa2rmognfolwg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.1684294Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.1684294Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:23.9496266Z","primaryEndpoints":{"blob":"https://clitest4fkcxa2rmognfolwg.blob.core.windows.net/","queue":"https://clitest4fkcxa2rmognfolwg.queue.core.windows.net/","table":"https://clitest4fkcxa2rmognfolwg.table.core.windows.net/","file":"https://clitest4fkcxa2rmognfolwg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxrjkyqt7r2tlzg2zkzxsnpicey4bprqkdzpr7zf5xxd6qkteopb5ve4ikpaljum5w/providers/Microsoft.Storage/storageAccounts/clitestx5pwdqkz2kt2wc7ru","name":"clitestx5pwdqkz2kt2wc7ru","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.2777690Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.2777690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.1996214Z","primaryEndpoints":{"blob":"https://clitestx5pwdqkz2kt2wc7ru.blob.core.windows.net/","queue":"https://clitestx5pwdqkz2kt2wc7ru.queue.core.windows.net/","table":"https://clitestx5pwdqkz2kt2wc7ru.table.core.windows.net/","file":"https://clitestx5pwdqkz2kt2wc7ru.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgasunvw67kfs36iqddv2suvqetmh4otnztcws3g5rurhajcqmkzbadpycehshxpnay/providers/Microsoft.Storage/storageAccounts/clitestlew6gnl6pknq47cpp","name":"clitestlew6gnl6pknq47cpp","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:25.6371462Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:25.6371462Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:25.5121499Z","primaryEndpoints":{"blob":"https://clitestlew6gnl6pknq47cpp.blob.core.windows.net/","queue":"https://clitestlew6gnl6pknq47cpp.queue.core.windows.net/","table":"https://clitestlew6gnl6pknq47cpp.table.core.windows.net/","file":"https://clitestlew6gnl6pknq47cpp.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestlew6gnl6pknq47cpp-secondary.blob.core.windows.net/","queue":"https://clitestlew6gnl6pknq47cpp-secondary.queue.core.windows.net/","table":"https://clitestlew6gnl6pknq47cpp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfhep77mmcmcn3afvnvskjk3g27ybc7gq6kh5c6vu7ugy7e3ykawkib6u7st25kbi/providers/Microsoft.Storage/storageAccounts/clitest5o5upfigqe5aenkc3","name":"clitest5o5upfigqe5aenkc3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:22:12.4388487Z","primaryEndpoints":{"blob":"https://clitest5o5upfigqe5aenkc3.blob.core.windows.net/","queue":"https://clitest5o5upfigqe5aenkc3.queue.core.windows.net/","table":"https://clitest5o5upfigqe5aenkc3.table.core.windows.net/","file":"https://clitest5o5upfigqe5aenkc3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv6extdlzddtno2qf5o37e5g2n2d2x5ah4gq2olmpqezmxibj4h36focak4y6dose7/providers/Microsoft.Storage/storageAccounts/clitestcushmpfbtkste2a2a","name":"clitestcushmpfbtkste2a2a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:20:25.0780033Z","primaryEndpoints":{"blob":"https://clitestcushmpfbtkste2a2a.blob.core.windows.net/","queue":"https://clitestcushmpfbtkste2a2a.queue.core.windows.net/","table":"https://clitestcushmpfbtkste2a2a.table.core.windows.net/","file":"https://clitestcushmpfbtkste2a2a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgruni7iif3eiip3kf5hcf3dkzje2nont3rodcbysqzt3jopjpcppggxtnbeemo6ou2/providers/Microsoft.Storage/storageAccounts/clitest5kyn7laggavmjomkd","name":"clitest5kyn7laggavmjomkd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.7665905Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.7665905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.7197141Z","primaryEndpoints":{"blob":"https://clitest5kyn7laggavmjomkd.blob.core.windows.net/","queue":"https://clitest5kyn7laggavmjomkd.queue.core.windows.net/","table":"https://clitest5kyn7laggavmjomkd.table.core.windows.net/","file":"https://clitest5kyn7laggavmjomkd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup/providers/Microsoft.Storage/storageAccounts/wilxstoragedlm","name":"wilxstoragedlm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T17:27:21.3073351Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T17:27:21.3073351Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-05-29T17:27:21.2604579Z","primaryEndpoints":{"web":"https://wilxstoragedlm.z3.web.core.windows.net/","blob":"https://wilxstoragedlm.blob.core.windows.net/","queue":"https://wilxstoragedlm.queue.core.windows.net/","table":"https://wilxstoragedlm.table.core.windows.net/","file":"https://wilxstoragedlm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstoragedlm-secondary.z3.web.core.windows.net/","blob":"https://wilxstoragedlm-secondary.blob.core.windows.net/","queue":"https://wilxstoragedlm-secondary.queue.core.windows.net/","table":"https://wilxstoragedlm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.5165939Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6xf4idvnxclgamrcp2ezv54qhk3doyffriwiegbm7ouxjbfmd2cj7izni3bhdv4wf/providers/Microsoft.Storage/storageAccounts/clitestoj23vdhimampujgji","name":"clitestoj23vdhimampujgji","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:09:49.3684695Z","primaryEndpoints":{"blob":"https://clitestoj23vdhimampujgji.blob.core.windows.net/","queue":"https://clitestoj23vdhimampujgji.queue.core.windows.net/","table":"https://clitestoj23vdhimampujgji.table.core.windows.net/","file":"https://clitestoj23vdhimampujgji.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} headers: cache-control: [no-cache] - content-length: ['18240'] + content-length: ['33283'] content-type: [application/json; charset=utf-8] - date: ['Tue, 15 May 2018 02:10:09 GMT'] + date: ['Tue, 29 May 2018 19:38:39 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-original-request-ids: [8e09fa58-2571-45e6-925b-30c34d53cca1, 7e931062-49d0-41ca-bba8-97037ef8ba18, - da08f8e7-fcea-4671-b831-32a2cbd759e3] + x-ms-original-request-ids: [1e7fe5c5-da89-4f86-b196-9381c1ca49a8, e7a5f240-8348-4f3c-a56e-ae539a8bbd5f, + fa4cf63b-604d-495e-af20-4d83fdfaadea, 223bac15-62b1-4a80-a4da-7cd3e2a6ccfa] status: {code: 200, message: OK} - request: body: null @@ -154,18 +154,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"V5Hr3+no4QBo3Y4Mj1/He5nYDBURm/sHqlkd04lC787/E5NwxyG7D4M7xZJ9FaWr5aHiBY3/PsjdRKy5wMXZTQ==","permissions":"FULL"},{"keyName":"key2","value":"lauHdb8Hi3VkUbH41feOjxsiJAriHl2VCpvcQFNmH0dgUyz87UODWRx+RLinx0f9CJUrrafo98HqlbuOiODHSA==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"JRqG8YXtiCfcb/kWpgG9QlQR1XUlznpDnhwWWmKmWtjlCz9pp7lg2mgn9fp5ejturSWKGQ2KHbxe0j6YImgN/Q==","permissions":"FULL"},{"keyName":"key2","value":"WyYJ87Sz9rAcsG1lzdcVeUBze7k3sjZX0s+ImPhwNS5stOpQVxI0/bKWETCCFHPUsnQH3IcuRgA/ZSj/RpGZlg==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:10 GMT'] + date: ['Tue, 29 May 2018 19:38:40 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -182,17 +182,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Tue, 15 May 2018 02:10:10 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:40 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/container1?restype=container response: body: {string: ''} headers: - date: ['Tue, 15 May 2018 02:10:11 GMT'] - etag: ['"0x8D5BA08FD25B778"'] - last-modified: ['Tue, 15 May 2018 02:10:11 GMT'] + date: ['Tue, 29 May 2018 19:38:40 GMT'] + etag: ['"0x8D5C59BC82A4752"'] + last-modified: ['Tue, 29 May 2018 19:38:41 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -206,19 +206,19 @@ interactions: Connection: [keep-alive] Content-Length: ['60'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5ba08fe053da9\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5c59bc96013cf\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}}'} headers: cache-control: [no-cache] content-length: ['502'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:12 GMT'] - etag: ['"8d5ba08fe053da9"'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] + etag: ['"8d5c59bc96013cf"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -227,7 +227,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -237,19 +237,19 @@ interactions: CommandName: [storage container immutability-policy show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5ba08fe053da9\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5c59bc96013cf\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}}'} headers: cache-control: [no-cache] content-length: ['502'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:13 GMT'] - etag: ['"8d5ba08fe053da9"'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] + etag: ['"8d5c59bc96013cf"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -268,20 +268,20 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - If-Match: ['"8d5ba08fe053da9"'] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + If-Match: ['"8d5c59bc96013cf"'] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5ba08ffee19c3\"","properties":{"immutabilityPeriodSinceCreationInDays":0,"state":"Unlocked"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5c59bcab76431\"","properties":{"immutabilityPeriodSinceCreationInDays":0,"state":"Unlocked"}}'} headers: cache-control: [no-cache] content-length: ['502'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:15 GMT'] - etag: ['"8d5ba08ffee19c3"'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] + etag: ['"8d5c59bcab76431"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -300,18 +300,18 @@ interactions: CommandName: [storage container immutability-policy show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-03-01-preview response: body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"","properties":{"immutabilityPeriodSinceCreationInDays":0,"state":"Unlocked"}}'} headers: cache-control: [no-cache] content-length: ['483'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:16 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -330,19 +330,19 @@ interactions: Connection: [keep-alive] Content-Length: ['60'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5ba09014c9800\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5c59bcbda423a\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}}'} headers: cache-control: [no-cache] content-length: ['502'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:18 GMT'] - etag: ['"8d5ba09014c9800"'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] + etag: ['"8d5c59bcbda423a"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -351,7 +351,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -361,19 +361,19 @@ interactions: CommandName: [storage container immutability-policy show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5ba09014c9800\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5c59bcbda423a\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}}'} headers: cache-control: [no-cache] content-length: ['502'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:18 GMT'] - etag: ['"8d5ba09014c9800"'] + date: ['Tue, 29 May 2018 19:38:47 GMT'] + etag: ['"8d5c59bcbda423a"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -392,20 +392,20 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - If-Match: ['"8d5ba09014c9800"'] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + If-Match: ['"8d5c59bcbda423a"'] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default/lock?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default/lock?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5ba0902127da7\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Locked"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5c59bcce548aa\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Locked"}}'} headers: cache-control: [no-cache] content-length: ['500'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:19 GMT'] - etag: ['"8d5ba0902127da7"'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] + etag: ['"8d5c59bcce548aa"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -414,7 +414,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -424,19 +424,19 @@ interactions: CommandName: [storage container immutability-policy show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5ba0902127da7\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Locked"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5c59bcce548aa\"","properties":{"immutabilityPeriodSinceCreationInDays":1,"state":"Locked"}}'} headers: cache-control: [no-cache] content-length: ['500'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:20 GMT'] - etag: ['"8d5ba0902127da7"'] + date: ['Tue, 29 May 2018 19:38:49 GMT'] + etag: ['"8d5c59bcce548aa"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -455,12 +455,12 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - If-Match: ['"8d5ba0902127da7"'] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + If-Match: ['"8d5c59bcce548aa"'] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default?api-version=2018-03-01-preview response: body: {string: '{"error":{"code":"ContainerImmutabilityPolicyFailure","message":"Operation not allowed on immutability policy with current state."}}'} @@ -468,7 +468,7 @@ interactions: cache-control: [no-cache] content-length: ['132'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:21 GMT'] + date: ['Tue, 29 May 2018 19:38:49 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -486,20 +486,20 @@ interactions: Connection: [keep-alive] Content-Length: ['60'] Content-Type: [application/json; charset=utf-8] - If-Match: ['"8d5ba0902127da7"'] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + If-Match: ['"8d5c59bcce548aa"'] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default/extend?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default/extend?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5ba0903eb3c03\"","properties":{"immutabilityPeriodSinceCreationInDays":2,"state":"Locked"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/immutabilityPolicies/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies","etag":"\"8d5c59bce5b98a5\"","properties":{"immutabilityPeriodSinceCreationInDays":2,"state":"Locked"}}'} headers: cache-control: [no-cache] content-length: ['500'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:10:21 GMT'] - etag: ['"8d5ba0903eb3c03"'] + date: ['Tue, 29 May 2018 19:38:51 GMT'] + etag: ['"8d5c59bce5b98a5"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -508,7 +508,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -519,9 +519,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -530,9 +530,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 15 May 2018 02:10:23 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc2WEY0SURWTlhDTEdBTVJDUDJFWlY1NFFISzNET1lGRlJJV3w2QTY1NkNCNUVBQTE0NjlELUVBU1RVUzJFVUFQIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyZXVhcCJ9?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdKWkhOQ0tNVzVGVE9RTU0yQjVHRVpXR1NMVkZNMkRRRzdMRHw5ODZDOUEyRjE0QTU5RDU2LUVBU1RVUzJFVUFQIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyZXVhcCJ9?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_legal_hold.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_legal_hold.yaml index 4d05e71c924..e2f4fc2de7e 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_legal_hold.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_legal_hold.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus2euap", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-15T02:10:46Z"}}' + "date": "2018-05-29T19:38:14Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['115'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2018-05-15T02:10:46Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:14Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['389'] content-type: [application/json; charset=utf-8] - date: ['Tue, 15 May 2018 02:10:48 GMT'] + date: ['Tue, 29 May 2018 19:38:16 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "eastus2euap", @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['130'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Tue, 15 May 2018 02:10:51 GMT'] + date: ['Tue, 29 May 2018 19:38:19 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/56167440-c816-4d77-b7a2-3c50708c9125?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/14e2f1b0-e4b2-40ac-b731-35e635f93656?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/56167440-c816-4d77-b7a2-3c50708c9125?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/14e2f1b0-e4b2-40ac-b731-35e635f93656?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:10:51.0340878Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:10:51.0340878Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:10:50.9872114Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.7665905Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.7665905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.7197141Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1241'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:11:08 GMT'] + date: ['Tue, 29 May 2018 19:38:37 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"9Baal+V63YCN9piBZsurBKAIqNLM031Amv1ZwpfTogXFWJ6y8evqafkFwsL1kbpQrb1ysuFUnYyO8O81gcX0Mw==","permissions":"FULL"},{"keyName":"key2","value":"uky+hiO11C0L+0+7Uq7stL1PqrVOC4RQuY1gH23LDuKOaZnmp3eIMFVCGo/TMSSGr8Q96nNy5tr+AYrUWmq+bg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"ggaKS0nNSXVEOGCgS4UnS3oji54AAYiTy7mQ8IDFdf1lBz1oSgvNVR649aKV+1HYNQTtSE6BCM2/wizy2oha8g==","permissions":"FULL"},{"keyName":"key2","value":"dSyu7Qf2HaMWkrfsBS2IZY3aulH1pvoywGmtxaurhLsyatperA1mPu1EVqW1+tYCvQdOZv3IkvVSk1c1aMH4Ng==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:11:09 GMT'] + date: ['Tue, 29 May 2018 19:38:38 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -115,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -125,25 +125,25 @@ interactions: CommandName: [storage container create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-03-01-preview response: - body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"web":"https://acliautomationlab8902.web.core.windows.net/","blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:10:51.0340878Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:10:51.0340878Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:10:50.9872114Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"web":"https://clitestnlmd52jlcmr4ce7b4.web.core.windows.net/","blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"web":"https://wilxstorageworm.web.core.windows.net/","blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstorageworm-secondary.web.core.windows.net/","blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"web":"https://clitestjwzkdsfuou3niutbd.web.core.windows.net/","blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"web":"https://clitestt6pqb7xneswrh2sp6.web.core.windows.net/","blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"web":"https://clitestpabilv4yd6qxvguml.web.core.windows.net/","blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"web":"https://clitesta2lvllqz23rgasyf7.web.core.windows.net/","blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"web":"https://clitestfyixx74gs3loj3isf.web.core.windows.net/","blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6xf4idvnxclgamrcp2ezv54qhk3doyffriwiegbm7ouxjbfmd2cj7izni3bhdv4wf/providers/Microsoft.Storage/storageAccounts/clitestoj23vdhimampujgji","name":"clitestoj23vdhimampujgji","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:09:49.3684695Z","primaryEndpoints":{"blob":"https://clitestoj23vdhimampujgji.blob.core.windows.net/","queue":"https://clitestoj23vdhimampujgji.queue.core.windows.net/","table":"https://clitestoj23vdhimampujgji.table.core.windows.net/","file":"https://clitestoj23vdhimampujgji.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"web":"https://clitestixsogcl5p5af5w2p3.web.core.windows.net/","blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"web":"https://clitestcrdofae6jvibomf2w.web.core.windows.net/","blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"web":"https://clitestcdx4bwlcvgviotc2p.web.core.windows.net/","blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} + body: {string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbjtk2wau3cm5duyhupqgovcrkobbtya6pwe44xuyl2mlde7zfylmzjug34cn6z36f/providers/Microsoft.Storage/storageAccounts/clitestziyz6qcg53gjr4mva","name":"clitestziyz6qcg53gjr4mva","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:23.8871593Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:23.8871593Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:23.6371175Z","primaryEndpoints":{"blob":"https://clitestziyz6qcg53gjr4mva.blob.core.windows.net/","queue":"https://clitestziyz6qcg53gjr4mva.queue.core.windows.net/","table":"https://clitestziyz6qcg53gjr4mva.table.core.windows.net/","file":"https://clitestziyz6qcg53gjr4mva.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4aeyoith7wzer5jsnpniwgpjpjs65tkl526ioesaprwquiac7kl6eexcu3fkl5dor/providers/Microsoft.Storage/storageAccounts/clitestnoihgzqsrptijn64v","name":"clitestnoihgzqsrptijn64v","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.8090262Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.8090262Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:24.6996393Z","primaryEndpoints":{"blob":"https://clitestnoihgzqsrptijn64v.blob.core.windows.net/","queue":"https://clitestnoihgzqsrptijn64v.queue.core.windows.net/","table":"https://clitestnoihgzqsrptijn64v.table.core.windows.net/","file":"https://clitestnoihgzqsrptijn64v.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjpfbbjyfbqefycs5pfoarb4xkkwmar23uw7pdv4foy7oqkrwvpljoua6eiw2o652/providers/Microsoft.Storage/storageAccounts/clitestvvbrprvvlaqaphx74","name":"clitestvvbrprvvlaqaphx74","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:20.8402338Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:20.8402338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:20.4339479Z","primaryEndpoints":{"blob":"https://clitestvvbrprvvlaqaphx74.blob.core.windows.net/","queue":"https://clitestvvbrprvvlaqaphx74.queue.core.windows.net/","table":"https://clitestvvbrprvvlaqaphx74.table.core.windows.net/","file":"https://clitestvvbrprvvlaqaphx74.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsamkomjzf5nvfprwf5mfbh2akkdp7df4tcirgzevnfawzvoj7a64jynnvm75g2lie/providers/Microsoft.Storage/storageAccounts/clitestsym42rwv3iaizlei6","name":"clitestsym42rwv3iaizlei6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:27.3715224Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:27.3715224Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:27.2777784Z","primaryEndpoints":{"blob":"https://clitestsym42rwv3iaizlei6.blob.core.windows.net/","queue":"https://clitestsym42rwv3iaizlei6.queue.core.windows.net/","table":"https://clitestsym42rwv3iaizlei6.table.core.windows.net/","file":"https://clitestsym42rwv3iaizlei6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestsym42rwv3iaizlei6-secondary.blob.core.windows.net/","queue":"https://clitestsym42rwv3iaizlei6-secondary.queue.core.windows.net/","table":"https://clitestsym42rwv3iaizlei6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvtsaqhqo4aksuufe3kuecrizqvyc7acaoh4l37i76poorbogbrwlljbqhmtjwdvqu/providers/Microsoft.Storage/storageAccounts/clitest4fkcxa2rmognfolwg","name":"clitest4fkcxa2rmognfolwg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.1684294Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:24.1684294Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:23.9496266Z","primaryEndpoints":{"blob":"https://clitest4fkcxa2rmognfolwg.blob.core.windows.net/","queue":"https://clitest4fkcxa2rmognfolwg.queue.core.windows.net/","table":"https://clitest4fkcxa2rmognfolwg.table.core.windows.net/","file":"https://clitest4fkcxa2rmognfolwg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxrjkyqt7r2tlzg2zkzxsnpicey4bprqkdzpr7zf5xxd6qkteopb5ve4ikpaljum5w/providers/Microsoft.Storage/storageAccounts/clitestx5pwdqkz2kt2wc7ru","name":"clitestx5pwdqkz2kt2wc7ru","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.2777690Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.2777690Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.1996214Z","primaryEndpoints":{"blob":"https://clitestx5pwdqkz2kt2wc7ru.blob.core.windows.net/","queue":"https://clitestx5pwdqkz2kt2wc7ru.queue.core.windows.net/","table":"https://clitestx5pwdqkz2kt2wc7ru.table.core.windows.net/","file":"https://clitestx5pwdqkz2kt2wc7ru.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgasunvw67kfs36iqddv2suvqetmh4otnztcws3g5rurhajcqmkzbadpycehshxpnay/providers/Microsoft.Storage/storageAccounts/clitestlew6gnl6pknq47cpp","name":"clitestlew6gnl6pknq47cpp","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:25.6371462Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:25.6371462Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"ResolvingDns","creationTime":"2018-05-29T19:38:25.5121499Z","primaryEndpoints":{"blob":"https://clitestlew6gnl6pknq47cpp.blob.core.windows.net/","queue":"https://clitestlew6gnl6pknq47cpp.queue.core.windows.net/","table":"https://clitestlew6gnl6pknq47cpp.table.core.windows.net/","file":"https://clitestlew6gnl6pknq47cpp.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestlew6gnl6pknq47cpp-secondary.blob.core.windows.net/","queue":"https://clitestlew6gnl6pknq47cpp-secondary.queue.core.windows.net/","table":"https://clitestlew6gnl6pknq47cpp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup2/providers/Microsoft.Storage/storageAccounts/wilxstorage0","name":"wilxstorage0","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T01:05:28.4648959Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T01:05:28.4023820Z","primaryEndpoints":{"web":"https://wilxstorage0.z5.web.core.windows.net/","blob":"https://wilxstorage0.blob.core.windows.net/","queue":"https://wilxstorage0.queue.core.windows.net/","table":"https://wilxstorage0.table.core.windows.net/","file":"https://wilxstorage0.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpfhep77mmcmcn3afvnvskjk3g27ybc7gq6kh5c6vu7ugy7e3ykawkib6u7st25kbi/providers/Microsoft.Storage/storageAccounts/clitest5o5upfigqe5aenkc3","name":"clitest5o5upfigqe5aenkc3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:22:12.5013507Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:22:12.4388487Z","primaryEndpoints":{"blob":"https://clitest5o5upfigqe5aenkc3.blob.core.windows.net/","queue":"https://clitest5o5upfigqe5aenkc3.queue.core.windows.net/","table":"https://clitest5o5upfigqe5aenkc3.table.core.windows.net/","file":"https://clitest5o5upfigqe5aenkc3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnipcxreywyorqhptpg4lmvsb6sqsef3mezozbrenqq6ufmd3hrh7plmdnorjt5y5x/providers/Microsoft.Storage/storageAccounts/clitestshv4qcdkeictveped","name":"clitestshv4qcdkeictveped","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T19:04:11.4311113Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T19:04:11.3686065Z","primaryEndpoints":{"blob":"https://clitestshv4qcdkeictveped.blob.core.windows.net/","queue":"https://clitestshv4qcdkeictveped.queue.core.windows.net/","table":"https://clitestshv4qcdkeictveped.table.core.windows.net/","file":"https://clitestshv4qcdkeictveped.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv6extdlzddtno2qf5o37e5g2n2d2x5ah4gq2olmpqezmxibj4h36focak4y6dose7/providers/Microsoft.Storage/storageAccounts/clitestcushmpfbtkste2a2a","name":"clitestcushmpfbtkste2a2a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-25T01:20:25.1414518Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-25T01:20:25.0780033Z","primaryEndpoints":{"blob":"https://clitestcushmpfbtkste2a2a.blob.core.windows.net/","queue":"https://clitestcushmpfbtkste2a2a.queue.core.windows.net/","table":"https://clitestcushmpfbtkste2a2a.table.core.windows.net/","file":"https://clitestcushmpfbtkste2a2a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgldagdmcl4pklmwzmr3wftx2kidhw7johz6d7tl6m7raetzzfhpqhrfffu5vwqtfxo/providers/Microsoft.Storage/storageAccounts/clitestt6pqb7xneswrh2sp6","name":"clitestt6pqb7xneswrh2sp6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:51:14.8730435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:51:14.8105336Z","primaryEndpoints":{"blob":"https://clitestt6pqb7xneswrh2sp6.blob.core.windows.net/","queue":"https://clitestt6pqb7xneswrh2sp6.queue.core.windows.net/","table":"https://clitestt6pqb7xneswrh2sp6.table.core.windows.net/","file":"https://clitestt6pqb7xneswrh2sp6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf3er5m4irbxsxhyil42jxq3t5ehzphmdzn2gortdlrzyw4i6tlgswx2xrcgldp6oh/providers/Microsoft.Storage/storageAccounts/clitestpabilv4yd6qxvguml","name":"clitestpabilv4yd6qxvguml","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T19:20:22.2758006Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T19:20:22.2445526Z","primaryEndpoints":{"blob":"https://clitestpabilv4yd6qxvguml.blob.core.windows.net/","queue":"https://clitestpabilv4yd6qxvguml.queue.core.windows.net/","table":"https://clitestpabilv4yd6qxvguml.table.core.windows.net/","file":"https://clitestpabilv4yd6qxvguml.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.7665905Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.7665905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.7197141Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup/providers/Microsoft.Storage/storageAccounts/wilxstoragedlm","name":"wilxstoragedlm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T17:27:21.3073351Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T17:27:21.3073351Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-05-29T17:27:21.2604579Z","primaryEndpoints":{"web":"https://wilxstoragedlm.z3.web.core.windows.net/","blob":"https://wilxstoragedlm.blob.core.windows.net/","queue":"https://wilxstoragedlm.queue.core.windows.net/","table":"https://wilxstoragedlm.table.core.windows.net/","file":"https://wilxstoragedlm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"web":"https://wilxstoragedlm-secondary.z3.web.core.windows.net/","blob":"https://wilxstoragedlm-secondary.blob.core.windows.net/","queue":"https://wilxstoragedlm-secondary.queue.core.windows.net/","table":"https://wilxstoragedlm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzhnckmw5ftoqmm2b5gezwgslvfm2dqg7ldpwvuukicy7ca4unquohsptfrbddr2a/providers/Microsoft.Storage/storageAccounts/clitestvjlqxa4ctzkwwpg4b","name":"clitestvjlqxa4ctzkwwpg4b","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:19.5634738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:19.5165939Z","primaryEndpoints":{"blob":"https://clitestvjlqxa4ctzkwwpg4b.blob.core.windows.net/","queue":"https://clitestvjlqxa4ctzkwwpg4b.queue.core.windows.net/","table":"https://clitestvjlqxa4ctzkwwpg4b.table.core.windows.net/","file":"https://clitestvjlqxa4ctzkwwpg4b.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwxiadyatfxsixayqfinia7ybjwo5cfoyw65qpuna3alx3x2diwukx4tkcpwir2mbq/providers/Microsoft.Storage/storageAccounts/clitesta2lvllqz23rgasyf7","name":"clitesta2lvllqz23rgasyf7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T17:57:25.6818153Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T17:57:25.6193002Z","primaryEndpoints":{"blob":"https://clitesta2lvllqz23rgasyf7.blob.core.windows.net/","queue":"https://clitesta2lvllqz23rgasyf7.queue.core.windows.net/","table":"https://clitesta2lvllqz23rgasyf7.table.core.windows.net/","file":"https://clitesta2lvllqz23rgasyf7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoo2qxqtbb56w7uujqzhodrozdh7fxg5wxscql4ndybxkardgqzqvheltadic2zoxf/providers/Microsoft.Storage/storageAccounts/clitestfyixx74gs3loj3isf","name":"clitestfyixx74gs3loj3isf","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:34:26.6293927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:34:26.5668681Z","primaryEndpoints":{"blob":"https://clitestfyixx74gs3loj3isf.blob.core.windows.net/","queue":"https://clitestfyixx74gs3loj3isf.queue.core.windows.net/","table":"https://clitestfyixx74gs3loj3isf.table.core.windows.net/","file":"https://clitestfyixx74gs3loj3isf.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6xf4idvnxclgamrcp2ezv54qhk3doyffriwiegbm7ouxjbfmd2cj7izni3bhdv4wf/providers/Microsoft.Storage/storageAccounts/clitestoj23vdhimampujgji","name":"clitestoj23vdhimampujgji","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-15T02:09:49.4622185Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-15T02:09:49.3684695Z","primaryEndpoints":{"blob":"https://clitestoj23vdhimampujgji.blob.core.windows.net/","queue":"https://clitestoj23vdhimampujgji.queue.core.windows.net/","table":"https://clitestoj23vdhimampujgji.table.core.windows.net/","file":"https://clitestoj23vdhimampujgji.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5ygu6mbq43qw57ncgznekmhwaqlrowjc6dggyk2h6cfwioigvtt3bg7ayqckcwvk/providers/Microsoft.Storage/storageAccounts/clitestixsogcl5p5af5w2p3","name":"clitestixsogcl5p5af5w2p3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T18:00:02.2397791Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T18:00:02.2087326Z","primaryEndpoints":{"blob":"https://clitestixsogcl5p5af5w2p3.blob.core.windows.net/","queue":"https://clitestixsogcl5p5af5w2p3.queue.core.windows.net/","table":"https://clitestixsogcl5p5af5w2p3.table.core.windows.net/","file":"https://clitestixsogcl5p5af5w2p3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyg7p46zydk24opv23uowejjybhvp2nqcyqpnmknbs7o3w5c3tocuuygkogbvxz5f/providers/Microsoft.Storage/storageAccounts/clitestcrdofae6jvibomf2w","name":"clitestcrdofae6jvibomf2w","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-20T01:19:55.8214506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-20T01:19:55.7120798Z","primaryEndpoints":{"blob":"https://clitestcrdofae6jvibomf2w.blob.core.windows.net/","queue":"https://clitestcrdofae6jvibomf2w.queue.core.windows.net/","table":"https://clitestcrdofae6jvibomf2w.table.core.windows.net/","file":"https://clitestcrdofae6jvibomf2w.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeblmtd6pv6car44ga6qwvicwjyuxydhhkaharam4nad6uekgqgm2uiisw7v4a3czx/providers/Microsoft.Storage/storageAccounts/clitestcdx4bwlcvgviotc2p","name":"clitestcdx4bwlcvgviotc2p","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T22:26:49.0369320Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T22:26:48.9744081Z","primaryEndpoints":{"blob":"https://clitestcdx4bwlcvgviotc2p.blob.core.windows.net/","queue":"https://clitestcdx4bwlcvgviotc2p.queue.core.windows.net/","table":"https://clitestcdx4bwlcvgviotc2p.table.core.windows.net/","file":"https://clitestcdx4bwlcvgviotc2p.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}'} headers: cache-control: [no-cache] - content-length: ['19482'] + content-length: ['33277'] content-type: [application/json; charset=utf-8] - date: ['Tue, 15 May 2018 02:11:10 GMT'] + date: ['Tue, 29 May 2018 19:38:40 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-original-request-ids: [81a2525f-7a14-49bf-bd28-b6c01f69fe50, 1a7d5aaa-d733-45b9-9e1a-6c87d82057da, - efeba646-851b-47e7-8534-cc52cf52cb27] + x-ms-original-request-ids: [2d1be01f-4ef6-48e1-b4b9-ae9762c72ca9, be5f13f2-f077-45d4-bf4a-98f470d2c421, + b8be7121-2a66-4496-8535-27deff708cca, 0c19ff5c-b747-49dc-b81b-3c8786d253b3] status: {code: 200, message: OK} - request: body: null @@ -154,18 +154,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"9Baal+V63YCN9piBZsurBKAIqNLM031Amv1ZwpfTogXFWJ6y8evqafkFwsL1kbpQrb1ysuFUnYyO8O81gcX0Mw==","permissions":"FULL"},{"keyName":"key2","value":"uky+hiO11C0L+0+7Uq7stL1PqrVOC4RQuY1gH23LDuKOaZnmp3eIMFVCGo/TMSSGr8Q96nNy5tr+AYrUWmq+bg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"ggaKS0nNSXVEOGCgS4UnS3oji54AAYiTy7mQ8IDFdf1lBz1oSgvNVR649aKV+1HYNQTtSE6BCM2/wizy2oha8g==","permissions":"FULL"},{"keyName":"key2","value":"dSyu7Qf2HaMWkrfsBS2IZY3aulH1pvoywGmtxaurhLsyatperA1mPu1EVqW1+tYCvQdOZv3IkvVSk1c1aMH4Ng==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:11:11 GMT'] + date: ['Tue, 29 May 2018 19:38:40 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -182,17 +182,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Tue, 15 May 2018 02:11:11 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:41 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.blob.core.windows.net/container1?restype=container response: body: {string: ''} headers: - date: ['Tue, 15 May 2018 02:11:11 GMT'] - etag: ['"0x8D5BA09218E9DA2"'] - last-modified: ['Tue, 15 May 2018 02:11:12 GMT'] + date: ['Tue, 29 May 2018 19:38:41 GMT'] + etag: ['"0x8D5C59BC86C2F93"'] + last-modified: ['Tue, 29 May 2018 19:38:41 GMT'] server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -205,19 +205,19 @@ interactions: CommandName: [storage container legal-hold show] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1?api-version=2018-03-01-preview response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1","name":"container1","type":"Microsoft.Storage/storageAccounts/blobServices/containers","etag":"\"0x8D5BA09218E9DA2\"","properties":{"publicAccess":"None","leaseStatus":"Unlocked","leaseState":"Available","lastModifiedTime":"2018-05-15T02:11:12.0000000Z","immutabilityPolicy":{"etag":"","properties":{"immutabilityPeriodSinceCreationInDays":0,"state":"Unlocked"}},"legalHold":{"hasLegalHold":false,"tags":[]},"hasImmutabilityPolicy":false,"hasLegalHold":false}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1","name":"container1","type":"Microsoft.Storage/storageAccounts/blobServices/containers","etag":"\"0x8D5C59BC86C2F93\"","properties":{"publicAccess":"None","leaseStatus":"Unlocked","leaseState":"Available","lastModifiedTime":"2018-05-29T19:38:41.0000000Z","immutabilityPolicy":{"etag":"","properties":{"immutabilityPeriodSinceCreationInDays":0,"state":"Unlocked"}},"legalHold":{"hasLegalHold":false,"tags":[]},"hasImmutabilityPolicy":false,"hasLegalHold":false}}'} headers: cache-control: [no-cache] content-length: ['723'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:11:12 GMT'] - etag: ['"0x8D5BA09218E9DA2"'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] + etag: ['"0x8D5C59BC86C2F93"'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -236,18 +236,18 @@ interactions: Connection: [keep-alive] Content-Length: ['26'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/setLegalHold?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/setLegalHold?api-version=2018-03-01-preview response: body: {string: '{"hasLegalHold":true,"tags":["tag1","tag2"]}'} headers: cache-control: [no-cache] content-length: ['44'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:11:13 GMT'] + date: ['Tue, 29 May 2018 19:38:42 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -267,18 +267,18 @@ interactions: Connection: [keep-alive] Content-Length: ['26'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/clearLegalHold?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default/containers/container1/clearLegalHold?api-version=2018-03-01-preview response: body: {string: '{"hasLegalHold":false,"tags":[]}'} headers: cache-control: [no-cache] content-length: ['32'] content-type: [application/json] - date: ['Tue, 15 May 2018 02:11:14 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -287,7 +287,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -298,9 +298,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -309,9 +309,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 15 May 2018 02:11:16 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdFS0VPTE9FWlZKT1VHU0NaUjZUTFNJVk03MjdRUE1MVVoyQnw2RDhCNjNGODAwOTk2MEFDLUVBU1RVUzJFVUFQIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyZXVhcCJ9?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdSVU5JN0lJRjNFSUlQM0tGNUhDRjNES1pKRTJOT05UM1JPRHxDNTQ4RDE2M0Y0NkM1QzkzLUVBU1RVUzJFVUFQIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyZXVhcCJ9?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_queue_general_scenario.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_queue_general_scenario.yaml index f1673c35829..59c2f8cfe43 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_queue_general_scenario.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_queue_general_scenario.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:04Z"}}' + "date": "2018-05-29T19:38:21Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:04Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:21Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:05 GMT'] + date: ['Tue, 29 May 2018 19:38:23 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['127'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:07 GMT'] + date: ['Tue, 29 May 2018 19:38:25 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2a46ca7e-ed46-4117-8916-a312acdb6719?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e8dcbd68-142a-4c20-aa7c-4dfc47187cc3?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2a46ca7e-ed46-4117-8916-a312acdb6719?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/e8dcbd68-142a-4c20-aa7c-4dfc47187cc3?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.3540670Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.3540670Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:07.2915489Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:25.6371462Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:25.6371462Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:25.5121499Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1546'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:24 GMT'] + date: ['Tue, 29 May 2018 19:38:43 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"7sHxE85KBlAwQACfIGuD0noEO+bU8PDR1jPZb3WWCbPU+fW0JFK3q+z+hG8Qq1YPw5S34NKl8bwkNkEWc4a7ug==","permissions":"FULL"},{"keyName":"key2","value":"7W8bd9HAZ57ZDh/yco6sfZ/11V71OBtW74N11iw8lfifjnyiI5cZjutyDDYjOJYNB8tbySXROVuYLANA8g8Kxg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"4PkFIpdnb9LopUYIhAfEd/+2YalgzgyL/WRiDp/USRmBZsqkcVO54njyIlrUtlNQSATG9cgi677fJUyIbY5M7A==","permissions":"FULL"},{"keyName":"key2","value":"6CC8mRm3GdpYFUMe9z0CdfflmOJt87dWexOm7NmXO6BSEmnOnwpyy7bIsytZ2vmDnEkw/Rj2EBSx8yjJX0zD+A==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:25 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"7sHxE85KBlAwQACfIGuD0noEO+bU8PDR1jPZb3WWCbPU+fW0JFK3q+z+hG8Qq1YPw5S34NKl8bwkNkEWc4a7ug==","permissions":"FULL"},{"keyName":"key2","value":"7W8bd9HAZ57ZDh/yco6sfZ/11V71OBtW74N11iw8lfifjnyiI5cZjutyDDYjOJYNB8tbySXROVuYLANA8g8Kxg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"4PkFIpdnb9LopUYIhAfEd/+2YalgzgyL/WRiDp/USRmBZsqkcVO54njyIlrUtlNQSATG9cgi677fJUyIbY5M7A==","permissions":"FULL"},{"keyName":"key2","value":"6CC8mRm3GdpYFUMe9z0CdfflmOJt87dWexOm7NmXO6BSEmnOnwpyy7bIsytZ2vmDnEkw/Rj2EBSx8yjJX0zD+A==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 200, message: OK} - request: body: null @@ -154,8 +154,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:26 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:45 GMT'] x-ms-meta-a: [b] x-ms-meta-c: [d] x-ms-version: ['2017-11-09'] @@ -164,7 +164,7 @@ interactions: response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -174,8 +174,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:46 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=metadata @@ -183,7 +183,7 @@ interactions: body: {string: ''} headers: cache-control: [no-cache] - date: ['Mon, 14 May 2018 23:35:26 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-approximate-messages-count: ['0'] @@ -196,8 +196,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:27 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:46 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/?comp=list @@ -208,7 +208,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -218,8 +218,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=metadata @@ -227,7 +227,7 @@ interactions: body: {string: ''} headers: cache-control: [no-cache] - date: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-approximate-messages-count: ['0'] @@ -241,8 +241,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-meta-e: [f] x-ms-meta-g: [h] x-ms-version: ['2017-11-09'] @@ -252,7 +252,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:27 GMT'] + date: ['Tue, 29 May 2018 19:38:47 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-11-09'] status: {code: 204, message: No Content} @@ -261,8 +261,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=metadata @@ -270,7 +270,7 @@ interactions: body: {string: ''} headers: cache-control: [no-cache] - date: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:47 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-approximate-messages-count: ['0'] @@ -283,8 +283,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:28 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -294,7 +294,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -304,8 +304,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:29 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -315,7 +315,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -326,8 +326,8 @@ interactions: Connection: [keep-alive] Content-Length: ['264'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:29 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -335,7 +335,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-11-09'] status: {code: 204, message: No Content} @@ -344,8 +344,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:29 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -354,7 +354,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:28 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -364,8 +364,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:29 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -374,7 +374,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:29 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -384,8 +384,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:30 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -394,7 +394,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:29 GMT'] + date: ['Tue, 29 May 2018 19:38:49 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -405,8 +405,8 @@ interactions: Connection: [keep-alive] Content-Length: ['268'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:30 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -414,7 +414,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:30 GMT'] + date: ['Tue, 29 May 2018 19:38:49 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-11-09'] status: {code: 204, message: No Content} @@ -423,8 +423,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:30 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -433,7 +433,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:30 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -443,8 +443,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:31 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -453,7 +453,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -466,8 +466,8 @@ interactions: Connection: [keep-alive] Content-Length: ['60'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:31 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:51 GMT'] x-ms-version: ['2017-11-09'] method: PUT uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -475,7 +475,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-11-09'] status: {code: 204, message: No Content} @@ -484,8 +484,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:31 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:51 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl @@ -495,7 +495,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:30 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -508,19 +508,19 @@ interactions: Connection: [keep-alive] Content-Length: ['107'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:31 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:51 GMT'] x-ms-version: ['2017-11-09'] method: POST uri: https://clitest000002.queue.core.windows.net/queue000003/messages response: - body: {string: "\uFEFF705df665-9d09-4eae-bc6b-e49ed68433c5Mon,\ - \ 14 May 2018 23:35:32 GMTMon, 21 May 2018\ - \ 23:35:32 GMTAgAAAAMAAAAAAAAAlsTWP9zr0wE=Mon,\ - \ 14 May 2018 23:35:32 GMT"} + body: {string: "\uFEFF312b4e6f-aa91-4ebe-89e8-32102c92bb09Tue,\ + \ 29 May 2018 19:38:51 GMTTue, 05 Jun 2018\ + \ 19:38:51 GMTAgAAAAMAAAAAAAAATZEbrIT30wE=Tue,\ + \ 29 May 2018 19:38:51 GMT"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:51 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -530,20 +530,20 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:32 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true response: - body: {string: "\uFEFF705df665-9d09-4eae-bc6b-e49ed68433c5Mon,\ - \ 14 May 2018 23:35:32 GMTMon, 21 May 2018\ - \ 23:35:32 GMT0test\ + body: {string: "\uFEFF312b4e6f-aa91-4ebe-89e8-32102c92bb09Tue,\ + \ 29 May 2018 19:38:51 GMTTue, 05 Jun 2018\ + \ 19:38:51 GMT0test\ \ message"} headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -553,21 +553,21 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:32 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003/messages response: - body: {string: "\uFEFF705df665-9d09-4eae-bc6b-e49ed68433c5Mon,\ - \ 14 May 2018 23:35:32 GMTMon, 21 May 2018\ - \ 23:35:32 GMTAgAAAAMAAAAAAAAAlq0mUtzr0wE=Mon,\ - \ 14 May 2018 23:36:02 GMT1test\ + body: {string: "\uFEFF312b4e6f-aa91-4ebe-89e8-32102c92bb09Tue,\ + \ 29 May 2018 19:38:51 GMTTue, 05 Jun 2018\ + \ 19:38:51 GMTAgAAAAMAAAAAAAAAnwB0voT30wE=Tue,\ + \ 29 May 2018 19:39:22 GMT1test\ \ message"} headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:32 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -580,19 +580,19 @@ interactions: Connection: [keep-alive] Content-Length: ['107'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:32 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] x-ms-version: ['2017-11-09'] method: PUT - uri: https://clitest000002.queue.core.windows.net/queue000003/messages/705df665-9d09-4eae-bc6b-e49ed68433c5?popreceipt=AgAAAAMAAAAAAAAAlq0mUtzr0wE%3D&visibilitytimeout=1 + uri: https://clitest000002.queue.core.windows.net/queue000003/messages/312b4e6f-aa91-4ebe-89e8-32102c92bb09?popreceipt=AgAAAAMAAAAAAAAAnwB0voT30wE%3D&visibilitytimeout=1 response: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:33 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] - x-ms-popreceipt: [AwAAAAMAAAAAAAAALmQTQdzr0wEBAAAA] - x-ms-time-next-visible: ['Mon, 14 May 2018 23:35:34 GMT'] + x-ms-popreceipt: [AwAAAAMAAAAAAAAADrBirYT30wEBAAAA] + x-ms-time-next-visible: ['Tue, 29 May 2018 19:38:54 GMT'] x-ms-version: ['2017-11-09'] status: {code: 204, message: No Content} - request: @@ -600,20 +600,20 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:35 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:55 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true response: - body: {string: "\uFEFF705df665-9d09-4eae-bc6b-e49ed68433c5Mon,\ - \ 14 May 2018 23:35:32 GMTMon, 21 May 2018\ - \ 23:35:32 GMT1new\ + body: {string: "\uFEFF312b4e6f-aa91-4ebe-89e8-32102c92bb09Tue,\ + \ 29 May 2018 19:38:51 GMTTue, 05 Jun 2018\ + \ 19:38:51 GMT1new\ \ message!"} headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:34 GMT'] + date: ['Tue, 29 May 2018 19:38:55 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -626,19 +626,19 @@ interactions: Connection: [keep-alive] Content-Length: ['109'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:35 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:55 GMT'] x-ms-version: ['2017-11-09'] method: POST uri: https://clitest000002.queue.core.windows.net/queue000003/messages response: - body: {string: "\uFEFFa1ac0224-8de7-4db4-a833-adb37b52ef87Mon,\ - \ 14 May 2018 23:35:35 GMTMon, 21 May 2018\ - \ 23:35:35 GMTAgAAAAMAAAAAAAAAMfMMQtzr0wE=Mon,\ - \ 14 May 2018 23:35:35 GMT"} + body: {string: "\uFEFF9155d910-6d25-4ab7-b4b9-9a1108e688abTue,\ + \ 29 May 2018 19:38:55 GMTTue, 05 Jun 2018\ + \ 19:38:55 GMTAgAAAAMAAAAAAAAAh26IroT30wE=Tue,\ + \ 29 May 2018 19:38:55 GMT"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:35 GMT'] + date: ['Tue, 29 May 2018 19:38:55 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -651,19 +651,19 @@ interactions: Connection: [keep-alive] Content-Length: ['108'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:35 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:56 GMT'] x-ms-version: ['2017-11-09'] method: POST uri: https://clitest000002.queue.core.windows.net/queue000003/messages response: - body: {string: "\uFEFF9300e0a3-7131-4258-ab15-fa2c23c56b70Mon,\ - \ 14 May 2018 23:35:36 GMTMon, 21 May 2018\ - \ 23:35:36 GMTAgAAAAMAAAAAAAAALnM8Qtzr0wE=Mon,\ - \ 14 May 2018 23:35:36 GMT"} + body: {string: "\uFEFF63101678-456f-49f1-a267-f67e48a5e0a4Tue,\ + \ 29 May 2018 19:38:56 GMTTue, 05 Jun 2018\ + \ 19:38:56 GMTAgAAAAMAAAAAAAAA3Bi/roT30wE=Tue,\ + \ 29 May 2018 19:38:56 GMT"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:35 GMT'] + date: ['Tue, 29 May 2018 19:38:55 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -673,26 +673,26 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:36 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:56 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true&numofmessages=32 response: - body: {string: "\uFEFF705df665-9d09-4eae-bc6b-e49ed68433c5Mon,\ - \ 14 May 2018 23:35:32 GMTMon, 21 May 2018\ - \ 23:35:32 GMT1new\ - \ message!a1ac0224-8de7-4db4-a833-adb37b52ef87Mon,\ - \ 14 May 2018 23:35:35 GMTMon, 21 May 2018\ - \ 23:35:35 GMT0second\ - \ message9300e0a3-7131-4258-ab15-fa2c23c56b70Mon,\ - \ 14 May 2018 23:35:36 GMTMon, 21 May 2018\ - \ 23:35:36 GMT0third\ + body: {string: "\uFEFF312b4e6f-aa91-4ebe-89e8-32102c92bb09Tue,\ + \ 29 May 2018 19:38:51 GMTTue, 05 Jun 2018\ + \ 19:38:51 GMT1new\ + \ message!9155d910-6d25-4ab7-b4b9-9a1108e688abTue,\ + \ 29 May 2018 19:38:55 GMTTue, 05 Jun 2018\ + \ 19:38:55 GMT0second\ + \ message63101678-456f-49f1-a267-f67e48a5e0a4Tue,\ + \ 29 May 2018 19:38:56 GMTTue, 05 Jun 2018\ + \ 19:38:56 GMT0third\ \ message"} headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:56 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -702,21 +702,21 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:36 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:56 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003/messages response: - body: {string: "\uFEFF705df665-9d09-4eae-bc6b-e49ed68433c5Mon,\ - \ 14 May 2018 23:35:32 GMTMon, 21 May 2018\ - \ 23:35:32 GMTAgAAAAMAAAAAAAAAsvWDVNzr0wE=Mon,\ - \ 14 May 2018 23:36:06 GMT2new\ + body: {string: "\uFEFF312b4e6f-aa91-4ebe-89e8-32102c92bb09Tue,\ + \ 29 May 2018 19:38:51 GMTTue, 05 Jun 2018\ + \ 19:38:51 GMTAgAAAAMAAAAAAAAAwZkYwYT30wE=Tue,\ + \ 29 May 2018 19:39:27 GMT2new\ \ message!"} headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:56 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -727,16 +727,16 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:36 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:57 GMT'] x-ms-version: ['2017-11-09'] method: DELETE - uri: https://clitest000002.queue.core.windows.net/queue000003/messages/705df665-9d09-4eae-bc6b-e49ed68433c5?popreceipt=AgAAAAMAAAAAAAAAsvWDVNzr0wE%3D + uri: https://clitest000002.queue.core.windows.net/queue000003/messages/312b4e6f-aa91-4ebe-89e8-32102c92bb09?popreceipt=AgAAAAMAAAAAAAAAwZkYwYT30wE%3D response: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:36 GMT'] + date: ['Tue, 29 May 2018 19:38:57 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-11-09'] status: {code: 204, message: No Content} @@ -745,23 +745,23 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:37 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:57 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true&numofmessages=32 response: - body: {string: "\uFEFFa1ac0224-8de7-4db4-a833-adb37b52ef87Mon,\ - \ 14 May 2018 23:35:35 GMTMon, 21 May 2018\ - \ 23:35:35 GMT0second\ - \ message9300e0a3-7131-4258-ab15-fa2c23c56b70Mon,\ - \ 14 May 2018 23:35:36 GMTMon, 21 May 2018\ - \ 23:35:36 GMT0third\ + body: {string: "\uFEFF9155d910-6d25-4ab7-b4b9-9a1108e688abTue,\ + \ 29 May 2018 19:38:55 GMTTue, 05 Jun 2018\ + \ 19:38:55 GMT0second\ + \ message63101678-456f-49f1-a267-f67e48a5e0a4Tue,\ + \ 29 May 2018 19:38:56 GMTTue, 05 Jun 2018\ + \ 19:38:56 GMT0third\ \ message"} headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:37 GMT'] + date: ['Tue, 29 May 2018 19:38:57 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -772,8 +772,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:37 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:58 GMT'] x-ms-version: ['2017-11-09'] method: DELETE uri: https://clitest000002.queue.core.windows.net/queue000003/messages @@ -781,7 +781,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:37 GMT'] + date: ['Tue, 29 May 2018 19:38:57 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-11-09'] status: {code: 204, message: No Content} @@ -790,8 +790,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:37 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:58 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true&numofmessages=32 @@ -801,7 +801,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:37 GMT'] + date: ['Tue, 29 May 2018 19:38:58 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -812,8 +812,8 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:38 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:59 GMT'] x-ms-version: ['2017-11-09'] method: DELETE uri: https://clitest000002.queue.core.windows.net/queue000003 @@ -821,7 +821,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:38 GMT'] + date: ['Tue, 29 May 2018 19:38:58 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-11-09'] status: {code: 204, message: No Content} @@ -830,19 +830,19 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:38 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:59 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002.queue.core.windows.net/queue000003?comp=metadata response: body: {string: "\uFEFFQueueNotFoundThe\ - \ specified queue does not exist.\nRequestId:883c23f0-4003-00e2-04dc-eb007a000000\n\ - Time:2018-05-14T23:35:38.7056386Z"} + \ specified queue does not exist.\nRequestId:cff4fe8c-8003-006c-7a84-f7a8e1000000\n\ + Time:2018-05-29T19:38:59.6826849Z"} headers: content-length: ['217'] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:37 GMT'] + date: ['Tue, 29 May 2018 19:38:59 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] x-ms-error-code: [QueueNotFound] x-ms-version: ['2017-11-09'] @@ -852,8 +852,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.2.0rc0 (Python CPython 3.6.2; Windows - 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:38 GMT'] + 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:59 GMT'] x-ms-version: ['2017-11-09'] method: GET uri: https://clitest000002-secondary.queue.core.windows.net/?restype=service&comp=stats @@ -862,7 +862,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:38 GMT'] + date: ['Tue, 29 May 2018 19:39:01 GMT'] server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-11-09'] @@ -876,9 +876,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -887,9 +887,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:39 GMT'] + date: ['Tue, 29 May 2018 19:39:02 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdWT0xCVVBEQVNWWDY3TUtNWkQ3RVNSUTZBRzVaWUY0N1BYQ3w0NDRFNTFEOUZDRDQ2OTM5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdBU1VOVlc2N0tGUzM2SVFERFYyU1VWUUVUTUg0T1ROWlRDV3xGMDlBNTQyOTIyRTc1NjU1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_share_acl_scenarios.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_share_acl_scenarios.yaml index 85f52fbf913..7bde92ed9b1 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_share_acl_scenarios.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_share_acl_scenarios.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:29Z"}}' + "date": "2018-05-29T19:38:47Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:29Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:47Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:30 GMT'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus", @@ -38,26 +38,26 @@ interactions: Connection: [keep-alive] Content-Length: ['125'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:31 GMT'] + date: ['Tue, 29 May 2018 19:38:49 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/65d534a3-b184-4282-b8f6-05b0d10604ec?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/720bfdcc-2ce5-4950-b59b-42b4faa21d76?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 202, message: Accepted} - request: body: null @@ -66,17 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/65d534a3-b184-4282-b8f6-05b0d10604ec?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/720bfdcc-2ce5-4950-b59b-42b4faa21d76?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:31.5797505Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:31.5797505Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:31.5172251Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:49.7623577Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:49.7623577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:49.6842302Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1231'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:48 GMT'] + date: ['Tue, 29 May 2018 19:39:06 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -95,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"8O3YOzVIjExlQlotreqHDAG5anB5rTd4gKP9t4P2k5C8PqpmLZRTPeexwAZdLG7RIauOSftxz/19h368rzt9ow==","permissions":"FULL"},{"keyName":"key2","value":"7lx+QnY96uSxHi7ca00lyFg3gTzuttm+IsNTR9joXuWb6MsWZXBD390wCa310+YSE4YvN+TNu33PyB9K96tqVg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"8o46QgFW5/b784I9elPBKI4lNP8xNTF11euJxkqSTdIuV6wVxkkNUgG9yP3GhwWziZ1wiioytQXV6SMcCq3ZIw==","permissions":"FULL"},{"keyName":"key2","value":"xVyJvSNWUUSy91T++oCo+y6T41HEeeONlecdV3JbFdWh3K010SRoUW3uSA/ar/rZNxo9/FeeW3nx/sb4SqUovA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:49 GMT'] + date: ['Tue, 29 May 2018 19:39:08 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -126,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"8O3YOzVIjExlQlotreqHDAG5anB5rTd4gKP9t4P2k5C8PqpmLZRTPeexwAZdLG7RIauOSftxz/19h368rzt9ow==","permissions":"FULL"},{"keyName":"key2","value":"7lx+QnY96uSxHi7ca00lyFg3gTzuttm+IsNTR9joXuWb6MsWZXBD390wCa310+YSE4YvN+TNu33PyB9K96tqVg==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"8o46QgFW5/b784I9elPBKI4lNP8xNTF11euJxkqSTdIuV6wVxkkNUgG9yP3GhwWziZ1wiioytQXV6SMcCq3ZIw==","permissions":"FULL"},{"keyName":"key2","value":"xVyJvSNWUUSy91T++oCo+y6T41HEeeONlecdV3JbFdWh3K010SRoUW3uSA/ar/rZNxo9/FeeW3nx/sb4SqUovA==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:49 GMT'] + date: ['Tue, 29 May 2018 19:39:09 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -146,7 +146,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] status: {code: 200, message: OK} - request: body: null @@ -154,17 +154,17 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:51 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:09 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:50 GMT'] - etag: ['"0x8D5B9F36DD1338B"'] - last-modified: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:39:09 GMT'] + etag: ['"0x8D5C59BD9773D31"'] + last-modified: ['Tue, 29 May 2018 19:39:10 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -174,8 +174,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:51 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:10 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -184,9 +184,9 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:50 GMT'] - etag: ['"0x8D5B9F36DD1338B"'] - last-modified: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] + etag: ['"0x8D5C59BD9773D31"'] + last-modified: ['Tue, 29 May 2018 19:39:10 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -196,8 +196,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:10 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -206,9 +206,9 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:51 GMT'] - etag: ['"0x8D5B9F36DD1338B"'] - last-modified: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] + etag: ['"0x8D5C59BD9773D31"'] + last-modified: ['Tue, 29 May 2018 19:39:10 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -221,17 +221,17 @@ interactions: Connection: [keep-alive] Content-Length: ['184'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:11 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:51 GMT'] - etag: ['"0x8D5B9F36E585FF2"'] - last-modified: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] + etag: ['"0x8D5C59BDA0E516D"'] + last-modified: ['Tue, 29 May 2018 19:39:11 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -241,8 +241,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:11 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -250,9 +250,9 @@ interactions: body: {string: "\uFEFFtest1l"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:52 GMT'] - etag: ['"0x8D5B9F36E585FF2"'] - last-modified: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:10 GMT'] + etag: ['"0x8D5C59BDA0E516D"'] + last-modified: ['Tue, 29 May 2018 19:39:11 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -265,17 +265,17 @@ interactions: Connection: [keep-alive] Content-Length: ['296'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:11 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:52 GMT'] - etag: ['"0x8D5B9F36EAE307D"'] - last-modified: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] + etag: ['"0x8D5C59BDA5E0665"'] + last-modified: ['Tue, 29 May 2018 19:39:11 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -285,8 +285,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:11 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -294,9 +294,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Z"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:52 GMT'] - etag: ['"0x8D5B9F36EAE307D"'] - last-modified: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] + etag: ['"0x8D5C59BDA5E0665"'] + last-modified: ['Tue, 29 May 2018 19:39:11 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -309,17 +309,17 @@ interactions: Connection: [keep-alive] Content-Length: ['413'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:53 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:12 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:52 GMT'] - etag: ['"0x8D5B9F36F435F6A"'] - last-modified: ['Mon, 14 May 2018 23:35:53 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] + etag: ['"0x8D5C59BDAB2C55E"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -329,8 +329,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:54 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:12 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -338,9 +338,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Z"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:53 GMT'] - etag: ['"0x8D5B9F36F435F6A"'] - last-modified: ['Mon, 14 May 2018 23:35:53 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] + etag: ['"0x8D5C59BDAB2C55E"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -353,17 +353,17 @@ interactions: Connection: [keep-alive] Content-Length: ['591'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:54 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:12 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:53 GMT'] - etag: ['"0x8D5B9F36FA8C331"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:11 GMT'] + etag: ['"0x8D5C59BDAFE0CBF"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -373,8 +373,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:54 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:13 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -382,9 +382,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:54 GMT'] - etag: ['"0x8D5B9F36FA8C331"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:13 GMT'] + etag: ['"0x8D5C59BDAFE0CBF"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -394,8 +394,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:55 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:13 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -403,9 +403,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:54 GMT'] - etag: ['"0x8D5B9F36FA8C331"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:13 GMT'] + etag: ['"0x8D5C59BDAFE0CBF"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -415,8 +415,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:55 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:13 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -424,9 +424,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:54 GMT'] - etag: ['"0x8D5B9F36FA8C331"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:13 GMT'] + etag: ['"0x8D5C59BDAFE0CBF"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -436,8 +436,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:55 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:14 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -445,9 +445,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:55 GMT'] - etag: ['"0x8D5B9F36FA8C331"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:13 GMT'] + etag: ['"0x8D5C59BDAFE0CBF"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -457,8 +457,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:56 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:14 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -466,9 +466,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:56 GMT'] - etag: ['"0x8D5B9F36FA8C331"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:14 GMT'] + etag: ['"0x8D5C59BDAFE0CBF"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -478,8 +478,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:56 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:15 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -487,9 +487,9 @@ interactions: body: {string: "\uFEFFtest1ltest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:56 GMT'] - etag: ['"0x8D5B9F36FA8C331"'] - last-modified: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDAFE0CBF"'] + last-modified: ['Tue, 29 May 2018 19:39:12 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -502,17 +502,17 @@ interactions: Connection: [keep-alive] Content-Length: ['597'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:56 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:15 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:56 GMT'] - etag: ['"0x8D5B9F37148662D"'] - last-modified: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDC9AA1F6"'] + last-modified: ['Tue, 29 May 2018 19:39:15 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -522,8 +522,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:57 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:15 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -531,9 +531,9 @@ interactions: body: {string: "\uFEFFtest1rtest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:57 GMT'] - etag: ['"0x8D5B9F37148662D"'] - last-modified: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDC9AA1F6"'] + last-modified: ['Tue, 29 May 2018 19:39:15 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -543,8 +543,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:57 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:16 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -552,9 +552,9 @@ interactions: body: {string: "\uFEFFtest1rtest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:57 GMT'] - etag: ['"0x8D5B9F37148662D"'] - last-modified: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDC9AA1F6"'] + last-modified: ['Tue, 29 May 2018 19:39:15 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -567,17 +567,17 @@ interactions: Connection: [keep-alive] Content-Length: ['491'] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:57 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:16 GMT'] x-ms-version: ['2017-07-29'] method: PUT uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl response: body: {string: ''} headers: - date: ['Mon, 14 May 2018 23:35:57 GMT'] - etag: ['"0x8D5B9F371CE9E49"'] - last-modified: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:15 GMT'] + etag: ['"0x8D5C59BDD2B3C15"'] + last-modified: ['Tue, 29 May 2018 19:39:16 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -587,8 +587,8 @@ interactions: headers: Connection: [keep-alive] User-Agent: [Azure-Storage/1.2.0rc0-1.1.0 (Python CPython 3.6.2; Windows 10) - AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:58 GMT'] + AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:16 GMT'] x-ms-version: ['2017-07-29'] method: GET uri: https://clitest000002.file.core.windows.net/share000003?restype=share&comp=acl @@ -596,9 +596,9 @@ interactions: body: {string: "\uFEFFtest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zrwdl"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:57 GMT'] - etag: ['"0x8D5B9F371CE9E49"'] - last-modified: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:16 GMT'] + etag: ['"0x8D5C59BDD2B3C15"'] + last-modified: ['Tue, 29 May 2018 19:39:16 GMT'] server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-07-29'] @@ -612,9 +612,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -623,12 +623,12 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:17 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdMWVZDWE1ESVpQSk9ZU0MySFJWTExITE9FQVVETDdEMkQ0VHwxQUQzOUJEQ0U2NTkxM0RCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1NVNFR1hCTUpBSE5SNENGNVc2Q0lDMkNPWFU2WjVXTTdORnw4Q0I4QTNDQjRCRUU3QzRCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] status: {code: 202, message: Accepted} version: 1 diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_table_main_scenario.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_table_main_scenario.yaml index 1e0cf348326..4c3d044ab3f 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_table_main_scenario.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_storage_table_main_scenario.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2018-05-14T23:35:05Z"}}' + "date": "2018-05-29T19:38:23Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,24 +9,24 @@ interactions: Connection: [keep-alive] Content-Length: ['110'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:35:05Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:38:23Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['384'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:06 GMT'] + date: ['Tue, 29 May 2018 19:38:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] status: {code: 201, message: Created} - request: body: '{"sku": {"name": "Standard_RAGRS"}, "kind": "Storage", "location": "westus", @@ -38,20 +38,20 @@ interactions: Connection: [keep-alive] Content-Length: ['127'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:07 GMT'] + date: ['Tue, 29 May 2018 19:38:26 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/3adf3e20-9a63-497d-b830-16d5a292d8b7?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4916881c-8db1-411f-bac6-d0f995e5475d?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] @@ -66,43 +66,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/3adf3e20-9a63-497d-b830-16d5a292d8b7?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4916881c-8db1-411f-bac6-d0f995e5475d?monitor=true&api-version=2018-03-01-preview response: - body: {string: ''} - headers: - cache-control: [no-cache] - content-length: ['0'] - content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:35:24 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/3adf3e20-9a63-497d-b830-16d5a292d8b7?monitor=true&api-version=2018-02-01'] - pragma: [no-cache] - server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 - Microsoft-HTTPAPI/2.0'] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [storage account create] - Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/3adf3e20-9a63-497d-b830-16d5a292d8b7?monitor=true&api-version=2018-02-01 - response: - body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.8404742Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:35:07.8404742Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:35:07.7936057Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} + body: {string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:27.3715224Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:38:27.3715224Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:38:27.2777784Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}'} headers: cache-control: [no-cache] content-length: ['1546'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:41 GMT'] + date: ['Tue, 29 May 2018 19:38:44 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,18 +95,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"6YoxG4/16yvClX1xuFBR9osC0ofM+2exTaebD0ChB/CniSpqTE5YAlmO4N83bpT4c23Pq2bb75A03lx9iQKOpA==","permissions":"FULL"},{"keyName":"key2","value":"/bdku3R1o/Pc/4T/AnQFEvKMg9QFI09ms/A2UQUs60HUNnRsiskRLdptDBTLzwGWYhZqHwgmg1sodVsuaEcPpA==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"cb4sCHPOYTCeHqmHcqvdAPZzj5Az2qNB+LoiVDmYlkIKepvfD9Yhnf2lp9o2clAdVH3QNHUen73Z64G6EpLcgg==","permissions":"FULL"},{"keyName":"key2","value":"f3CjMKK5Wj9troz/jWOhSCPqXYb9Cns/oY+ZapGwZPKNjMK2CSmh8N8Bv9k0BC3XQqrx5E0dUCPj63syvPVQ5g==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:43 GMT'] + date: ['Tue, 29 May 2018 19:38:45 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -141,7 +115,7 @@ interactions: transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] status: {code: 200, message: OK} - request: body: null @@ -152,18 +126,18 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2018-03-01-preview response: - body: {string: '{"keys":[{"keyName":"key1","value":"6YoxG4/16yvClX1xuFBR9osC0ofM+2exTaebD0ChB/CniSpqTE5YAlmO4N83bpT4c23Pq2bb75A03lx9iQKOpA==","permissions":"FULL"},{"keyName":"key2","value":"/bdku3R1o/Pc/4T/AnQFEvKMg9QFI09ms/A2UQUs60HUNnRsiskRLdptDBTLzwGWYhZqHwgmg1sodVsuaEcPpA==","permissions":"FULL"}]}'} + body: {string: '{"keys":[{"keyName":"key1","value":"cb4sCHPOYTCeHqmHcqvdAPZzj5Az2qNB+LoiVDmYlkIKepvfD9Yhnf2lp9o2clAdVH3QNHUen73Z64G6EpLcgg==","permissions":"FULL"},{"keyName":"key2","value":"f3CjMKK5Wj9troz/jWOhSCPqXYb9Cns/oY+ZapGwZPKNjMK2CSmh8N8Bv9k0BC3XQqrx5E0dUCPj63syvPVQ5g==","permissions":"FULL"}]}'} headers: cache-control: [no-cache] content-length: ['288'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:35:43 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -184,8 +158,8 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:44 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://clitest000002.table.core.windows.net/Tables @@ -194,8 +168,8 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - dataserviceid: ['https://clitestarwetbqrz7bohdzyg.table.core.windows.net/Tables(''tabler5bkg7necu254axbcgm'')'] - date: ['Mon, 14 May 2018 23:35:44 GMT'] + dataserviceid: ['https://clitestsym42rwv3iaizlei6.table.core.windows.net/Tables(''tablex5f57urdurgxqu2g7d7'')'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] location: ['https://clitest000002.table.core.windows.net/Tables(''table000003'')'] preference-applied: [return-no-content] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] @@ -209,8 +183,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:44 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/Tables('table000003') @@ -219,7 +193,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - date: ['Mon, 14 May 2018 23:35:44 GMT'] + date: ['Tue, 29 May 2018 19:38:46 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-content-type-options: [nosniff] @@ -232,8 +206,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:45 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:47 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/Tables @@ -242,7 +216,7 @@ interactions: headers: cache-control: [no-cache] content-type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - date: ['Mon, 14 May 2018 23:35:44 GMT'] + date: ['Tue, 29 May 2018 19:38:47 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-content-type-options: [nosniff] @@ -259,8 +233,8 @@ interactions: DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] Prefer: [return-no-content] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:45 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-04-17'] method: POST uri: https://clitest000002.table.core.windows.net/table000003 @@ -269,9 +243,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - dataserviceid: ['https://clitestarwetbqrz7bohdzyg.table.core.windows.net/tabler5bkg7necu254axbcgm(PartitionKey=''001'',RowKey=''001'')'] - date: ['Mon, 14 May 2018 23:35:44 GMT'] - etag: [W/"datetime'2018-05-14T23%3A35%3A45.6360278Z'"] + dataserviceid: ['https://clitestsym42rwv3iaizlei6.table.core.windows.net/tablex5f57urdurgxqu2g7d7(PartitionKey=''001'',RowKey=''001'')'] + date: ['Tue, 29 May 2018 19:38:48 GMT'] + etag: [W/"datetime'2018-05-29T19%3A38%3A48.5169852Z'"] location: ['https://clitest000002.table.core.windows.net/table000003(PartitionKey=''001'',RowKey=''001'')'] preference-applied: [return-no-content] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] @@ -285,18 +259,18 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:45 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:48 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003(PartitionKey='001',RowKey='001') response: - body: {string: '{"odata.metadata":"https://clitest000002.table.core.windows.net/$metadata#table000003/@Element","odata.etag":"W/\"datetime''2018-05-14T23%3A35%3A45.6360278Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2018-05-14T23:35:45.6360278Z","name":"test","value":"something"}'} + body: {string: '{"odata.metadata":"https://clitest000002.table.core.windows.net/$metadata#table000003/@Element","odata.etag":"W/\"datetime''2018-05-29T19%3A38%3A48.5169852Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2018-05-29T19:38:48.5169852Z","name":"test","value":"something"}'} headers: cache-control: [no-cache] content-type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - date: ['Mon, 14 May 2018 23:35:45 GMT'] - etag: [W/"datetime'2018-05-14T23%3A35%3A45.6360278Z'"] + date: ['Tue, 29 May 2018 19:38:48 GMT'] + etag: [W/"datetime'2018-05-29T19%3A38%3A48.5169852Z'"] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-content-type-options: [nosniff] @@ -309,18 +283,18 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:46 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003(PartitionKey='001',RowKey='001')?%24select=name response: - body: {string: '{"odata.metadata":"https://clitest000002.table.core.windows.net/$metadata#table000003/@Element&$select=name","odata.etag":"W/\"datetime''2018-05-14T23%3A35%3A45.6360278Z''\"","name":"test"}'} + body: {string: '{"odata.metadata":"https://clitest000002.table.core.windows.net/$metadata#table000003/@Element&$select=name","odata.etag":"W/\"datetime''2018-05-29T19%3A38%3A48.5169852Z''\"","name":"test"}'} headers: cache-control: [no-cache] content-type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - date: ['Mon, 14 May 2018 23:35:46 GMT'] - etag: [W/"datetime'2018-05-14T23%3A35%3A45.6360278Z'"] + date: ['Tue, 29 May 2018 19:38:48 GMT'] + etag: [W/"datetime'2018-05-29T19%3A38%3A48.5169852Z'"] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-content-type-options: [nosniff] @@ -336,8 +310,8 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:46 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-04-17'] method: MERGE uri: https://clitest000002.table.core.windows.net/table000003(PartitionKey='001',RowKey='001') @@ -346,8 +320,8 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:46 GMT'] - etag: [W/"datetime'2018-05-14T23%3A35%3A46.7360852Z'"] + date: ['Tue, 29 May 2018 19:38:48 GMT'] + etag: [W/"datetime'2018-05-29T19%3A38%3A49.6770323Z'"] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-content-type-options: [nosniff] x-ms-version: ['2017-04-17'] @@ -359,18 +333,18 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:46 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:49 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003(PartitionKey='001',RowKey='001') response: - body: {string: '{"odata.metadata":"https://clitest000002.table.core.windows.net/$metadata#table000003/@Element","odata.etag":"W/\"datetime''2018-05-14T23%3A35%3A46.7360852Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2018-05-14T23:35:46.7360852Z","name":"test","value":"newval"}'} + body: {string: '{"odata.metadata":"https://clitest000002.table.core.windows.net/$metadata#table000003/@Element","odata.etag":"W/\"datetime''2018-05-29T19%3A38%3A49.6770323Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2018-05-29T19:38:49.6770323Z","name":"test","value":"newval"}'} headers: cache-control: [no-cache] content-type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - date: ['Mon, 14 May 2018 23:35:46 GMT'] - etag: [W/"datetime'2018-05-14T23%3A35%3A46.7360852Z'"] + date: ['Tue, 29 May 2018 19:38:49 GMT'] + etag: [W/"datetime'2018-05-29T19%3A38%3A49.6770323Z'"] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-content-type-options: [nosniff] @@ -386,8 +360,8 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:47 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://clitest000002.table.core.windows.net/table000003(PartitionKey='001',RowKey='001') @@ -396,8 +370,8 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:46 GMT'] - etag: [W/"datetime'2018-05-14T23%3A35%3A47.3835439Z'"] + date: ['Tue, 29 May 2018 19:38:49 GMT'] + etag: [W/"datetime'2018-05-29T19%3A38%3A50.4317503Z'"] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-content-type-options: [nosniff] x-ms-version: ['2017-04-17'] @@ -409,18 +383,18 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:47 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:50 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003(PartitionKey='001',RowKey='001') response: - body: {string: '{"odata.metadata":"https://clitest000002.table.core.windows.net/$metadata#table000003/@Element","odata.etag":"W/\"datetime''2018-05-14T23%3A35%3A47.3835439Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2018-05-14T23:35:47.3835439Z","cat":"hat"}'} + body: {string: '{"odata.metadata":"https://clitest000002.table.core.windows.net/$metadata#table000003/@Element","odata.etag":"W/\"datetime''2018-05-29T19%3A38%3A50.4317503Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2018-05-29T19:38:50.4317503Z","cat":"hat"}'} headers: cache-control: [no-cache] content-type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - date: ['Mon, 14 May 2018 23:35:47 GMT'] - etag: [W/"datetime'2018-05-14T23%3A35%3A47.3835439Z'"] + date: ['Tue, 29 May 2018 19:38:49 GMT'] + etag: [W/"datetime'2018-05-29T19%3A38%3A50.4317503Z'"] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-content-type-options: [nosniff] @@ -435,8 +409,8 @@ interactions: DataServiceVersion: [3.0;NetFx] If-Match: ['*'] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:47 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:51 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://clitest000002.table.core.windows.net/table000003(PartitionKey='001',RowKey='001') @@ -445,7 +419,7 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:47 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-content-type-options: [nosniff] x-ms-version: ['2017-04-17'] @@ -457,18 +431,18 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:48 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003(PartitionKey='001',RowKey='001') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:13a04c85-c002-00e8-0cdc-ebfec9000000\nTime:2018-05-14T23:35:48.2959044Z"}}}'} + specified resource does not exist.\nRequestId:dac65e7e-0002-0025-0f84-f75798000000\nTime:2018-05-29T19:38:51.5795614Z"}}}'} headers: cache-control: [no-cache] content-type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8] - date: ['Mon, 14 May 2018 23:35:48 GMT'] + date: ['Tue, 29 May 2018 19:38:50 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-content-type-options: [nosniff] @@ -480,8 +454,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:48 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:51 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -490,7 +464,7 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:48 GMT'] + date: ['Tue, 29 May 2018 19:38:51 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -501,8 +475,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:48 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -511,7 +485,7 @@ interactions: \ />"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:48 GMT'] + date: ['Tue, 29 May 2018 19:38:51 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -525,8 +499,8 @@ interactions: Content-Length: ['184'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:49 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -534,7 +508,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:48 GMT'] + date: ['Tue, 29 May 2018 19:38:51 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} @@ -544,8 +518,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:49 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:52 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -553,7 +527,7 @@ interactions: body: {string: "\uFEFFtest1a"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:49 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -567,8 +541,8 @@ interactions: Content-Length: ['296'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:50 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -576,7 +550,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:50 GMT'] + date: ['Tue, 29 May 2018 19:38:52 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} @@ -586,8 +560,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:51 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:53 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -595,7 +569,7 @@ interactions: body: {string: "\uFEFFtest1atest22016-01-01T00:00:00.0000000Z"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:38:53 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -609,8 +583,8 @@ interactions: Content-Length: ['413'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:51 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:53 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -618,7 +592,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:38:53 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} @@ -628,8 +602,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:54 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -637,7 +611,7 @@ interactions: body: {string: "\uFEFFtest1atest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Z"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:38:53 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -651,8 +625,8 @@ interactions: Content-Length: ['591'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:54 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -660,7 +634,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:51 GMT'] + date: ['Tue, 29 May 2018 19:38:54 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} @@ -670,8 +644,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:52 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:55 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -679,7 +653,7 @@ interactions: body: {string: "\uFEFFtest1atest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:38:57 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -690,8 +664,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:53 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -699,7 +673,7 @@ interactions: body: {string: "\uFEFFtest1atest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:52 GMT'] + date: ['Tue, 29 May 2018 19:38:58 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -710,8 +684,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:53 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:58 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -719,7 +693,7 @@ interactions: body: {string: "\uFEFFtest1atest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:53 GMT'] + date: ['Tue, 29 May 2018 19:38:58 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -730,8 +704,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:53 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -739,7 +713,7 @@ interactions: body: {string: "\uFEFFtest1atest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:38:59 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -750,8 +724,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:54 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:38:59 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -759,7 +733,7 @@ interactions: body: {string: "\uFEFFtest1atest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:38:59 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -770,8 +744,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:55 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -779,7 +753,7 @@ interactions: body: {string: "\uFEFFtest1atest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:54 GMT'] + date: ['Tue, 29 May 2018 19:38:59 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -793,8 +767,8 @@ interactions: Content-Length: ['598'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:55 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:00 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -802,7 +776,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:00 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} @@ -812,8 +786,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:58 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:00 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -821,7 +795,7 @@ interactions: body: {string: "\uFEFFtest1autest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:57 GMT'] + date: ['Tue, 29 May 2018 19:39:00 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -832,8 +806,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:58 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:01 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -841,7 +815,7 @@ interactions: body: {string: "\uFEFFtest1autest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:00 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -855,8 +829,8 @@ interactions: Content-Length: ['491'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:59 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:01 GMT'] x-ms-version: ['2017-04-17'] method: PUT uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -864,7 +838,7 @@ interactions: body: {string: ''} headers: content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:58 GMT'] + date: ['Tue, 29 May 2018 19:39:00 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-ms-version: ['2017-04-17'] status: {code: 204, message: No Content} @@ -874,8 +848,8 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:59 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:02 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/table000003?comp=acl @@ -883,7 +857,7 @@ interactions: body: {string: "\uFEFFtest22016-01-01T00:00:00.0000000Ztest32018-01-01T00:00:00.0000000Ztest42016-01-01T00:00:00.0000000Z2016-05-01T00:00:00.0000000Zraud"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:35:59 GMT'] + date: ['Tue, 29 May 2018 19:39:01 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -896,8 +870,8 @@ interactions: Content-Length: ['0'] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:35:59 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:02 GMT'] x-ms-version: ['2017-04-17'] method: DELETE uri: https://clitest000002.table.core.windows.net/Tables('table000003') @@ -906,7 +880,7 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:35:59 GMT'] + date: ['Tue, 29 May 2018 19:39:02 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] x-content-type-options: [nosniff] x-ms-version: ['2017-04-17'] @@ -918,18 +892,18 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:00 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002.table.core.windows.net/Tables('table000003') response: body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The - specified resource does not exist.\nRequestId:51b0b0ac-b002-012f-79dc-ebc45d000000\nTime:2018-05-14T23:36:00.4016675Z"}}}'} + specified resource does not exist.\nRequestId:0238da47-4002-0044-0b84-f71347000000\nTime:2018-05-29T19:39:03.2518167Z"}}}'} headers: cache-control: [no-cache] content-type: [application/json;odata=nometadata;streaming=true;charset=utf-8] - date: ['Mon, 14 May 2018 23:35:59 GMT'] + date: ['Tue, 29 May 2018 19:39:02 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-content-type-options: [nosniff] @@ -941,17 +915,16 @@ interactions: Connection: [keep-alive] DataServiceVersion: [3.0;NetFx] MaxDataServiceVersion: ['3.0'] - User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.33] - x-ms-date: ['Mon, 14 May 2018 23:36:00 GMT'] + User-Agent: [Azure-CosmosDB/0.37.1 (Python CPython 3.6.2; Windows 10) AZURECLI/2.0.34] + x-ms-date: ['Tue, 29 May 2018 19:39:03 GMT'] x-ms-version: ['2017-04-17'] method: GET uri: https://clitest000002-secondary.table.core.windows.net/?restype=service&comp=stats response: - body: {string: "\uFEFFliveMon,\ - \ 14 May 2018 23:33:26 GMT"} + body: {string: "\uFEFFunavailable"} headers: content-type: [application/xml] - date: ['Mon, 14 May 2018 23:36:00 GMT'] + date: ['Tue, 29 May 2018 19:39:03 GMT'] server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0] transfer-encoding: [chunked] x-ms-version: ['2017-04-17'] @@ -965,9 +938,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -976,9 +949,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:36:01 GMT'] + date: ['Tue, 29 May 2018 19:39:04 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1S0hBQlRHWUxTSTJaU0lVRDNMSENNM1IzUUE3Rk5PWlZJTXxFRkVDMzNBNkIxMTc0ODE3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdTQU1LT01KWkY1TlZGUFJXRjVNRkJIMkFLS0RQN0RGNFRDSXxBRkM4QkRCRDFFNjdCMzMzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml index c8d2916548e..1615e1282ba 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml +++ b/src/storage-preview/azext_storage_preview/tests/latest/recordings/test_update_storage_account_with_assigned_identity.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "southcentralus", "tags": {"product": "azurecli", "cause": - "automation", "date": "2018-05-14T23:41:20Z"}}' + "automation", "date": "2018-05-29T19:44:51Z"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] @@ -9,19 +9,19 @@ interactions: Connection: [keep-alive] Content-Length: ['118'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:41:20Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:44:51Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:41:21 GMT'] + date: ['Tue, 29 May 2018 19:44:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -36,19 +36,19 @@ interactions: CommandName: [storage account create] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 response: - body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-14T23:41:20Z"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2018-05-29T19:44:51Z"},"properties":{"provisioningState":"Succeeded"}}'} headers: cache-control: [no-cache] content-length: ['392'] content-type: [application/json; charset=utf-8] - date: ['Mon, 14 May 2018 23:41:21 GMT'] + date: ['Tue, 29 May 2018 19:44:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -65,26 +65,26 @@ interactions: Connection: [keep-alive] Content-Length: ['133'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: body: {string: ''} headers: cache-control: [no-cache] content-length: ['0'] content-type: [text/plain; charset=utf-8] - date: ['Mon, 14 May 2018 23:41:23 GMT'] + date: ['Tue, 29 May 2018 19:44:55 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/f2459c41-3345-409b-933c-44f01c128fab?monitor=true&api-version=2018-02-01'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6521a689-588c-4ae7-b5d1-29420b0b19e1?monitor=true&api-version=2018-03-01-preview'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0'] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] status: {code: 202, message: Accepted} - request: body: null @@ -93,17 +93,17 @@ interactions: Accept-Encoding: ['gzip, deflate'] CommandName: [storage account create] Connection: [keep-alive] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/f2459c41-3345-409b-933c-44f01c128fab?monitor=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6521a689-588c-4ae7-b5d1-29420b0b19e1?monitor=true&api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:41:23.7395951Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:41:23.7395951Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:41:23.5208666Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:44:54.6071353Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:44:54.6071353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:44:54.5290128Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1247'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:41:41 GMT'] + date: ['Tue, 29 May 2018 19:45:12 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -121,18 +121,18 @@ interactions: CommandName: [storage account update] Connection: [keep-alive] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:41:23.7395951Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:41:23.7395951Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:41:23.5208666Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:44:54.6071353Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:44:54.6071353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:44:54.5290128Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1247'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:41:42 GMT'] + date: ['Tue, 29 May 2018 19:45:13 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -155,18 +155,18 @@ interactions: Connection: [keep-alive] Content-Length: ['366'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 - msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc1 Azure-SDK-For-Python AZURECLI/2.0.33] + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 + msrest_azure/0.4.29 azure-mgmt-storage/2.0.0rc2 Azure-SDK-For-Python AZURECLI/2.0.34] accept-language: [en-US] method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2018-03-01-preview response: - body: {string: '{"identity":{"principalId":"8c91883e-ac4e-459b-9b7b-ca6faf7c1504","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-14T23:41:23.7395951Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-14T23:41:23.7395951Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-14T23:41:23.5208666Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} + body: {string: '{"identity":{"principalId":"c2655797-c067-48a2-8cce-6fe158fdb7a7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","name":"cli000002","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"trustedDirectories":["72f988bf-86f1-41af-91ab-2d7cd011db47"],"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-29T19:44:54.6071353Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-29T19:44:54.6071353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-29T19:44:54.5290128Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/","file":"https://cli000002.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}'} headers: cache-control: [no-cache] content-length: ['1387'] content-type: [application/json] - date: ['Mon, 14 May 2018 23:41:46 GMT'] + date: ['Tue, 29 May 2018 19:45:16 GMT'] expires: ['-1'] pragma: [no-cache] server: ['Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 @@ -186,9 +186,9 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.29 + User-Agent: [python/3.6.2 (Windows-10-10.0.17134-SP0) requests/2.18.4 msrest/0.4.29 msrest_azure/0.4.29 resourcemanagementclient/1.2.1 Azure-SDK-For-Python - AZURECLI/2.0.33] + AZURECLI/2.0.34] accept-language: [en-US] method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2017-05-10 @@ -197,9 +197,9 @@ interactions: headers: cache-control: [no-cache] content-length: ['0'] - date: ['Mon, 14 May 2018 23:41:48 GMT'] + date: ['Tue, 29 May 2018 19:45:18 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHS0ZJQUhMRk1CN1RQT1dUTVo1RkVETlhHVlFWNEJHRU9aWXxFQzU3OUU3Njk3MjIwNDYwLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdYWFVFWEM1WjJJVlhIQlRPSVZYUDdXU0pONFhaSUpHTzZCVHw5MzI4NUU1QzYwRjcxQ0ZCLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2017-05-10'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] diff --git a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_account_scenarios.py b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_account_scenarios.py index 2be318d5190..d0a13c206d8 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_account_scenarios.py +++ b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_account_scenarios.py @@ -255,6 +255,26 @@ def test_customer_managed_key(self, resource_group, storage_account): '--encryption-key-name testkey ' '--encryption-key-version {ver} ') + @ResourceGroupPreparer(location='eastus2euap') + def test_management_policy(self, resource_group): + import os + from msrestazure.azure_exceptions import CloudError + curr_dir = os.path.dirname(os.path.realpath(__file__)) + policy_file = os.path.join(curr_dir, 'mgmt_policy.json').replace('\\', '\\\\') + + storage_account = self.create_random_name(prefix='cli', length=24) + + self.kwargs = {'rg': resource_group, 'sa': storage_account, 'policy': policy_file} + self.cmd('storage account create -g {rg} -n {sa} --kind StorageV2') + self.cmd('storage account management-policy create --account-name {sa} -g {rg} --policy @"{policy}"') + self.cmd('storage account management-policy update --account-name {sa} -g {rg}' + ' --set "policy.rules[0].name=newname"') + self.cmd('storage account management-policy show --account-name {sa} -g {rg}', + checks=JMESPathCheck('policy.rules[0].name', 'newname')) + self.cmd('storage account management-policy delete --account-name {sa} -g {rg}') + with self.assertRaises(CloudError): + self.cmd('storage account management-policy show --account-name {sa} -g {rg}') + @api_version_constraint(CUSTOM_MGMT_STORAGE, max_api='2016-01-01') class StorageAccountTestsForStack(StorageScenarioMixin, ScenarioTest): diff --git a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_validators.py b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_validators.py index 3acfa9e23fb..ce0f8301beb 100644 --- a/src/storage-preview/azext_storage_preview/tests/latest/test_storage_validators.py +++ b/src/storage-preview/azext_storage_preview/tests/latest/test_storage_validators.py @@ -161,6 +161,7 @@ def test_storage_get_char_options_validator(self): class TestEncryptionValidators(unittest.TestCase): def setUp(self): self.cli = MockCLI() + register_resource_type('latest', CUSTOM_MGMT_STORAGE, '2018-03-01-preview') def test_validate_encryption_services(self): ns = Namespace(encryption_services=['blob'], _cmd=MockCmd(self.cli)) diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/storage_management_client.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/storage_management_client.py index f276d8582ea..40b0c51a3ac 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/storage_management_client.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/storage_management_client.py @@ -114,6 +114,7 @@ def models(cls, api_version=DEFAULT_API_VERSION): * 2017-06-01: :mod:`v2017_06_01.models` * 2017-10-01: :mod:`v2017_10_01.models` * 2018-02-01: :mod:`v2018_02_01.models` + * 2018-03-01-preview: :mod:`v2018_03_01_preview.models` """ if api_version == '2015-06-15': from .v2015_06_15 import models @@ -133,6 +134,9 @@ def models(cls, api_version=DEFAULT_API_VERSION): elif api_version == '2018-02-01': from .v2018_02_01 import models return models + elif api_version == '2018-03-01-preview': + from .v2018_03_01_preview import models + return models raise NotImplementedError("APIVersion {} is not available".format(api_version)) @property @@ -140,10 +144,13 @@ def blob_containers(self): """Instance depends on the API version: * 2018-02-01: :class:`BlobContainersOperations` + * 2018-03-01-preview: :class:`BlobContainersOperations` """ api_version = self._get_api_version('blob_containers') if api_version == '2018-02-01': from .v2018_02_01.operations import BlobContainersOperations as OperationClass + elif api_version == '2018-03-01-preview': + from .v2018_03_01_preview.operations import BlobContainersOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -155,6 +162,7 @@ def operations(self): * 2017-06-01: :class:`Operations` * 2017-10-01: :class:`Operations` * 2018-02-01: :class:`Operations` + * 2018-03-01-preview: :class:`Operations` """ api_version = self._get_api_version('operations') if api_version == '2017-06-01': @@ -163,6 +171,8 @@ def operations(self): from .v2017_10_01.operations import Operations as OperationClass elif api_version == '2018-02-01': from .v2018_02_01.operations import Operations as OperationClass + elif api_version == '2018-03-01-preview': + from .v2018_03_01_preview.operations import Operations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -174,6 +184,7 @@ def skus(self): * 2017-06-01: :class:`SkusOperations` * 2017-10-01: :class:`SkusOperations` * 2018-02-01: :class:`SkusOperations` + * 2018-03-01-preview: :class:`SkusOperations` """ api_version = self._get_api_version('skus') if api_version == '2017-06-01': @@ -182,6 +193,8 @@ def skus(self): from .v2017_10_01.operations import SkusOperations as OperationClass elif api_version == '2018-02-01': from .v2018_02_01.operations import SkusOperations as OperationClass + elif api_version == '2018-03-01-preview': + from .v2018_03_01_preview.operations import SkusOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -196,6 +209,7 @@ def storage_accounts(self): * 2017-06-01: :class:`StorageAccountsOperations` * 2017-10-01: :class:`StorageAccountsOperations` * 2018-02-01: :class:`StorageAccountsOperations` + * 2018-03-01-preview: :class:`StorageAccountsOperations` """ api_version = self._get_api_version('storage_accounts') if api_version == '2015-06-15': @@ -210,6 +224,8 @@ def storage_accounts(self): from .v2017_10_01.operations import StorageAccountsOperations as OperationClass elif api_version == '2018-02-01': from .v2018_02_01.operations import StorageAccountsOperations as OperationClass + elif api_version == '2018-03-01-preview': + from .v2018_03_01_preview.operations import StorageAccountsOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -241,3 +257,16 @@ def usage(self): else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def usages(self): + """Instance depends on the API version: + + * 2018-03-01-preview: :class:`UsagesOperations` + """ + api_version = self._get_api_version('usages') + if api_version == '2018-03-01-preview': + from .v2018_03_01_preview.operations import UsagesOperations as OperationClass + else: + raise NotImplementedError("APIVersion {} is not available".format(api_version)) + return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/__init__.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/__init__.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/__init__.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/__init__.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/__init__.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/__init__.py similarity index 94% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/__init__.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/__init__.py index 010d2c21291..d5121718507 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/__init__.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/__init__.py @@ -42,10 +42,12 @@ from .list_account_sas_response_py3 import ListAccountSasResponse from .service_sas_parameters_py3 import ServiceSasParameters from .list_service_sas_response_py3 import ListServiceSasResponse + from .storage_account_management_policies_py3 import StorageAccountManagementPolicies + from .management_policies_rules_set_parameter_py3 import ManagementPoliciesRulesSetParameter from .proxy_resource_py3 import ProxyResource + from .tracked_resource_py3 import TrackedResource from .azure_entity_resource_py3 import AzureEntityResource from .resource_py3 import Resource - from .tracked_resource_py3 import TrackedResource from .update_history_property_py3 import UpdateHistoryProperty from .immutability_policy_properties_py3 import ImmutabilityPolicyProperties from .tag_property_py3 import TagProperty @@ -88,10 +90,12 @@ from .list_account_sas_response import ListAccountSasResponse from .service_sas_parameters import ServiceSasParameters from .list_service_sas_response import ListServiceSasResponse + from .storage_account_management_policies import StorageAccountManagementPolicies + from .management_policies_rules_set_parameter import ManagementPoliciesRulesSetParameter from .proxy_resource import ProxyResource + from .tracked_resource import TrackedResource from .azure_entity_resource import AzureEntityResource from .resource import Resource - from .tracked_resource import TrackedResource from .update_history_property import UpdateHistoryProperty from .immutability_policy_properties import ImmutabilityPolicyProperties from .tag_property import TagProperty @@ -167,10 +171,12 @@ 'ListAccountSasResponse', 'ServiceSasParameters', 'ListServiceSasResponse', + 'StorageAccountManagementPolicies', + 'ManagementPoliciesRulesSetParameter', 'ProxyResource', + 'TrackedResource', 'AzureEntityResource', 'Resource', - 'TrackedResource', 'UpdateHistoryProperty', 'ImmutabilityPolicyProperties', 'TagProperty', diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/account_sas_parameters.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/account_sas_parameters.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/account_sas_parameters.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/account_sas_parameters.py index 7acf3ff04e9..8ae3152f1b2 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/account_sas_parameters.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/account_sas_parameters.py @@ -20,27 +20,28 @@ class AccountSasParameters(Model): :param services: Required. The signed services accessible with the account SAS. Possible values include: Blob (b), Queue (q), Table (t), File (f). Possible values include: 'b', 'q', 't', 'f' - :type services: str or ~azure.mgmt.storage.v2018_02_01.models.Services + :type services: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.Services :param resource_types: Required. The signed resource types that are accessible with the account SAS. Service (s): Access to service-level APIs; Container (c): Access to container-level APIs; Object (o): Access to object-level APIs for blobs, queue messages, table entities, and files. Possible values include: 's', 'c', 'o' :type resource_types: str or - ~azure.mgmt.storage.v2018_02_01.models.SignedResourceTypes + ~azure.mgmt.storage.v2018_03_01_preview.models.SignedResourceTypes :param permissions: Required. The signed permissions for the account SAS. Possible values include: Read (r), Write (w), Delete (d), List (l), Add (a), Create (c), Update (u) and Process (p). Possible values include: 'r', 'd', 'w', 'l', 'a', 'c', 'u', 'p' :type permissions: str or - ~azure.mgmt.storage.v2018_02_01.models.Permissions + ~azure.mgmt.storage.v2018_03_01_preview.models.Permissions :param ip_address_or_range: An IP address or a range of IP addresses from which to accept requests. :type ip_address_or_range: str :param protocols: The protocol permitted for a request made with the account SAS. Possible values include: 'https,http', 'https' :type protocols: str or - ~azure.mgmt.storage.v2018_02_01.models.HttpProtocol + ~azure.mgmt.storage.v2018_03_01_preview.models.HttpProtocol :param shared_access_start_time: The time at which the SAS becomes valid. :type shared_access_start_time: datetime :param shared_access_expiry_time: Required. The time at which the shared diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/account_sas_parameters_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/account_sas_parameters_py3.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/account_sas_parameters_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/account_sas_parameters_py3.py index 3d0bb4cd3ad..305a5c27508 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/account_sas_parameters_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/account_sas_parameters_py3.py @@ -20,27 +20,28 @@ class AccountSasParameters(Model): :param services: Required. The signed services accessible with the account SAS. Possible values include: Blob (b), Queue (q), Table (t), File (f). Possible values include: 'b', 'q', 't', 'f' - :type services: str or ~azure.mgmt.storage.v2018_02_01.models.Services + :type services: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.Services :param resource_types: Required. The signed resource types that are accessible with the account SAS. Service (s): Access to service-level APIs; Container (c): Access to container-level APIs; Object (o): Access to object-level APIs for blobs, queue messages, table entities, and files. Possible values include: 's', 'c', 'o' :type resource_types: str or - ~azure.mgmt.storage.v2018_02_01.models.SignedResourceTypes + ~azure.mgmt.storage.v2018_03_01_preview.models.SignedResourceTypes :param permissions: Required. The signed permissions for the account SAS. Possible values include: Read (r), Write (w), Delete (d), List (l), Add (a), Create (c), Update (u) and Process (p). Possible values include: 'r', 'd', 'w', 'l', 'a', 'c', 'u', 'p' :type permissions: str or - ~azure.mgmt.storage.v2018_02_01.models.Permissions + ~azure.mgmt.storage.v2018_03_01_preview.models.Permissions :param ip_address_or_range: An IP address or a range of IP addresses from which to accept requests. :type ip_address_or_range: str :param protocols: The protocol permitted for a request made with the account SAS. Possible values include: 'https,http', 'https' :type protocols: str or - ~azure.mgmt.storage.v2018_02_01.models.HttpProtocol + ~azure.mgmt.storage.v2018_03_01_preview.models.HttpProtocol :param shared_access_start_time: The time at which the SAS becomes valid. :type shared_access_start_time: datetime :param shared_access_expiry_time: Required. The time at which the shared diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/azure_entity_resource.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/azure_entity_resource.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/azure_entity_resource.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/azure_entity_resource.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/azure_entity_resource_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/azure_entity_resource_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/azure_entity_resource_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/azure_entity_resource_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/blob_container.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/blob_container.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/blob_container.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/blob_container.py index 96909e68f45..aa1d2acd4c2 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/blob_container.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/blob_container.py @@ -33,33 +33,33 @@ class BlobContainer(AzureEntityResource): accessed publicly and the level of access. Possible values include: 'Container', 'Blob', 'None' :type public_access: str or - ~azure.mgmt.storage.v2018_02_01.models.PublicAccess + ~azure.mgmt.storage.v2018_03_01_preview.models.PublicAccess :ivar last_modified_time: Returns the date and time the container was last modified. :vartype last_modified_time: datetime :ivar lease_status: The lease status of the container. Possible values include: 'Locked', 'Unlocked' :vartype lease_status: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseStatus + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseStatus :ivar lease_state: Lease state of the container. Possible values include: 'Available', 'Leased', 'Expired', 'Breaking', 'Broken' :vartype lease_state: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseState + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseState :ivar lease_duration: Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased. Possible values include: 'Infinite', 'Fixed' :vartype lease_duration: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseDuration + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseDuration :param metadata: A name-value pair to associate with the container as metadata. :type metadata: dict[str, str] :ivar immutability_policy: The ImmutabilityPolicy property of the container. :vartype immutability_policy: - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyProperties :ivar legal_hold: The LegalHold property of the container. :vartype legal_hold: - ~azure.mgmt.storage.v2018_02_01.models.LegalHoldProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.LegalHoldProperties :ivar has_legal_hold: The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/blob_container_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/blob_container_py3.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/blob_container_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/blob_container_py3.py index 2866795ab51..680ad34c680 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/blob_container_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/blob_container_py3.py @@ -33,33 +33,33 @@ class BlobContainer(AzureEntityResource): accessed publicly and the level of access. Possible values include: 'Container', 'Blob', 'None' :type public_access: str or - ~azure.mgmt.storage.v2018_02_01.models.PublicAccess + ~azure.mgmt.storage.v2018_03_01_preview.models.PublicAccess :ivar last_modified_time: Returns the date and time the container was last modified. :vartype last_modified_time: datetime :ivar lease_status: The lease status of the container. Possible values include: 'Locked', 'Unlocked' :vartype lease_status: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseStatus + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseStatus :ivar lease_state: Lease state of the container. Possible values include: 'Available', 'Leased', 'Expired', 'Breaking', 'Broken' :vartype lease_state: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseState + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseState :ivar lease_duration: Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased. Possible values include: 'Infinite', 'Fixed' :vartype lease_duration: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseDuration + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseDuration :param metadata: A name-value pair to associate with the container as metadata. :type metadata: dict[str, str] :ivar immutability_policy: The ImmutabilityPolicy property of the container. :vartype immutability_policy: - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyProperties :ivar legal_hold: The LegalHold property of the container. :vartype legal_hold: - ~azure.mgmt.storage.v2018_02_01.models.LegalHoldProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.LegalHoldProperties :ivar has_legal_hold: The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/check_name_availability_result.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/check_name_availability_result.py similarity index 95% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/check_name_availability_result.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/check_name_availability_result.py index d4fdcfdf858..41c2210d22a 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/check_name_availability_result.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/check_name_availability_result.py @@ -25,7 +25,8 @@ class CheckNameAvailabilityResult(Model): :ivar reason: Gets the reason that a storage account name could not be used. The Reason element is only returned if NameAvailable is false. Possible values include: 'AccountNameInvalid', 'AlreadyExists' - :vartype reason: str or ~azure.mgmt.storage.v2018_02_01.models.Reason + :vartype reason: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.Reason :ivar message: Gets an error message explaining the Reason value in more detail. :vartype message: str diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/check_name_availability_result_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/check_name_availability_result_py3.py similarity index 95% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/check_name_availability_result_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/check_name_availability_result_py3.py index 41a2fada1f8..9d10045600b 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/check_name_availability_result_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/check_name_availability_result_py3.py @@ -25,7 +25,8 @@ class CheckNameAvailabilityResult(Model): :ivar reason: Gets the reason that a storage account name could not be used. The Reason element is only returned if NameAvailable is false. Possible values include: 'AccountNameInvalid', 'AlreadyExists' - :vartype reason: str or ~azure.mgmt.storage.v2018_02_01.models.Reason + :vartype reason: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.Reason :ivar message: Gets an error message explaining the Reason value in more detail. :vartype message: str diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/custom_domain.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/custom_domain.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/custom_domain.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/custom_domain.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/custom_domain_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/custom_domain_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/custom_domain_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/custom_domain_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/dimension.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/dimension.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/dimension.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/dimension.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/dimension_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/dimension_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/dimension_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/dimension_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption.py similarity index 87% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption.py index c9fcc801ead..06c2c3f1a3b 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption.py @@ -18,15 +18,17 @@ class Encryption(Model): All required parameters must be populated in order to send to Azure. :param services: List of services which support encryption. - :type services: ~azure.mgmt.storage.v2018_02_01.models.EncryptionServices + :type services: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionServices :param key_source: Required. The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault. Possible values include: 'Microsoft.Storage', 'Microsoft.Keyvault'. Default value: "Microsoft.Storage" . - :type key_source: str or ~azure.mgmt.storage.v2018_02_01.models.KeySource + :type key_source: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.KeySource :param key_vault_properties: Properties provided by key vault. :type key_vault_properties: - ~azure.mgmt.storage.v2018_02_01.models.KeyVaultProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.KeyVaultProperties """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_py3.py similarity index 87% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_py3.py index d4f941b70bf..7fe3395b43f 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_py3.py @@ -18,15 +18,17 @@ class Encryption(Model): All required parameters must be populated in order to send to Azure. :param services: List of services which support encryption. - :type services: ~azure.mgmt.storage.v2018_02_01.models.EncryptionServices + :type services: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionServices :param key_source: Required. The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault. Possible values include: 'Microsoft.Storage', 'Microsoft.Keyvault'. Default value: "Microsoft.Storage" . - :type key_source: str or ~azure.mgmt.storage.v2018_02_01.models.KeySource + :type key_source: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.KeySource :param key_vault_properties: Properties provided by key vault. :type key_vault_properties: - ~azure.mgmt.storage.v2018_02_01.models.KeyVaultProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.KeyVaultProperties """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_service.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_service.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_service.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_service.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_service_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_service_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_service_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_service_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_services.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_services.py similarity index 82% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_services.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_services.py index e47d51e5e2e..c7d48b4fb67 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_services.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_services.py @@ -19,13 +19,17 @@ class EncryptionServices(Model): sending a request. :param blob: The encryption function of the blob storage service. - :type blob: ~azure.mgmt.storage.v2018_02_01.models.EncryptionService + :type blob: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionService :param file: The encryption function of the file storage service. - :type file: ~azure.mgmt.storage.v2018_02_01.models.EncryptionService + :type file: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionService :ivar table: The encryption function of the table storage service. - :vartype table: ~azure.mgmt.storage.v2018_02_01.models.EncryptionService + :vartype table: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionService :ivar queue: The encryption function of the queue storage service. - :vartype queue: ~azure.mgmt.storage.v2018_02_01.models.EncryptionService + :vartype queue: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionService """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_services_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_services_py3.py similarity index 81% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_services_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_services_py3.py index 02f2f95c73e..b8fe7987604 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/encryption_services_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/encryption_services_py3.py @@ -19,13 +19,17 @@ class EncryptionServices(Model): sending a request. :param blob: The encryption function of the blob storage service. - :type blob: ~azure.mgmt.storage.v2018_02_01.models.EncryptionService + :type blob: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionService :param file: The encryption function of the file storage service. - :type file: ~azure.mgmt.storage.v2018_02_01.models.EncryptionService + :type file: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionService :ivar table: The encryption function of the table storage service. - :vartype table: ~azure.mgmt.storage.v2018_02_01.models.EncryptionService + :vartype table: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionService :ivar queue: The encryption function of the queue storage service. - :vartype queue: ~azure.mgmt.storage.v2018_02_01.models.EncryptionService + :vartype queue: + ~azure.mgmt.storage.v2018_03_01_preview.models.EncryptionService """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/endpoints.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/endpoints.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/endpoints.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/endpoints.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/endpoints_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/endpoints_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/endpoints_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/endpoints_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/identity.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/identity.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/identity.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/identity.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/identity_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/identity_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/identity_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/identity_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy.py similarity index 97% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy.py index 2b8eb01dea0..2ec3c69f0f7 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy.py @@ -39,7 +39,7 @@ class ImmutabilityPolicy(AzureEntityResource): values include: Locked and Unlocked. Possible values include: 'Locked', 'Unlocked' :vartype state: str or - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyState + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyState """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_properties.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_properties.py similarity index 93% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_properties.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_properties.py index 60d6e13f0c0..80da1f189c1 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_properties.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_properties.py @@ -28,13 +28,13 @@ class ImmutabilityPolicyProperties(Model): values include: Locked and Unlocked. Possible values include: 'Locked', 'Unlocked' :vartype state: str or - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyState + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyState :ivar etag: ImmutabilityPolicy Etag. :vartype etag: str :ivar update_history: The ImmutabilityPolicy update history of the blob container. :vartype update_history: - list[~azure.mgmt.storage.v2018_02_01.models.UpdateHistoryProperty] + list[~azure.mgmt.storage.v2018_03_01_preview.models.UpdateHistoryProperty] """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_properties_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_properties_py3.py similarity index 93% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_properties_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_properties_py3.py index 3f0434d3c7c..586e5c4667f 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_properties_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_properties_py3.py @@ -28,13 +28,13 @@ class ImmutabilityPolicyProperties(Model): values include: Locked and Unlocked. Possible values include: 'Locked', 'Unlocked' :vartype state: str or - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyState + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyState :ivar etag: ImmutabilityPolicy Etag. :vartype etag: str :ivar update_history: The ImmutabilityPolicy update history of the blob container. :vartype update_history: - list[~azure.mgmt.storage.v2018_02_01.models.UpdateHistoryProperty] + list[~azure.mgmt.storage.v2018_03_01_preview.models.UpdateHistoryProperty] """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_py3.py similarity index 97% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_py3.py index 443d619aebb..6e612b9f60b 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/immutability_policy_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/immutability_policy_py3.py @@ -39,7 +39,7 @@ class ImmutabilityPolicy(AzureEntityResource): values include: Locked and Unlocked. Possible values include: 'Locked', 'Unlocked' :vartype state: str or - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyState + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyState """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/ip_rule.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/ip_rule.py similarity index 94% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/ip_rule.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/ip_rule.py index cd2416118e5..02c554774c0 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/ip_rule.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/ip_rule.py @@ -22,7 +22,7 @@ class IPRule(Model): :type ip_address_or_range: str :param action: The action of IP ACL rule. Possible values include: 'Allow'. Default value: "Allow" . - :type action: str or ~azure.mgmt.storage.v2018_02_01.models.Action + :type action: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Action """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/ip_rule_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/ip_rule_py3.py similarity index 94% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/ip_rule_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/ip_rule_py3.py index 34516b5233c..7a8328a92aa 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/ip_rule_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/ip_rule_py3.py @@ -22,7 +22,7 @@ class IPRule(Model): :type ip_address_or_range: str :param action: The action of IP ACL rule. Possible values include: 'Allow'. Default value: "Allow" . - :type action: str or ~azure.mgmt.storage.v2018_02_01.models.Action + :type action: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Action """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/key_vault_properties.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/key_vault_properties.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/key_vault_properties.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/key_vault_properties.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/key_vault_properties_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/key_vault_properties_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/key_vault_properties_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/key_vault_properties_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold_properties.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold_properties.py similarity index 94% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold_properties.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold_properties.py index 1c018f0b094..cf219925a93 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold_properties.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold_properties.py @@ -25,7 +25,8 @@ class LegalHoldProperties(Model): hasLegalHold=true for a given account. :vartype has_legal_hold: bool :param tags: The list of LegalHold tags of a blob container. - :type tags: list[~azure.mgmt.storage.v2018_02_01.models.TagProperty] + :type tags: + list[~azure.mgmt.storage.v2018_03_01_preview.models.TagProperty] """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold_properties_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold_properties_py3.py similarity index 94% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold_properties_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold_properties_py3.py index 5dd782fdd09..9004b110ecd 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold_properties_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold_properties_py3.py @@ -25,7 +25,8 @@ class LegalHoldProperties(Model): hasLegalHold=true for a given account. :vartype has_legal_hold: bool :param tags: The list of LegalHold tags of a blob container. - :type tags: list[~azure.mgmt.storage.v2018_02_01.models.TagProperty] + :type tags: + list[~azure.mgmt.storage.v2018_03_01_preview.models.TagProperty] """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/legal_hold_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/legal_hold_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_account_sas_response.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_account_sas_response.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_account_sas_response.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_account_sas_response.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_account_sas_response_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_account_sas_response_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_account_sas_response_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_account_sas_response_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_item.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_item.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_item.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_item.py index f6a50512740..d48987c875d 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_item.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_item.py @@ -32,33 +32,33 @@ class ListContainerItem(AzureEntityResource): accessed publicly and the level of access. Possible values include: 'Container', 'Blob', 'None' :type public_access: str or - ~azure.mgmt.storage.v2018_02_01.models.PublicAccess + ~azure.mgmt.storage.v2018_03_01_preview.models.PublicAccess :ivar last_modified_time: Returns the date and time the container was last modified. :vartype last_modified_time: datetime :ivar lease_status: The lease status of the container. Possible values include: 'Locked', 'Unlocked' :vartype lease_status: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseStatus + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseStatus :ivar lease_state: Lease state of the container. Possible values include: 'Available', 'Leased', 'Expired', 'Breaking', 'Broken' :vartype lease_state: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseState + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseState :ivar lease_duration: Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased. Possible values include: 'Infinite', 'Fixed' :vartype lease_duration: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseDuration + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseDuration :param metadata: A name-value pair to associate with the container as metadata. :type metadata: dict[str, str] :ivar immutability_policy: The ImmutabilityPolicy property of the container. :vartype immutability_policy: - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyProperties :ivar legal_hold: The LegalHold property of the container. :vartype legal_hold: - ~azure.mgmt.storage.v2018_02_01.models.LegalHoldProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.LegalHoldProperties :ivar has_legal_hold: The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_item_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_item_py3.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_item_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_item_py3.py index 2acbd2044e8..771dc1011cf 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_item_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_item_py3.py @@ -32,33 +32,33 @@ class ListContainerItem(AzureEntityResource): accessed publicly and the level of access. Possible values include: 'Container', 'Blob', 'None' :type public_access: str or - ~azure.mgmt.storage.v2018_02_01.models.PublicAccess + ~azure.mgmt.storage.v2018_03_01_preview.models.PublicAccess :ivar last_modified_time: Returns the date and time the container was last modified. :vartype last_modified_time: datetime :ivar lease_status: The lease status of the container. Possible values include: 'Locked', 'Unlocked' :vartype lease_status: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseStatus + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseStatus :ivar lease_state: Lease state of the container. Possible values include: 'Available', 'Leased', 'Expired', 'Breaking', 'Broken' :vartype lease_state: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseState + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseState :ivar lease_duration: Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased. Possible values include: 'Infinite', 'Fixed' :vartype lease_duration: str or - ~azure.mgmt.storage.v2018_02_01.models.LeaseDuration + ~azure.mgmt.storage.v2018_03_01_preview.models.LeaseDuration :param metadata: A name-value pair to associate with the container as metadata. :type metadata: dict[str, str] :ivar immutability_policy: The ImmutabilityPolicy property of the container. :vartype immutability_policy: - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyProperties :ivar legal_hold: The LegalHold property of the container. :vartype legal_hold: - ~azure.mgmt.storage.v2018_02_01.models.LegalHoldProperties + ~azure.mgmt.storage.v2018_03_01_preview.models.LegalHoldProperties :ivar has_legal_hold: The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_items.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_items.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_items.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_items.py index 84fd5aa0330..34cf699feaf 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_items.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_items.py @@ -17,7 +17,7 @@ class ListContainerItems(Model): :param value: The list of blob containers. :type value: - list[~azure.mgmt.storage.v2018_02_01.models.ListContainerItem] + list[~azure.mgmt.storage.v2018_03_01_preview.models.ListContainerItem] """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_items_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_items_py3.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_items_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_items_py3.py index a9ad58faf3d..99bb2bcb0e5 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_container_items_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_container_items_py3.py @@ -17,7 +17,7 @@ class ListContainerItems(Model): :param value: The list of blob containers. :type value: - list[~azure.mgmt.storage.v2018_02_01.models.ListContainerItem] + list[~azure.mgmt.storage.v2018_03_01_preview.models.ListContainerItem] """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_service_sas_response.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_service_sas_response.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_service_sas_response.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_service_sas_response.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_service_sas_response_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_service_sas_response_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/list_service_sas_response_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/list_service_sas_response_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/management_policies_rules_set_parameter.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/management_policies_rules_set_parameter.py new file mode 100644 index 00000000000..c814a5b9391 --- /dev/null +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/management_policies_rules_set_parameter.py @@ -0,0 +1,32 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class ManagementPoliciesRulesSetParameter(Model): + """The Storage Account ManagementPolicies Rules, in JSON format. See more + details in: + https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + + :param policy: The Storage Account ManagementPolicies Rules, in JSON + format. See more details in: + https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + :type policy: object + """ + + _attribute_map = { + 'policy': {'key': 'properties.policy', 'type': 'object'}, + } + + def __init__(self, **kwargs): + super(ManagementPoliciesRulesSetParameter, self).__init__(**kwargs) + self.policy = kwargs.get('policy', None) diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/management_policies_rules_set_parameter_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/management_policies_rules_set_parameter_py3.py new file mode 100644 index 00000000000..7fb66587784 --- /dev/null +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/management_policies_rules_set_parameter_py3.py @@ -0,0 +1,32 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class ManagementPoliciesRulesSetParameter(Model): + """The Storage Account ManagementPolicies Rules, in JSON format. See more + details in: + https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + + :param policy: The Storage Account ManagementPolicies Rules, in JSON + format. See more details in: + https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + :type policy: object + """ + + _attribute_map = { + 'policy': {'key': 'properties.policy', 'type': 'object'}, + } + + def __init__(self, *, policy=None, **kwargs) -> None: + super(ManagementPoliciesRulesSetParameter, self).__init__(**kwargs) + self.policy = policy diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/metric_specification.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/metric_specification.py similarity index 96% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/metric_specification.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/metric_specification.py index 79d318a4166..34c2fe591d1 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/metric_specification.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/metric_specification.py @@ -25,7 +25,8 @@ class MetricSpecification(Model): :type unit: str :param dimensions: Dimensions of blobs, including blob type and access tier. - :type dimensions: list[~azure.mgmt.storage.v2018_02_01.models.Dimension] + :type dimensions: + list[~azure.mgmt.storage.v2018_03_01_preview.models.Dimension] :param aggregation_type: Aggregation type could be Average. :type aggregation_type: str :param fill_gap_with_zero: The property to decide fill gap with zero or diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/metric_specification_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/metric_specification_py3.py similarity index 96% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/metric_specification_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/metric_specification_py3.py index b0d40efc543..33704d9da32 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/metric_specification_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/metric_specification_py3.py @@ -25,7 +25,8 @@ class MetricSpecification(Model): :type unit: str :param dimensions: Dimensions of blobs, including blob type and access tier. - :type dimensions: list[~azure.mgmt.storage.v2018_02_01.models.Dimension] + :type dimensions: + list[~azure.mgmt.storage.v2018_03_01_preview.models.Dimension] :param aggregation_type: Aggregation type could be Average. :type aggregation_type: str :param fill_gap_with_zero: The property to decide fill gap with zero or diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/network_rule_set.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/network_rule_set.py similarity index 87% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/network_rule_set.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/network_rule_set.py index c9a546c136e..803725178c8 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/network_rule_set.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/network_rule_set.py @@ -22,17 +22,18 @@ class NetworkRuleSet(Model): Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics. Possible values include: 'None', 'Logging', 'Metrics', 'AzureServices'. Default value: "AzureServices" . - :type bypass: str or ~azure.mgmt.storage.v2018_02_01.models.Bypass + :type bypass: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Bypass :param virtual_network_rules: Sets the virtual network rules :type virtual_network_rules: - list[~azure.mgmt.storage.v2018_02_01.models.VirtualNetworkRule] + list[~azure.mgmt.storage.v2018_03_01_preview.models.VirtualNetworkRule] :param ip_rules: Sets the IP ACL rules - :type ip_rules: list[~azure.mgmt.storage.v2018_02_01.models.IPRule] + :type ip_rules: + list[~azure.mgmt.storage.v2018_03_01_preview.models.IPRule] :param default_action: Required. Specifies the default action of allow or deny when no other rules match. Possible values include: 'Allow', 'Deny'. Default value: "Allow" . :type default_action: str or - ~azure.mgmt.storage.v2018_02_01.models.DefaultAction + ~azure.mgmt.storage.v2018_03_01_preview.models.DefaultAction """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/network_rule_set_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/network_rule_set_py3.py similarity index 87% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/network_rule_set_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/network_rule_set_py3.py index 58b08a0e141..9c455a98675 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/network_rule_set_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/network_rule_set_py3.py @@ -22,17 +22,18 @@ class NetworkRuleSet(Model): Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics. Possible values include: 'None', 'Logging', 'Metrics', 'AzureServices'. Default value: "AzureServices" . - :type bypass: str or ~azure.mgmt.storage.v2018_02_01.models.Bypass + :type bypass: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Bypass :param virtual_network_rules: Sets the virtual network rules :type virtual_network_rules: - list[~azure.mgmt.storage.v2018_02_01.models.VirtualNetworkRule] + list[~azure.mgmt.storage.v2018_03_01_preview.models.VirtualNetworkRule] :param ip_rules: Sets the IP ACL rules - :type ip_rules: list[~azure.mgmt.storage.v2018_02_01.models.IPRule] + :type ip_rules: + list[~azure.mgmt.storage.v2018_03_01_preview.models.IPRule] :param default_action: Required. Specifies the default action of allow or deny when no other rules match. Possible values include: 'Allow', 'Deny'. Default value: "Allow" . :type default_action: str or - ~azure.mgmt.storage.v2018_02_01.models.DefaultAction + ~azure.mgmt.storage.v2018_03_01_preview.models.DefaultAction """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation.py similarity index 90% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation.py index 37982657dc4..414b1e14671 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation.py @@ -18,13 +18,14 @@ class Operation(Model): :param name: Operation name: {provider}/{resource}/{operation} :type name: str :param display: Display metadata associated with the operation. - :type display: ~azure.mgmt.storage.v2018_02_01.models.OperationDisplay + :type display: + ~azure.mgmt.storage.v2018_03_01_preview.models.OperationDisplay :param origin: The origin of operations. :type origin: str :param service_specification: One property of operation, include metric specifications. :type service_specification: - ~azure.mgmt.storage.v2018_02_01.models.ServiceSpecification + ~azure.mgmt.storage.v2018_03_01_preview.models.ServiceSpecification """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_display.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_display.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_display.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_display.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_display_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_display_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_display_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_display_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_paged.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_paged.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_paged.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_paged.py index 826e80757e1..78bb839cc06 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_paged.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_paged.py @@ -14,7 +14,7 @@ class OperationPaged(Paged): """ - A paging container for iterating over a list of :class:`Operation ` object + A paging container for iterating over a list of :class:`Operation ` object """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_py3.py similarity index 90% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_py3.py index 8e12d0d37ab..e916d274b9a 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/operation_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/operation_py3.py @@ -18,13 +18,14 @@ class Operation(Model): :param name: Operation name: {provider}/{resource}/{operation} :type name: str :param display: Display metadata associated with the operation. - :type display: ~azure.mgmt.storage.v2018_02_01.models.OperationDisplay + :type display: + ~azure.mgmt.storage.v2018_03_01_preview.models.OperationDisplay :param origin: The origin of operations. :type origin: str :param service_specification: One property of operation, include metric specifications. :type service_specification: - ~azure.mgmt.storage.v2018_02_01.models.ServiceSpecification + ~azure.mgmt.storage.v2018_03_01_preview.models.ServiceSpecification """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/proxy_resource.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/proxy_resource.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/proxy_resource.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/proxy_resource.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/proxy_resource_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/proxy_resource_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/proxy_resource_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/proxy_resource_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/resource.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/resource.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/resource.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/resource.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/resource_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/resource_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/resource_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/resource_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/restriction.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/restriction.py similarity index 96% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/restriction.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/restriction.py index 9201ec225a1..68f70bfe33d 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/restriction.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/restriction.py @@ -30,7 +30,7 @@ class Restriction(Model): quota. The “NotAvailableForSubscription” is related to capacity at DC. Possible values include: 'QuotaId', 'NotAvailableForSubscription' :type reason_code: str or - ~azure.mgmt.storage.v2018_02_01.models.ReasonCode + ~azure.mgmt.storage.v2018_03_01_preview.models.ReasonCode """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/restriction_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/restriction_py3.py similarity index 96% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/restriction_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/restriction_py3.py index e081f446828..02d8fda6fd9 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/restriction_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/restriction_py3.py @@ -30,7 +30,7 @@ class Restriction(Model): quota. The “NotAvailableForSubscription” is related to capacity at DC. Possible values include: 'QuotaId', 'NotAvailableForSubscription' :type reason_code: str or - ~azure.mgmt.storage.v2018_02_01.models.ReasonCode + ~azure.mgmt.storage.v2018_03_01_preview.models.ReasonCode """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_sas_parameters.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_sas_parameters.py similarity index 96% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_sas_parameters.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_sas_parameters.py index e5392580934..736424ddc9c 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_sas_parameters.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_sas_parameters.py @@ -24,20 +24,20 @@ class ServiceSasParameters(Model): SAS. Possible values include: Blob (b), Container (c), File (f), Share (s). Possible values include: 'b', 'c', 'f', 's' :type resource: str or - ~azure.mgmt.storage.v2018_02_01.models.SignedResource + ~azure.mgmt.storage.v2018_03_01_preview.models.SignedResource :param permissions: The signed permissions for the service SAS. Possible values include: Read (r), Write (w), Delete (d), List (l), Add (a), Create (c), Update (u) and Process (p). Possible values include: 'r', 'd', 'w', 'l', 'a', 'c', 'u', 'p' :type permissions: str or - ~azure.mgmt.storage.v2018_02_01.models.Permissions + ~azure.mgmt.storage.v2018_03_01_preview.models.Permissions :param ip_address_or_range: An IP address or a range of IP addresses from which to accept requests. :type ip_address_or_range: str :param protocols: The protocol permitted for a request made with the account SAS. Possible values include: 'https,http', 'https' :type protocols: str or - ~azure.mgmt.storage.v2018_02_01.models.HttpProtocol + ~azure.mgmt.storage.v2018_03_01_preview.models.HttpProtocol :param shared_access_start_time: The time at which the SAS becomes valid. :type shared_access_start_time: datetime :param shared_access_expiry_time: The time at which the shared access diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_sas_parameters_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_sas_parameters_py3.py similarity index 96% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_sas_parameters_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_sas_parameters_py3.py index aa7283ec623..e1bc7bc90e0 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_sas_parameters_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_sas_parameters_py3.py @@ -24,20 +24,20 @@ class ServiceSasParameters(Model): SAS. Possible values include: Blob (b), Container (c), File (f), Share (s). Possible values include: 'b', 'c', 'f', 's' :type resource: str or - ~azure.mgmt.storage.v2018_02_01.models.SignedResource + ~azure.mgmt.storage.v2018_03_01_preview.models.SignedResource :param permissions: The signed permissions for the service SAS. Possible values include: Read (r), Write (w), Delete (d), List (l), Add (a), Create (c), Update (u) and Process (p). Possible values include: 'r', 'd', 'w', 'l', 'a', 'c', 'u', 'p' :type permissions: str or - ~azure.mgmt.storage.v2018_02_01.models.Permissions + ~azure.mgmt.storage.v2018_03_01_preview.models.Permissions :param ip_address_or_range: An IP address or a range of IP addresses from which to accept requests. :type ip_address_or_range: str :param protocols: The protocol permitted for a request made with the account SAS. Possible values include: 'https,http', 'https' :type protocols: str or - ~azure.mgmt.storage.v2018_02_01.models.HttpProtocol + ~azure.mgmt.storage.v2018_03_01_preview.models.HttpProtocol :param shared_access_start_time: The time at which the SAS becomes valid. :type shared_access_start_time: datetime :param shared_access_expiry_time: The time at which the shared access diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_specification.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_specification.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_specification.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_specification.py index a2cdf93ecde..f0221d7d9f0 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_specification.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_specification.py @@ -17,7 +17,7 @@ class ServiceSpecification(Model): :param metric_specifications: Metric specifications of operation. :type metric_specifications: - list[~azure.mgmt.storage.v2018_02_01.models.MetricSpecification] + list[~azure.mgmt.storage.v2018_03_01_preview.models.MetricSpecification] """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_specification_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_specification_py3.py similarity index 93% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_specification_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_specification_py3.py index aadc0db0278..a0447d57836 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/service_specification_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/service_specification_py3.py @@ -17,7 +17,7 @@ class ServiceSpecification(Model): :param metric_specifications: Metric specifications of operation. :type metric_specifications: - list[~azure.mgmt.storage.v2018_02_01.models.MetricSpecification] + list[~azure.mgmt.storage.v2018_03_01_preview.models.MetricSpecification] """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku.py similarity index 88% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku.py index 51535cde813..4acb2cabee5 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku.py @@ -24,16 +24,17 @@ class Sku(Model): creation; optional for update. Note that in older versions, sku name was called accountType. Possible values include: 'Standard_LRS', 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' - :type name: str or ~azure.mgmt.storage.v2018_02_01.models.SkuName + :type name: str or ~azure.mgmt.storage.v2018_03_01_preview.models.SkuName :ivar tier: Gets the sku tier. This is based on the SKU name. Possible values include: 'Standard', 'Premium' - :vartype tier: str or ~azure.mgmt.storage.v2018_02_01.models.SkuTier + :vartype tier: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.SkuTier :ivar resource_type: The type of the resource, usually it is 'storageAccounts'. :vartype resource_type: str :ivar kind: Indicates the type of storage account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - :vartype kind: str or ~azure.mgmt.storage.v2018_02_01.models.Kind + :vartype kind: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Kind :ivar locations: The set of locations that the SKU is available. This will be supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). @@ -41,11 +42,11 @@ class Sku(Model): :ivar capabilities: The capability information in the specified sku, including file encryption, network acls, change notification, etc. :vartype capabilities: - list[~azure.mgmt.storage.v2018_02_01.models.SKUCapability] + list[~azure.mgmt.storage.v2018_03_01_preview.models.SKUCapability] :param restrictions: The restrictions because of which SKU cannot be used. This is empty if there are no restrictions. :type restrictions: - list[~azure.mgmt.storage.v2018_02_01.models.Restriction] + list[~azure.mgmt.storage.v2018_03_01_preview.models.Restriction] """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_capability.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_capability.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_capability.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_capability.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_capability_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_capability_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_capability_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_capability_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_paged.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_paged.py similarity index 93% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_paged.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_paged.py index 17028976705..f15c72443a2 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_paged.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_paged.py @@ -14,7 +14,7 @@ class SkuPaged(Paged): """ - A paging container for iterating over a list of :class:`Sku ` object + A paging container for iterating over a list of :class:`Sku ` object """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_py3.py similarity index 88% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_py3.py index de133a47a6f..ab98d7b85f7 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/sku_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/sku_py3.py @@ -24,16 +24,17 @@ class Sku(Model): creation; optional for update. Note that in older versions, sku name was called accountType. Possible values include: 'Standard_LRS', 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS' - :type name: str or ~azure.mgmt.storage.v2018_02_01.models.SkuName + :type name: str or ~azure.mgmt.storage.v2018_03_01_preview.models.SkuName :ivar tier: Gets the sku tier. This is based on the SKU name. Possible values include: 'Standard', 'Premium' - :vartype tier: str or ~azure.mgmt.storage.v2018_02_01.models.SkuTier + :vartype tier: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.SkuTier :ivar resource_type: The type of the resource, usually it is 'storageAccounts'. :vartype resource_type: str :ivar kind: Indicates the type of storage account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - :vartype kind: str or ~azure.mgmt.storage.v2018_02_01.models.Kind + :vartype kind: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Kind :ivar locations: The set of locations that the SKU is available. This will be supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). @@ -41,11 +42,11 @@ class Sku(Model): :ivar capabilities: The capability information in the specified sku, including file encryption, network acls, change notification, etc. :vartype capabilities: - list[~azure.mgmt.storage.v2018_02_01.models.SKUCapability] + list[~azure.mgmt.storage.v2018_03_01_preview.models.SKUCapability] :param restrictions: The restrictions because of which SKU cannot be used. This is empty if there are no restrictions. :type restrictions: - list[~azure.mgmt.storage.v2018_02_01.models.Restriction] + list[~azure.mgmt.storage.v2018_03_01_preview.models.Restriction] """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account.py similarity index 90% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account.py index 5314518db46..a0149cce35d 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account.py @@ -33,22 +33,22 @@ class StorageAccount(TrackedResource): :param location: Required. The geo-location where the resource lives :type location: str :ivar sku: Gets the SKU. - :vartype sku: ~azure.mgmt.storage.v2018_02_01.models.Sku + :vartype sku: ~azure.mgmt.storage.v2018_03_01_preview.models.Sku :ivar kind: Gets the Kind. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - :vartype kind: str or ~azure.mgmt.storage.v2018_02_01.models.Kind + :vartype kind: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Kind :param identity: The identity of the resource. - :type identity: ~azure.mgmt.storage.v2018_02_01.models.Identity + :type identity: ~azure.mgmt.storage.v2018_03_01_preview.models.Identity :ivar provisioning_state: Gets the status of the storage account at the time the operation was called. Possible values include: 'Creating', 'ResolvingDNS', 'Succeeded' :vartype provisioning_state: str or - ~azure.mgmt.storage.v2018_02_01.models.ProvisioningState + ~azure.mgmt.storage.v2018_03_01_preview.models.ProvisioningState :ivar primary_endpoints: Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object. Note that Standard_ZRS and Premium_LRS accounts only return the blob endpoint. :vartype primary_endpoints: - ~azure.mgmt.storage.v2018_02_01.models.Endpoints + ~azure.mgmt.storage.v2018_03_01_preview.models.Endpoints :ivar primary_location: Gets the location of the primary data center for the storage account. :vartype primary_location: str @@ -56,7 +56,7 @@ class StorageAccount(TrackedResource): location of the storage account is available or unavailable. Possible values include: 'available', 'unavailable' :vartype status_of_primary: str or - ~azure.mgmt.storage.v2018_02_01.models.AccountStatus + ~azure.mgmt.storage.v2018_03_01_preview.models.AccountStatus :ivar last_geo_failover_time: Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never @@ -72,33 +72,34 @@ class StorageAccount(TrackedResource): Only available if the SKU name is Standard_GRS or Standard_RAGRS. Possible values include: 'available', 'unavailable' :vartype status_of_secondary: str or - ~azure.mgmt.storage.v2018_02_01.models.AccountStatus + ~azure.mgmt.storage.v2018_03_01_preview.models.AccountStatus :ivar creation_time: Gets the creation date and time of the storage account in UTC. :vartype creation_time: datetime :ivar custom_domain: Gets the custom domain the user assigned to this storage account. :vartype custom_domain: - ~azure.mgmt.storage.v2018_02_01.models.CustomDomain + ~azure.mgmt.storage.v2018_03_01_preview.models.CustomDomain :ivar secondary_endpoints: Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object from the secondary location of the storage account. Only available if the SKU name is Standard_RAGRS. :vartype secondary_endpoints: - ~azure.mgmt.storage.v2018_02_01.models.Endpoints + ~azure.mgmt.storage.v2018_03_01_preview.models.Endpoints :ivar encryption: Gets the encryption settings on the account. If unspecified, the account is unencrypted. - :vartype encryption: ~azure.mgmt.storage.v2018_02_01.models.Encryption + :vartype encryption: + ~azure.mgmt.storage.v2018_03_01_preview.models.Encryption :ivar access_tier: Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool' :vartype access_tier: str or - ~azure.mgmt.storage.v2018_02_01.models.AccessTier + ~azure.mgmt.storage.v2018_03_01_preview.models.AccessTier :param enable_https_traffic_only: Allows https traffic only to storage service if sets to true. Default value: False . :type enable_https_traffic_only: bool :ivar network_rule_set: Network rule set :vartype network_rule_set: - ~azure.mgmt.storage.v2018_02_01.models.NetworkRuleSet + ~azure.mgmt.storage.v2018_03_01_preview.models.NetworkRuleSet """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_check_name_availability_parameters.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_check_name_availability_parameters.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_check_name_availability_parameters.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_check_name_availability_parameters.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_check_name_availability_parameters_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_check_name_availability_parameters_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_check_name_availability_parameters_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_check_name_availability_parameters_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_create_parameters.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_create_parameters.py similarity index 88% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_create_parameters.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_create_parameters.py index 5070e2af3b6..a0d483df316 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_create_parameters.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_create_parameters.py @@ -18,10 +18,10 @@ class StorageAccountCreateParameters(Model): All required parameters must be populated in order to send to Azure. :param sku: Required. Required. Gets or sets the sku name. - :type sku: ~azure.mgmt.storage.v2018_02_01.models.Sku + :type sku: ~azure.mgmt.storage.v2018_03_01_preview.models.Sku :param kind: Required. Required. Indicates the type of storage account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - :type kind: str or ~azure.mgmt.storage.v2018_02_01.models.Kind + :type kind: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Kind :param location: Required. Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a @@ -35,24 +35,26 @@ class StorageAccountCreateParameters(Model): characters and a value with a length no greater than 256 characters. :type tags: dict[str, str] :param identity: The identity of the resource. - :type identity: ~azure.mgmt.storage.v2018_02_01.models.Identity + :type identity: ~azure.mgmt.storage.v2018_03_01_preview.models.Identity :param custom_domain: User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property. - :type custom_domain: ~azure.mgmt.storage.v2018_02_01.models.CustomDomain + :type custom_domain: + ~azure.mgmt.storage.v2018_03_01_preview.models.CustomDomain :param encryption: Provides the encryption settings on the account. If left unspecified the account encryption settings will remain the same. The default setting is unencrypted. - :type encryption: ~azure.mgmt.storage.v2018_02_01.models.Encryption + :type encryption: + ~azure.mgmt.storage.v2018_03_01_preview.models.Encryption :param network_rule_set: Network rule set :type network_rule_set: - ~azure.mgmt.storage.v2018_02_01.models.NetworkRuleSet + ~azure.mgmt.storage.v2018_03_01_preview.models.NetworkRuleSet :param access_tier: Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool' :type access_tier: str or - ~azure.mgmt.storage.v2018_02_01.models.AccessTier + ~azure.mgmt.storage.v2018_03_01_preview.models.AccessTier :param enable_https_traffic_only: Allows https traffic only to storage service if sets to true. Default value: False . :type enable_https_traffic_only: bool diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_create_parameters_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_create_parameters_py3.py similarity index 88% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_create_parameters_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_create_parameters_py3.py index 0fe748ef6ee..79946d65842 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_create_parameters_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_create_parameters_py3.py @@ -18,10 +18,10 @@ class StorageAccountCreateParameters(Model): All required parameters must be populated in order to send to Azure. :param sku: Required. Required. Gets or sets the sku name. - :type sku: ~azure.mgmt.storage.v2018_02_01.models.Sku + :type sku: ~azure.mgmt.storage.v2018_03_01_preview.models.Sku :param kind: Required. Required. Indicates the type of storage account. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - :type kind: str or ~azure.mgmt.storage.v2018_02_01.models.Kind + :type kind: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Kind :param location: Required. Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a @@ -35,24 +35,26 @@ class StorageAccountCreateParameters(Model): characters and a value with a length no greater than 256 characters. :type tags: dict[str, str] :param identity: The identity of the resource. - :type identity: ~azure.mgmt.storage.v2018_02_01.models.Identity + :type identity: ~azure.mgmt.storage.v2018_03_01_preview.models.Identity :param custom_domain: User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property. - :type custom_domain: ~azure.mgmt.storage.v2018_02_01.models.CustomDomain + :type custom_domain: + ~azure.mgmt.storage.v2018_03_01_preview.models.CustomDomain :param encryption: Provides the encryption settings on the account. If left unspecified the account encryption settings will remain the same. The default setting is unencrypted. - :type encryption: ~azure.mgmt.storage.v2018_02_01.models.Encryption + :type encryption: + ~azure.mgmt.storage.v2018_03_01_preview.models.Encryption :param network_rule_set: Network rule set :type network_rule_set: - ~azure.mgmt.storage.v2018_02_01.models.NetworkRuleSet + ~azure.mgmt.storage.v2018_03_01_preview.models.NetworkRuleSet :param access_tier: Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool' :type access_tier: str or - ~azure.mgmt.storage.v2018_02_01.models.AccessTier + ~azure.mgmt.storage.v2018_03_01_preview.models.AccessTier :param enable_https_traffic_only: Allows https traffic only to storage service if sets to true. Default value: False . :type enable_https_traffic_only: bool diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_key.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_key.py similarity index 95% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_key.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_key.py index 991103a5630..ed3a2995cf0 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_key.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_key.py @@ -25,7 +25,7 @@ class StorageAccountKey(Model): :ivar permissions: Permissions for the key -- read-only or full permissions. Possible values include: 'Read', 'Full' :vartype permissions: str or - ~azure.mgmt.storage.v2018_02_01.models.KeyPermission + ~azure.mgmt.storage.v2018_03_01_preview.models.KeyPermission """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_key_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_key_py3.py similarity index 95% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_key_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_key_py3.py index 3dfbadc6938..fa850882f1b 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_key_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_key_py3.py @@ -25,7 +25,7 @@ class StorageAccountKey(Model): :ivar permissions: Permissions for the key -- read-only or full permissions. Possible values include: 'Read', 'Full' :vartype permissions: str or - ~azure.mgmt.storage.v2018_02_01.models.KeyPermission + ~azure.mgmt.storage.v2018_03_01_preview.models.KeyPermission """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_list_keys_result.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_list_keys_result.py similarity index 93% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_list_keys_result.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_list_keys_result.py index 7c9a1133e1f..4d56465c568 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_list_keys_result.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_list_keys_result.py @@ -21,7 +21,7 @@ class StorageAccountListKeysResult(Model): :ivar keys: Gets the list of storage account keys and their properties for the specified storage account. :vartype keys: - list[~azure.mgmt.storage.v2018_02_01.models.StorageAccountKey] + list[~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountKey] """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_list_keys_result_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_list_keys_result_py3.py similarity index 93% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_list_keys_result_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_list_keys_result_py3.py index 725a2e529a8..4d2a927c421 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_list_keys_result_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_list_keys_result_py3.py @@ -21,7 +21,7 @@ class StorageAccountListKeysResult(Model): :ivar keys: Gets the list of storage account keys and their properties for the specified storage account. :vartype keys: - list[~azure.mgmt.storage.v2018_02_01.models.StorageAccountKey] + list[~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountKey] """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_management_policies.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_management_policies.py new file mode 100644 index 00000000000..59ee515d9a0 --- /dev/null +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_management_policies.py @@ -0,0 +1,56 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .resource import Resource + + +class StorageAccountManagementPolicies(Resource): + """The Get Storage Account ManagementPolicies operation response. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + :param policy: The Storage Account ManagementPolicies Rules, in JSON + format. See more details in: + https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + :type policy: object + :ivar last_modified_time: Returns the date and time the ManagementPolicies + was last modified. + :vartype last_modified_time: datetime + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'last_modified_time': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'policy': {'key': 'properties.policy', 'type': 'object'}, + 'last_modified_time': {'key': 'properties.lastModifiedTime', 'type': 'iso-8601'}, + } + + def __init__(self, **kwargs): + super(StorageAccountManagementPolicies, self).__init__(**kwargs) + self.policy = kwargs.get('policy', None) + self.last_modified_time = None diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_management_policies_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_management_policies_py3.py new file mode 100644 index 00000000000..3dc97762494 --- /dev/null +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_management_policies_py3.py @@ -0,0 +1,56 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +from .resource_py3 import Resource + + +class StorageAccountManagementPolicies(Resource): + """The Get Storage Account ManagementPolicies operation response. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :ivar id: Fully qualified resource Id for the resource. Ex - + /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + :vartype id: str + :ivar name: The name of the resource + :vartype name: str + :ivar type: The type of the resource. Ex- + Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. + :vartype type: str + :param policy: The Storage Account ManagementPolicies Rules, in JSON + format. See more details in: + https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + :type policy: object + :ivar last_modified_time: Returns the date and time the ManagementPolicies + was last modified. + :vartype last_modified_time: datetime + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'last_modified_time': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'policy': {'key': 'properties.policy', 'type': 'object'}, + 'last_modified_time': {'key': 'properties.lastModifiedTime', 'type': 'iso-8601'}, + } + + def __init__(self, *, policy=None, **kwargs) -> None: + super(StorageAccountManagementPolicies, self).__init__(**kwargs) + self.policy = policy + self.last_modified_time = None diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_paged.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_paged.py similarity index 91% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_paged.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_paged.py index 7097a3ea95e..9bcc5490740 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_paged.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_paged.py @@ -14,7 +14,7 @@ class StorageAccountPaged(Paged): """ - A paging container for iterating over a list of :class:`StorageAccount ` object + A paging container for iterating over a list of :class:`StorageAccount ` object """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_py3.py similarity index 90% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_py3.py index 9be641c3525..3a50655f115 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_py3.py @@ -33,22 +33,22 @@ class StorageAccount(TrackedResource): :param location: Required. The geo-location where the resource lives :type location: str :ivar sku: Gets the SKU. - :vartype sku: ~azure.mgmt.storage.v2018_02_01.models.Sku + :vartype sku: ~azure.mgmt.storage.v2018_03_01_preview.models.Sku :ivar kind: Gets the Kind. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - :vartype kind: str or ~azure.mgmt.storage.v2018_02_01.models.Kind + :vartype kind: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Kind :param identity: The identity of the resource. - :type identity: ~azure.mgmt.storage.v2018_02_01.models.Identity + :type identity: ~azure.mgmt.storage.v2018_03_01_preview.models.Identity :ivar provisioning_state: Gets the status of the storage account at the time the operation was called. Possible values include: 'Creating', 'ResolvingDNS', 'Succeeded' :vartype provisioning_state: str or - ~azure.mgmt.storage.v2018_02_01.models.ProvisioningState + ~azure.mgmt.storage.v2018_03_01_preview.models.ProvisioningState :ivar primary_endpoints: Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object. Note that Standard_ZRS and Premium_LRS accounts only return the blob endpoint. :vartype primary_endpoints: - ~azure.mgmt.storage.v2018_02_01.models.Endpoints + ~azure.mgmt.storage.v2018_03_01_preview.models.Endpoints :ivar primary_location: Gets the location of the primary data center for the storage account. :vartype primary_location: str @@ -56,7 +56,7 @@ class StorageAccount(TrackedResource): location of the storage account is available or unavailable. Possible values include: 'available', 'unavailable' :vartype status_of_primary: str or - ~azure.mgmt.storage.v2018_02_01.models.AccountStatus + ~azure.mgmt.storage.v2018_03_01_preview.models.AccountStatus :ivar last_geo_failover_time: Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never @@ -72,33 +72,34 @@ class StorageAccount(TrackedResource): Only available if the SKU name is Standard_GRS or Standard_RAGRS. Possible values include: 'available', 'unavailable' :vartype status_of_secondary: str or - ~azure.mgmt.storage.v2018_02_01.models.AccountStatus + ~azure.mgmt.storage.v2018_03_01_preview.models.AccountStatus :ivar creation_time: Gets the creation date and time of the storage account in UTC. :vartype creation_time: datetime :ivar custom_domain: Gets the custom domain the user assigned to this storage account. :vartype custom_domain: - ~azure.mgmt.storage.v2018_02_01.models.CustomDomain + ~azure.mgmt.storage.v2018_03_01_preview.models.CustomDomain :ivar secondary_endpoints: Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object from the secondary location of the storage account. Only available if the SKU name is Standard_RAGRS. :vartype secondary_endpoints: - ~azure.mgmt.storage.v2018_02_01.models.Endpoints + ~azure.mgmt.storage.v2018_03_01_preview.models.Endpoints :ivar encryption: Gets the encryption settings on the account. If unspecified, the account is unencrypted. - :vartype encryption: ~azure.mgmt.storage.v2018_02_01.models.Encryption + :vartype encryption: + ~azure.mgmt.storage.v2018_03_01_preview.models.Encryption :ivar access_tier: Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool' :vartype access_tier: str or - ~azure.mgmt.storage.v2018_02_01.models.AccessTier + ~azure.mgmt.storage.v2018_03_01_preview.models.AccessTier :param enable_https_traffic_only: Allows https traffic only to storage service if sets to true. Default value: False . :type enable_https_traffic_only: bool :ivar network_rule_set: Network rule set :vartype network_rule_set: - ~azure.mgmt.storage.v2018_02_01.models.NetworkRuleSet + ~azure.mgmt.storage.v2018_03_01_preview.models.NetworkRuleSet """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_regenerate_key_parameters.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_regenerate_key_parameters.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_regenerate_key_parameters.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_regenerate_key_parameters.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_regenerate_key_parameters_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_regenerate_key_parameters_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_regenerate_key_parameters_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_regenerate_key_parameters_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_update_parameters.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_update_parameters.py similarity index 87% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_update_parameters.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_update_parameters.py index 1bbf8c2f58a..16136fe068d 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_update_parameters.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_update_parameters.py @@ -19,7 +19,7 @@ class StorageAccountUpdateParameters(Model): :param sku: Gets or sets the SKU name. Note that the SKU name cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts of those sku names be updated to any other value. - :type sku: ~azure.mgmt.storage.v2018_02_01.models.Sku + :type sku: ~azure.mgmt.storage.v2018_03_01_preview.models.Sku :param tags: Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a @@ -27,30 +27,32 @@ class StorageAccountUpdateParameters(Model): characters and a value no greater in length than 256 characters. :type tags: dict[str, str] :param identity: The identity of the resource. - :type identity: ~azure.mgmt.storage.v2018_02_01.models.Identity + :type identity: ~azure.mgmt.storage.v2018_03_01_preview.models.Identity :param custom_domain: Custom domain assigned to the storage account by the user. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property. - :type custom_domain: ~azure.mgmt.storage.v2018_02_01.models.CustomDomain + :type custom_domain: + ~azure.mgmt.storage.v2018_03_01_preview.models.CustomDomain :param encryption: Provides the encryption settings on the account. The default setting is unencrypted. - :type encryption: ~azure.mgmt.storage.v2018_02_01.models.Encryption + :type encryption: + ~azure.mgmt.storage.v2018_03_01_preview.models.Encryption :param access_tier: Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool' :type access_tier: str or - ~azure.mgmt.storage.v2018_02_01.models.AccessTier + ~azure.mgmt.storage.v2018_03_01_preview.models.AccessTier :param enable_https_traffic_only: Allows https traffic only to storage service if sets to true. Default value: False . :type enable_https_traffic_only: bool :param network_rule_set: Network rule set :type network_rule_set: - ~azure.mgmt.storage.v2018_02_01.models.NetworkRuleSet + ~azure.mgmt.storage.v2018_03_01_preview.models.NetworkRuleSet :param kind: Optional. Indicates the type of storage account. Currently only StorageV2 value supported by server. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - :type kind: str or ~azure.mgmt.storage.v2018_02_01.models.Kind + :type kind: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Kind """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_update_parameters_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_update_parameters_py3.py similarity index 87% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_update_parameters_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_update_parameters_py3.py index b361d85fc5f..fa13aa650aa 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_account_update_parameters_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_account_update_parameters_py3.py @@ -19,7 +19,7 @@ class StorageAccountUpdateParameters(Model): :param sku: Gets or sets the SKU name. Note that the SKU name cannot be updated to Standard_ZRS or Premium_LRS, nor can accounts of those sku names be updated to any other value. - :type sku: ~azure.mgmt.storage.v2018_02_01.models.Sku + :type sku: ~azure.mgmt.storage.v2018_03_01_preview.models.Sku :param tags: Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a @@ -27,30 +27,32 @@ class StorageAccountUpdateParameters(Model): characters and a value no greater in length than 256 characters. :type tags: dict[str, str] :param identity: The identity of the resource. - :type identity: ~azure.mgmt.storage.v2018_02_01.models.Identity + :type identity: ~azure.mgmt.storage.v2018_03_01_preview.models.Identity :param custom_domain: Custom domain assigned to the storage account by the user. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property. - :type custom_domain: ~azure.mgmt.storage.v2018_02_01.models.CustomDomain + :type custom_domain: + ~azure.mgmt.storage.v2018_03_01_preview.models.CustomDomain :param encryption: Provides the encryption settings on the account. The default setting is unencrypted. - :type encryption: ~azure.mgmt.storage.v2018_02_01.models.Encryption + :type encryption: + ~azure.mgmt.storage.v2018_03_01_preview.models.Encryption :param access_tier: Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool' :type access_tier: str or - ~azure.mgmt.storage.v2018_02_01.models.AccessTier + ~azure.mgmt.storage.v2018_03_01_preview.models.AccessTier :param enable_https_traffic_only: Allows https traffic only to storage service if sets to true. Default value: False . :type enable_https_traffic_only: bool :param network_rule_set: Network rule set :type network_rule_set: - ~azure.mgmt.storage.v2018_02_01.models.NetworkRuleSet + ~azure.mgmt.storage.v2018_03_01_preview.models.NetworkRuleSet :param kind: Optional. Indicates the type of storage account. Currently only StorageV2 value supported by server. Possible values include: 'Storage', 'StorageV2', 'BlobStorage' - :type kind: str or ~azure.mgmt.storage.v2018_02_01.models.Kind + :type kind: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Kind """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_management_client_enums.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_management_client_enums.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/storage_management_client_enums.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/storage_management_client_enums.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/tag_property.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/tag_property.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/tag_property.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/tag_property.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/tag_property_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/tag_property_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/tag_property_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/tag_property_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/tracked_resource.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/tracked_resource.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/tracked_resource.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/tracked_resource.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/tracked_resource_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/tracked_resource_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/tracked_resource_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/tracked_resource_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/update_history_property.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/update_history_property.py similarity index 97% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/update_history_property.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/update_history_property.py index e4571320482..6681582b4a1 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/update_history_property.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/update_history_property.py @@ -22,7 +22,7 @@ class UpdateHistoryProperty(Model): possible values include: put, lock and extend. Possible values include: 'put', 'lock', 'extend' :vartype update: str or - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyUpdateType + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyUpdateType :ivar immutability_period_since_creation_in_days: The immutability period for the blobs in the container since the policy creation, in days. :vartype immutability_period_since_creation_in_days: int diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/update_history_property_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/update_history_property_py3.py similarity index 97% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/update_history_property_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/update_history_property_py3.py index b5b4964e9fd..ca55acf0c8f 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/update_history_property_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/update_history_property_py3.py @@ -22,7 +22,7 @@ class UpdateHistoryProperty(Model): possible values include: put, lock and extend. Possible values include: 'put', 'lock', 'extend' :vartype update: str or - ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicyUpdateType + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicyUpdateType :ivar immutability_period_since_creation_in_days: The immutability period for the blobs in the container since the policy creation, in days. :vartype immutability_period_since_creation_in_days: int diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage.py similarity index 91% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage.py index 2668cb716b1..cbd34c470b0 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage.py @@ -21,7 +21,8 @@ class Usage(Model): :ivar unit: Gets the unit of measurement. Possible values include: 'Count', 'Bytes', 'Seconds', 'Percent', 'CountsPerSecond', 'BytesPerSecond' - :vartype unit: str or ~azure.mgmt.storage.v2018_02_01.models.UsageUnit + :vartype unit: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.UsageUnit :ivar current_value: Gets the current count of the allocated resources in the subscription. :vartype current_value: int @@ -29,7 +30,7 @@ class Usage(Model): in the subscription. :vartype limit: int :ivar name: Gets the name of the type of usage. - :vartype name: ~azure.mgmt.storage.v2018_02_01.models.UsageName + :vartype name: ~azure.mgmt.storage.v2018_03_01_preview.models.UsageName """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_name.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_name.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_name.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_name.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_name_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_name_py3.py similarity index 100% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_name_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_name_py3.py diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_paged.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_paged.py similarity index 93% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_paged.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_paged.py index b681564312e..290c72b9edf 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_paged.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_paged.py @@ -14,7 +14,7 @@ class UsagePaged(Paged): """ - A paging container for iterating over a list of :class:`Usage ` object + A paging container for iterating over a list of :class:`Usage ` object """ _attribute_map = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_py3.py similarity index 91% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_py3.py index eb7bbdc2f15..0e9f13729f6 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/usage_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/usage_py3.py @@ -21,7 +21,8 @@ class Usage(Model): :ivar unit: Gets the unit of measurement. Possible values include: 'Count', 'Bytes', 'Seconds', 'Percent', 'CountsPerSecond', 'BytesPerSecond' - :vartype unit: str or ~azure.mgmt.storage.v2018_02_01.models.UsageUnit + :vartype unit: str or + ~azure.mgmt.storage.v2018_03_01_preview.models.UsageUnit :ivar current_value: Gets the current count of the allocated resources in the subscription. :vartype current_value: int @@ -29,7 +30,7 @@ class Usage(Model): in the subscription. :vartype limit: int :ivar name: Gets the name of the type of usage. - :vartype name: ~azure.mgmt.storage.v2018_02_01.models.UsageName + :vartype name: ~azure.mgmt.storage.v2018_03_01_preview.models.UsageName """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/virtual_network_rule.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/virtual_network_rule.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/virtual_network_rule.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/virtual_network_rule.py index f8c08b6000e..2a5bc18acbb 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/virtual_network_rule.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/virtual_network_rule.py @@ -23,11 +23,11 @@ class VirtualNetworkRule(Model): :type virtual_network_resource_id: str :param action: The action of virtual network rule. Possible values include: 'Allow'. Default value: "Allow" . - :type action: str or ~azure.mgmt.storage.v2018_02_01.models.Action + :type action: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Action :param state: Gets the state of virtual network rule. Possible values include: 'provisioning', 'deprovisioning', 'succeeded', 'failed', 'networkSourceDeleted' - :type state: str or ~azure.mgmt.storage.v2018_02_01.models.State + :type state: str or ~azure.mgmt.storage.v2018_03_01_preview.models.State """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/virtual_network_rule_py3.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/virtual_network_rule_py3.py similarity index 92% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/virtual_network_rule_py3.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/virtual_network_rule_py3.py index 43673a374a5..9da12264292 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/models/virtual_network_rule_py3.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/models/virtual_network_rule_py3.py @@ -23,11 +23,11 @@ class VirtualNetworkRule(Model): :type virtual_network_resource_id: str :param action: The action of virtual network rule. Possible values include: 'Allow'. Default value: "Allow" . - :type action: str or ~azure.mgmt.storage.v2018_02_01.models.Action + :type action: str or ~azure.mgmt.storage.v2018_03_01_preview.models.Action :param state: Gets the state of virtual network rule. Possible values include: 'provisioning', 'deprovisioning', 'succeeded', 'failed', 'networkSourceDeleted' - :type state: str or ~azure.mgmt.storage.v2018_02_01.models.State + :type state: str or ~azure.mgmt.storage.v2018_03_01_preview.models.State """ _validation = { diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/__init__.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/__init__.py similarity index 91% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/__init__.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/__init__.py index b9b73b2babc..6282db615d5 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/__init__.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/__init__.py @@ -12,13 +12,13 @@ from .operations import Operations from .skus_operations import SkusOperations from .storage_accounts_operations import StorageAccountsOperations -from .usage_operations import UsageOperations +from .usages_operations import UsagesOperations from .blob_containers_operations import BlobContainersOperations __all__ = [ 'Operations', 'SkusOperations', 'StorageAccountsOperations', - 'UsageOperations', + 'UsagesOperations', 'BlobContainersOperations', ] diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/blob_containers_operations.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/blob_containers_operations.py similarity index 97% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/blob_containers_operations.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/blob_containers_operations.py index dcf30438e5b..56fe57423fc 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/blob_containers_operations.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/blob_containers_operations.py @@ -23,7 +23,7 @@ class BlobContainersOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for this operation. Constant value: "2018-02-01". + :ivar api_version: The API version to use for this operation. Constant value: "2018-03-01-preview". :ivar immutability_policy_name: The name of the blob container immutabilityPolicy within the specified storage account. ImmutabilityPolicy Name must be 'default'. Constant value: "default". """ @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2018-02-01" + self.api_version = "2018-03-01-preview" self.immutability_policy_name = "default" self.config = config @@ -57,7 +57,8 @@ def list( :param operation_config: :ref:`Operation configuration overrides`. :return: ListContainerItems or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.ListContainerItems or + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.ListContainerItems or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -129,7 +130,7 @@ def create( accessed publicly and the level of access. Possible values include: 'Container', 'Blob', 'None' :type public_access: str or - ~azure.mgmt.storage.v2018_02_01.models.PublicAccess + ~azure.mgmt.storage.v2018_03_01_preview.models.PublicAccess :param metadata: A name-value pair to associate with the container as metadata. :type metadata: dict[str, str] @@ -139,8 +140,8 @@ def create( :param operation_config: :ref:`Operation configuration overrides`. :return: BlobContainer or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.BlobContainer or - ~msrest.pipeline.ClientRawResponse + :rtype: ~azure.mgmt.storage.v2018_03_01_preview.models.BlobContainer + or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ blob_container = models.BlobContainer(public_access=public_access, metadata=metadata) @@ -217,7 +218,7 @@ def update( accessed publicly and the level of access. Possible values include: 'Container', 'Blob', 'None' :type public_access: str or - ~azure.mgmt.storage.v2018_02_01.models.PublicAccess + ~azure.mgmt.storage.v2018_03_01_preview.models.PublicAccess :param metadata: A name-value pair to associate with the container as metadata. :type metadata: dict[str, str] @@ -227,8 +228,8 @@ def update( :param operation_config: :ref:`Operation configuration overrides`. :return: BlobContainer or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.BlobContainer or - ~msrest.pipeline.ClientRawResponse + :rtype: ~azure.mgmt.storage.v2018_03_01_preview.models.BlobContainer + or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ blob_container = models.BlobContainer(public_access=public_access, metadata=metadata) @@ -305,8 +306,8 @@ def get( :param operation_config: :ref:`Operation configuration overrides`. :return: BlobContainer or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.BlobContainer or - ~msrest.pipeline.ClientRawResponse + :rtype: ~azure.mgmt.storage.v2018_03_01_preview.models.BlobContainer + or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ # Construct URL @@ -446,7 +447,7 @@ def set_legal_hold( :param operation_config: :ref:`Operation configuration overrides`. :return: LegalHold or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.LegalHold or + :rtype: ~azure.mgmt.storage.v2018_03_01_preview.models.LegalHold or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -529,7 +530,7 @@ def clear_legal_hold( :param operation_config: :ref:`Operation configuration overrides`. :return: LegalHold or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.LegalHold or + :rtype: ~azure.mgmt.storage.v2018_03_01_preview.models.LegalHold or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -617,7 +618,8 @@ def create_or_update_immutability_policy( :param operation_config: :ref:`Operation configuration overrides`. :return: ImmutabilityPolicy or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicy or + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicy or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -714,7 +716,8 @@ def get_immutability_policy( :param operation_config: :ref:`Operation configuration overrides`. :return: ImmutabilityPolicy or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicy or + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicy or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -803,7 +806,8 @@ def delete_immutability_policy( :param operation_config: :ref:`Operation configuration overrides`. :return: ImmutabilityPolicy or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicy or + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicy or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -889,7 +893,8 @@ def lock_immutability_policy( :param operation_config: :ref:`Operation configuration overrides`. :return: ImmutabilityPolicy or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicy or + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicy or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -978,7 +983,8 @@ def extend_immutability_policy( :param operation_config: :ref:`Operation configuration overrides`. :return: ImmutabilityPolicy or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.ImmutabilityPolicy or + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.ImmutabilityPolicy or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/operations.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/operations.py similarity index 94% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/operations.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/operations.py index c7049ade6b0..445d1003e64 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/operations.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/operations.py @@ -23,7 +23,7 @@ class Operations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for this operation. Constant value: "2018-02-01". + :ivar api_version: The API version to use for this operation. Constant value: "2018-03-01-preview". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2018-02-01" + self.api_version = "2018-03-01-preview" self.config = config @@ -48,7 +48,7 @@ def list( overrides`. :return: An iterator like instance of Operation :rtype: - ~azure.mgmt.storage.v2018_02_01.models.OperationPaged[~azure.mgmt.storage.v2018_02_01.models.Operation] + ~azure.mgmt.storage.v2018_03_01_preview.models.OperationPaged[~azure.mgmt.storage.v2018_03_01_preview.models.Operation] :raises: :class:`CloudError` """ def internal_paging(next_link=None, raw=False): diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/skus_operations.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/skus_operations.py similarity index 95% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/skus_operations.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/skus_operations.py index 16d00abe29d..e0ca2a05942 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/skus_operations.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/skus_operations.py @@ -23,7 +23,7 @@ class SkusOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for this operation. Constant value: "2018-02-01". + :ivar api_version: The API version to use for this operation. Constant value: "2018-03-01-preview". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2018-02-01" + self.api_version = "2018-03-01-preview" self.config = config @@ -49,7 +49,7 @@ def list( overrides`. :return: An iterator like instance of Sku :rtype: - ~azure.mgmt.storage.v2018_02_01.models.SkuPaged[~azure.mgmt.storage.v2018_02_01.models.Sku] + ~azure.mgmt.storage.v2018_03_01_preview.models.SkuPaged[~azure.mgmt.storage.v2018_03_01_preview.models.Sku] :raises: :class:`CloudError` """ def internal_paging(next_link=None, raw=False): diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/storage_accounts_operations.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/storage_accounts_operations.py similarity index 75% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/storage_accounts_operations.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/storage_accounts_operations.py index 75e62a80775..3709199456c 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/storage_accounts_operations.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/storage_accounts_operations.py @@ -25,7 +25,8 @@ class StorageAccountsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for this operation. Constant value: "2018-02-01". + :ivar api_version: The API version to use for this operation. Constant value: "2018-03-01-preview". + :ivar management_policy_name: The name of the Storage Account Management Policy. It should always be 'default'. Constant value: "default". """ models = models @@ -35,7 +36,8 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2018-02-01" + self.api_version = "2018-03-01-preview" + self.management_policy_name = "default" self.config = config @@ -53,8 +55,8 @@ def check_name_availability( overrides`. :return: CheckNameAvailabilityResult or ClientRawResponse if raw=true :rtype: - ~azure.mgmt.storage.v2018_02_01.models.CheckNameAvailabilityResult or - ~msrest.pipeline.ClientRawResponse + ~azure.mgmt.storage.v2018_03_01_preview.models.CheckNameAvailabilityResult + or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ account_name = models.StorageAccountCheckNameAvailabilityParameters(name=name) @@ -173,7 +175,7 @@ def create( :type account_name: str :param parameters: The parameters to provide for the created account. :type parameters: - ~azure.mgmt.storage.v2018_02_01.models.StorageAccountCreateParameters + ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountCreateParameters :param dict custom_headers: headers that will be added to the request :param bool raw: The poller return type is ClientRawResponse, the direct response alongside the deserialized response @@ -182,9 +184,9 @@ def create( :return: An instance of LROPoller that returns StorageAccount or ClientRawResponse if raw==True :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.storage.v2018_02_01.models.StorageAccount] + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccount] or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.storage.v2018_02_01.models.StorageAccount]] + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccount]] :raises: :class:`CloudError` """ raw_result = self._create_initial( @@ -290,8 +292,8 @@ def get_properties( :param operation_config: :ref:`Operation configuration overrides`. :return: StorageAccount or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.StorageAccount or - ~msrest.pipeline.ClientRawResponse + :rtype: ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccount + or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ # Construct URL @@ -360,15 +362,15 @@ def update( :type account_name: str :param parameters: The parameters to provide for the updated account. :type parameters: - ~azure.mgmt.storage.v2018_02_01.models.StorageAccountUpdateParameters + ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountUpdateParameters :param dict custom_headers: headers that will be added to the request :param bool raw: returns the direct response alongside the deserialized response :param operation_config: :ref:`Operation configuration overrides`. :return: StorageAccount or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.StorageAccount or - ~msrest.pipeline.ClientRawResponse + :rtype: ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccount + or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ # Construct URL @@ -432,7 +434,7 @@ def list( overrides`. :return: An iterator like instance of StorageAccount :rtype: - ~azure.mgmt.storage.v2018_02_01.models.StorageAccountPaged[~azure.mgmt.storage.v2018_02_01.models.StorageAccount] + ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountPaged[~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccount] :raises: :class:`CloudError` """ def internal_paging(next_link=None, raw=False): @@ -502,7 +504,7 @@ def list_by_resource_group( overrides`. :return: An iterator like instance of StorageAccount :rtype: - ~azure.mgmt.storage.v2018_02_01.models.StorageAccountPaged[~azure.mgmt.storage.v2018_02_01.models.StorageAccount] + ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountPaged[~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccount] :raises: :class:`CloudError` """ def internal_paging(next_link=None, raw=False): @@ -575,8 +577,8 @@ def list_keys( overrides`. :return: StorageAccountListKeysResult or ClientRawResponse if raw=true :rtype: - ~azure.mgmt.storage.v2018_02_01.models.StorageAccountListKeysResult or - ~msrest.pipeline.ClientRawResponse + ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountListKeysResult + or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ # Construct URL @@ -644,8 +646,8 @@ def regenerate_key( overrides`. :return: StorageAccountListKeysResult or ClientRawResponse if raw=true :rtype: - ~azure.mgmt.storage.v2018_02_01.models.StorageAccountListKeysResult or - ~msrest.pipeline.ClientRawResponse + ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountListKeysResult + or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ regenerate_key1 = models.StorageAccountRegenerateKeyParameters(key_name=key_name) @@ -712,14 +714,15 @@ def list_account_sas( :param parameters: The parameters to provide to list SAS credentials for the storage account. :type parameters: - ~azure.mgmt.storage.v2018_02_01.models.AccountSasParameters + ~azure.mgmt.storage.v2018_03_01_preview.models.AccountSasParameters :param dict custom_headers: headers that will be added to the request :param bool raw: returns the direct response alongside the deserialized response :param operation_config: :ref:`Operation configuration overrides`. :return: ListAccountSasResponse or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.ListAccountSasResponse + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.ListAccountSasResponse or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -785,14 +788,15 @@ def list_service_sas( :param parameters: The parameters to provide to list service SAS credentials. :type parameters: - ~azure.mgmt.storage.v2018_02_01.models.ServiceSasParameters + ~azure.mgmt.storage.v2018_03_01_preview.models.ServiceSasParameters :param dict custom_headers: headers that will be added to the request :param bool raw: returns the direct response alongside the deserialized response :param operation_config: :ref:`Operation configuration overrides`. :return: ListServiceSasResponse or ClientRawResponse if raw=true - :rtype: ~azure.mgmt.storage.v2018_02_01.models.ListServiceSasResponse + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.ListServiceSasResponse or ~msrest.pipeline.ClientRawResponse :raises: :class:`CloudError` """ @@ -843,3 +847,210 @@ def list_service_sas( return deserialized list_service_sas.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/ListServiceSas'} + + def get_management_policies( + self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config): + """Gets the data policy rules associated with the specified storage + account. + + :param resource_group_name: The name of the resource group within the + user's subscription. The name is case insensitive. + :type resource_group_name: str + :param account_name: The name of the storage account within the + specified resource group. Storage account names must be between 3 and + 24 characters in length and use numbers and lower-case letters only. + :type account_name: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: StorageAccountManagementPolicies or ClientRawResponse if + raw=true + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountManagementPolicies + or ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.get_management_policies.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=24, min_length=3), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str', min_length=1), + 'managementPolicyName': self._serialize.url("self.management_policy_name", self.management_policy_name, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=1) + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters) + response = self._client.send(request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('StorageAccountManagementPolicies', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + get_management_policies.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'} + + def create_or_update_management_policies( + self, resource_group_name, account_name, policy=None, custom_headers=None, raw=False, **operation_config): + """Sets the data policy rules associated with the specified storage + account. + + :param resource_group_name: The name of the resource group within the + user's subscription. The name is case insensitive. + :type resource_group_name: str + :param account_name: The name of the storage account within the + specified resource group. Storage account names must be between 3 and + 24 characters in length and use numbers and lower-case letters only. + :type account_name: str + :param policy: The Storage Account ManagementPolicies Rules, in JSON + format. See more details in: + https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts. + :type policy: object + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: StorageAccountManagementPolicies or ClientRawResponse if + raw=true + :rtype: + ~azure.mgmt.storage.v2018_03_01_preview.models.StorageAccountManagementPolicies + or ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + properties = models.ManagementPoliciesRulesSetParameter(policy=policy) + + # Construct URL + url = self.create_or_update_management_policies.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=24, min_length=3), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str', min_length=1), + 'managementPolicyName': self._serialize.url("self.management_policy_name", self.management_policy_name, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=1) + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(properties, 'ManagementPoliciesRulesSetParameter') + + # Construct and send request + request = self._client.put(url, query_parameters) + response = self._client.send( + request, header_parameters, body_content, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('StorageAccountManagementPolicies', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + create_or_update_management_policies.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'} + + def delete_management_policies( + self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config): + """Deletes the data policy rules associated with the specified storage + account. + + :param resource_group_name: The name of the resource group within the + user's subscription. The name is case insensitive. + :type resource_group_name: str + :param account_name: The name of the storage account within the + specified resource group. Storage account names must be between 3 and + 24 characters in length and use numbers and lower-case letters only. + :type account_name: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: None or ClientRawResponse if raw=true + :rtype: None or ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.delete_management_policies.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), + 'accountName': self._serialize.url("account_name", account_name, 'str', max_length=24, min_length=3), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str', min_length=1), + 'managementPolicyName': self._serialize.url("self.management_policy_name", self.management_policy_name, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str', min_length=1) + + # Construct headers + header_parameters = {} + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.delete(url, query_parameters) + response = self._client.send(request, header_parameters, stream=False, **operation_config) + + if response.status_code not in [200, 204]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + delete_management_policies.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/managementPolicies/{managementPolicyName}'} diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/usage_operations.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/usages_operations.py similarity index 94% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/usage_operations.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/usages_operations.py index 327ed44d1b8..1adfde6245d 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/operations/usage_operations.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/operations/usages_operations.py @@ -16,14 +16,14 @@ from .. import models -class UsageOperations(object): - """UsageOperations operations. +class UsagesOperations(object): + """UsagesOperations operations. :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for this operation. Constant value: "2018-02-01". + :ivar api_version: The API version to use for this operation. Constant value: "2018-03-01-preview". """ models = models @@ -33,7 +33,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2018-02-01" + self.api_version = "2018-03-01-preview" self.config = config @@ -49,7 +49,7 @@ def list( overrides`. :return: An iterator like instance of Usage :rtype: - ~azure.mgmt.storage.v2018_02_01.models.UsagePaged[~azure.mgmt.storage.v2018_02_01.models.Usage] + ~azure.mgmt.storage.v2018_03_01_preview.models.UsagePaged[~azure.mgmt.storage.v2018_03_01_preview.models.Usage] :raises: :class:`CloudError` """ def internal_paging(next_link=None, raw=False): @@ -117,7 +117,7 @@ def list_by_location( overrides`. :return: An iterator like instance of Usage :rtype: - ~azure.mgmt.storage.v2018_02_01.models.UsagePaged[~azure.mgmt.storage.v2018_02_01.models.Usage] + ~azure.mgmt.storage.v2018_03_01_preview.models.UsagePaged[~azure.mgmt.storage.v2018_03_01_preview.models.Usage] :raises: :class:`CloudError` """ def internal_paging(next_link=None, raw=False): diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/storage_management_client.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/storage_management_client.py similarity index 85% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/storage_management_client.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/storage_management_client.py index a7054239562..8f683afba98 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/storage_management_client.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/storage_management_client.py @@ -16,7 +16,7 @@ from .operations.operations import Operations from .operations.skus_operations import SkusOperations from .operations.storage_accounts_operations import StorageAccountsOperations -from .operations.usage_operations import UsageOperations +from .operations.usages_operations import UsagesOperations from .operations.blob_containers_operations import BlobContainersOperations from . import models @@ -60,15 +60,15 @@ class StorageManagementClient(SDKClient): :vartype config: StorageManagementClientConfiguration :ivar operations: Operations operations - :vartype operations: azure.mgmt.storage.v2018_02_01.operations.Operations + :vartype operations: azure.mgmt.storage.v2018_03_01_preview.operations.Operations :ivar skus: Skus operations - :vartype skus: azure.mgmt.storage.v2018_02_01.operations.SkusOperations + :vartype skus: azure.mgmt.storage.v2018_03_01_preview.operations.SkusOperations :ivar storage_accounts: StorageAccounts operations - :vartype storage_accounts: azure.mgmt.storage.v2018_02_01.operations.StorageAccountsOperations - :ivar usage: Usage operations - :vartype usage: azure.mgmt.storage.v2018_02_01.operations.UsageOperations + :vartype storage_accounts: azure.mgmt.storage.v2018_03_01_preview.operations.StorageAccountsOperations + :ivar usages: Usages operations + :vartype usages: azure.mgmt.storage.v2018_03_01_preview.operations.UsagesOperations :ivar blob_containers: BlobContainers operations - :vartype blob_containers: azure.mgmt.storage.v2018_02_01.operations.BlobContainersOperations + :vartype blob_containers: azure.mgmt.storage.v2018_03_01_preview.operations.BlobContainersOperations :param credentials: Credentials needed for the client to connect to Azure. :type credentials: :mod:`A msrestazure Credentials @@ -85,7 +85,7 @@ def __init__( super(StorageManagementClient, self).__init__(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2018-02-01' + self.api_version = '2018-03-01-preview' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) @@ -95,7 +95,7 @@ def __init__( self._client, self.config, self._serialize, self._deserialize) self.storage_accounts = StorageAccountsOperations( self._client, self.config, self._serialize, self._deserialize) - self.usage = UsageOperations( + self.usages = UsagesOperations( self._client, self.config, self._serialize, self._deserialize) self.blob_containers = BlobContainersOperations( self._client, self.config, self._serialize, self._deserialize) diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/version.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/version.py similarity index 93% rename from src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/version.py rename to src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/version.py index 848a6c9f9e9..623d610ecc1 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_02_01/version.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/v2018_03_01_preview/version.py @@ -9,5 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "2018-02-01" +VERSION = "2018-03-01-preview" diff --git a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/version.py b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/version.py index 7c23b73fa13..b9304b9e9eb 100644 --- a/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/version.py +++ b/src/storage-preview/azext_storage_preview/vendored_sdks/azure_mgmt_storage/version.py @@ -5,4 +5,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "2.0.0rc1" +VERSION = "2.0.0rc3" diff --git a/src/storage-preview/setup.py b/src/storage-preview/setup.py index b4247028aa7..47d76dc56d6 100644 --- a/src/storage-preview/setup.py +++ b/src/storage-preview/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "0.1.1" +VERSION = "0.1.2" CLASSIFIERS = [ 'Development Status :: 4 - Beta',