From 62ba7dfd27d4c2831d6fc828dd2d30bbb0fdf927 Mon Sep 17 00:00:00 2001 From: shiyingchen Date: Thu, 6 Apr 2023 18:02:35 +0800 Subject: [PATCH 1/2] register blob arguments with track2 SDK for adding --blob-url --- .../cli/command_modules/storage/_params.py | 34 +++++----- .../latest/test_storage_batch_operations.py | 30 ++++++++- .../test_storage_blob_live_scenarios.py | 65 +++++++++++++++++++ 3 files changed, 111 insertions(+), 18 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py index a767930cc7e..dd4e2b6eae9 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -933,7 +933,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob rewrite', resource_type=ResourceType.DATA_STORAGE_BLOB, min_api='2020-04-08') as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() c.register_precondition_options() c.argument('source_url', options_list=['--source-uri', '-u'], @@ -954,14 +954,14 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem 'configured to allow overrides. Otherwise an error will be raised.') with self.argument_context('storage blob update') as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() c.register_precondition_options() t_blob_content_settings = self.get_sdk('_models#ContentSettings', resource_type=ResourceType.DATA_STORAGE_BLOB) c.register_content_settings_argument(t_blob_content_settings, update=True, process_md5=True) c.extra('lease', options_list=['--lease-id'], help='Required if the blob has an active lease.') with self.argument_context('storage blob exists') as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() c.extra('snapshot', help='The snapshot parameter is an opaque DateTime value that, when present, ' 'specifies the snapshot.') @@ -974,13 +974,13 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem 'parameter indicates the snapshot version.') with self.argument_context('storage blob snapshot') as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() c.register_precondition_options() c.extra('lease', options_list=['--lease-id'], help='Required if the blob has an active lease.') with self.argument_context('storage blob set-tier') as c: from azure.cli.command_modules.storage._validators import (blob_rehydrate_priority_validator) - c.register_blob_arguments() + c.register_blob_arguments_track2() c.argument('blob_type', options_list=('--type', '-t'), arg_type=get_enum_type(('block', 'page'))) c.argument('tier', validator=blob_tier_validator) @@ -990,15 +990,15 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem "The priority can be set on a blob only once, default value is Standard.") with self.argument_context('storage blob set-legal-hold') as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() c.argument('legal_hold', arg_type=get_three_state_flag(), help='Specified if a legal hold should be set on the blob.') with self.argument_context('storage blob immutability-policy delete') as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() with self.argument_context('storage blob immutability-policy set') as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() c.argument('expiry_time', type=get_datetime_type(False), help='expiration UTC datetime in (Y-m-d\'T\'H:M:S\'Z\')') c.argument('policy_mode', arg_type=get_enum_type(['Locked', 'Unlocked']), help='Lock or Unlock the policy') @@ -1023,7 +1023,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem for item in ['show', 'metadata show', 'metadata update']: with self.argument_context('storage blob {}'.format(item)) as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() c.register_precondition_options() c.extra('snapshot', help='The snapshot parameter is an opaque DateTime value that, when present, ' 'specifies the blob snapshot to retrieve.') @@ -1148,7 +1148,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob delete') as c: from .sdkutil import get_delete_blob_snapshot_type_names - c.register_blob_arguments() + c.register_blob_arguments_track2() c.register_precondition_options() c.argument('delete_snapshots', arg_type=get_enum_type(get_delete_blob_snapshot_type_names()), help='Required if the blob has associated snapshots. ' @@ -1159,7 +1159,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem 'specifies the blob snapshot to delete.') with self.argument_context('storage blob undelete') as c: - c.register_blob_arguments() + c.register_blob_arguments_track2() with self.argument_context('storage blob delete-batch') as c: c.ignore('source_container_name') @@ -1173,7 +1173,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob lease acquire') as c: c.register_precondition_options() - c.register_blob_arguments() + c.register_blob_arguments_track2() c.extra('lease_id', options_list='--proposed-lease-id', help='Proposed lease ID, in a GUID string format. ' 'The Blob service returns 400 (Invalid request) if the proposed lease ID is not in the correct format.') c.argument('lease_duration', help='Specify the duration of the lease, in seconds, or negative one (-1) for ' @@ -1182,7 +1182,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob lease break') as c: c.register_precondition_options() - c.register_blob_arguments() + c.register_blob_arguments_track2() c.argument('lease_break_period', type=int, help="This is the proposed duration of seconds that the lease should continue before it is broken, " "between 0 and 60 seconds. This break period is only used if it is shorter than the time remaining " @@ -1193,7 +1193,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob lease change') as c: c.register_precondition_options() - c.register_blob_arguments() + c.register_blob_arguments_track2() c.extra('proposed_lease_id', help='Proposed lease ID, in a GUID string format. The Blob service returns 400 ' '(Invalid request) if the proposed lease ID is not in the correct format.', required=True) c.extra('lease_id', help='Required if the blob has an active lease.', required=True) @@ -1201,7 +1201,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem for item in ['release', 'renew']: with self.argument_context('storage blob lease {}'.format(item)) as c: c.register_precondition_options() - c.register_blob_arguments() + c.register_blob_arguments_track2() c.extra('lease_id', help='Required if the blob has an active lease.', required=True) with self.argument_context('storage copy') as c: @@ -1295,7 +1295,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob copy start', resource_type=ResourceType.DATA_STORAGE_BLOB) as c: from ._validators import validate_source_url - c.register_blob_arguments() + c.register_blob_arguments_track2() c.register_precondition_options() c.register_precondition_options(prefix='source_') c.register_source_uri_arguments(validator=validate_source_url) @@ -1358,7 +1358,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob query') as c: from ._validators import validate_text_configuration - c.register_blob_arguments() + c.register_blob_arguments_track2() c.register_precondition_options() line_separator = CLIArgumentType(help="The string used to separate records.", default='\n') column_separator = CLIArgumentType(help="The string used to separate columns.", default=',') diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_batch_operations.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_batch_operations.py index b759c905bbb..d74901d8e5d 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_batch_operations.py +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_batch_operations.py @@ -7,7 +7,6 @@ from datetime import datetime from azure.cli.testsdk import LiveScenarioTest, StorageAccountPreparer, ResourceGroupPreparer, JMESPathCheck from ..storage_test_util import StorageScenarioMixin, StorageTestFilesPreparer -from azure.cli.testsdk.scenario_tests import AllowLargeResponse class StorageBatchOperationScenarios(StorageScenarioMixin, LiveScenarioTest): @@ -271,6 +270,35 @@ def test_storage_file_batch_upload_scenarios(self, test_dir, storage_account_inf src_share, local_folder) self.assertEqual(4, sum(len(f) for r, d, f in os.walk(local_folder))) + # upload to specifying share path + src_share = self.create_share(storage_account_info) + local_folder = self.create_temp_dir() + sub_dir = 'test_dir/sub_dir' + self.storage_cmd('storage file upload-batch -s "{}" -d {} --pattern */file_0 --destination-path {} ', + storage_account_info, test_dir, src_share, sub_dir) + self.storage_cmd('storage file download-batch -s {} -d "{}"', storage_account_info, src_share + "/" + sub_dir, + local_folder) + self.assertEqual(4, sum(len(f) for r, d, f in os.walk(local_folder))) + + # upload with content settings + src_share = self.create_share(storage_account_info) + local_folder = self.create_temp_dir() + self.storage_cmd('storage file upload-batch -s "{}" -d {} --pattern apple/file_0 ' + '--content-cache-control no-cache ' + '--content-disposition attachment ' + '--content-encoding compress ' + '--content-language en-US ' + '--content-type "multipart/form-data;" ' + '--metadata key=val', storage_account_info, test_dir, src_share) + self.storage_cmd('storage file show -s {} -p "{}" ', storage_account_info, src_share, 'apple/file_0'). \ + assert_with_checks(JMESPathCheck('name', 'file_0'), + JMESPathCheck('properties.contentSettings.cacheControl', 'no-cache'), + JMESPathCheck('properties.contentSettings.contentDisposition', 'attachment'), + JMESPathCheck('properties.contentSettings.contentEncoding', 'compress'), + JMESPathCheck('properties.contentSettings.contentLanguage', 'en-US'), + JMESPathCheck('properties.contentSettings.contentType', 'multipart/form-data;'), + JMESPathCheck('metadata', {'key': 'val'})) + @ResourceGroupPreparer() @StorageAccountPreparer(parameter_name='src_account') @StorageAccountPreparer(parameter_name='dst_account') diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_live_scenarios.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_live_scenarios.py index 0d554e6bf3b..5850f32fad6 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_live_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_live_scenarios.py @@ -164,3 +164,68 @@ def test_storage_blob_query_scenario(self, resource_group, storage_account): result = self.storage_cmd('storage blob query -c {} -n {} --query-expression "{}" --input-format json', account_info, container, json_blob, query_string).output self.assertIsNotNone(result) + + +class StorageBlobURLScenarioTest(StorageScenarioMixin, LiveScenarioTest): + @ResourceGroupPreparer(name_prefix='clitest') + @StorageAccountPreparer(kind='StorageV2', name_prefix='clitest', location='eastus2euap') + def test_storage_blob_url_scenarios(self, resource_group, storage_account): + account_info = self.get_account_info(resource_group, storage_account) + container = self.create_container(account_info, prefix="con1") + + local_file1 = self.create_temp_file(128) + local_file2 = self.create_temp_file(64) + blob_name1 = "/".join(["dir", self.create_random_name(prefix='blob', length=24)]) + + # set delete-policy to enable soft-delete + self.storage_cmd('storage blob service-properties delete-policy update --enable true --days-retained 2', + account_info) + self.storage_cmd('storage blob service-properties delete-policy show', + account_info).assert_with_checks(JMESPathCheck('enabled', True), + JMESPathCheck('days', 2)) + # Prepare blob + self.storage_cmd('storage blob upload -c {} -f "{}" -n {} ', account_info, + container, local_file1, blob_name1) + + expiry = (datetime.utcnow() + timedelta(hours=1)).strftime('%Y-%m-%dT%H:%MZ') + blob_uri = self.storage_cmd('storage blob generate-sas -n {} -c {} --expiry {} --permissions ' + 'rwad --https-only --full-uri -o tsv', + account_info, blob_name1, container, expiry).output.strip() + + self.cmd('storage blob exists --blob-url {}'.format(blob_uri), checks=JMESPathCheck('exists', True)) + self.cmd('storage blob show --blob-url {}'.format(blob_uri), checks=[ + JMESPathCheck('name', blob_name1), + JMESPathCheck('properties.contentLength', 128 * 1024), + JMESPathCheck('properties.blobTier', 'Hot')]) + + self.cmd('storage blob upload -f "{}" --blob-url {} --overwrite'.format(local_file2, blob_uri)) + + self.cmd('storage blob show --blob-url {}'.format(blob_uri), checks=[ + JMESPathCheck('name', blob_name1), + JMESPathCheck('properties.contentLength', 64 * 1024)]) + local_dir = self.create_temp_dir() + downloaded = os.path.join(local_dir, 'test.file') + self.cmd('storage blob download --blob-url {} -f "{}"'.format(blob_uri, downloaded)) + self.assertTrue(os.path.isfile(downloaded), 'The file is not downloaded.') + self.assertEqual(64 * 1024, os.stat(downloaded).st_size, + 'The download file size is not right.') + + self.cmd('storage blob set-tier --blob-url {} --tier Cool'.format(blob_uri)) + self.cmd('storage blob show --blob-url {}'.format(blob_uri), checks=[ + JMESPathCheck('name', blob_name1), + JMESPathCheck('properties.contentLength', 64 * 1024), + JMESPathCheck('properties.blobTier', "Cool")]) + + self.cmd('storage blob snapshot --blob-url {}'.format(blob_uri), + checks=JMESPathCheckExists('snapshot')) + self.storage_cmd('storage blob list -c {}', account_info, container)\ + .assert_with_checks(JMESPathCheck('length(@)', 1)) + + self.cmd('storage blob delete --blob-url {} --delete-snapshots include '.format(blob_uri)) + + self.storage_cmd('storage blob list -c {}', account_info, container).assert_with_checks( + JMESPathCheck('length(@)', 0)) + + self.cmd('storage blob undelete --blob-url {} '.format(blob_uri)) + self.storage_cmd('storage blob list -c {}', account_info, container).assert_with_checks( + JMESPathCheck('length(@)', 1)) From a6ba2f3ab90b23e4485ff9a0de7f3f9f2ade09eb Mon Sep 17 00:00:00 2001 From: shiyingchen Date: Fri, 7 Apr 2023 15:06:13 +0800 Subject: [PATCH 2/2] sync tests --- .../cli/command_modules/storage/_params.py | 20 +- .../cli/command_modules/storage/commands.py | 3 +- ...test_storage_append_blob_upload_oauth.yaml | 926 ++ ...st_storage_blob_batch_oauth_scenarios.yaml | 9351 +++++++++++++++++ ...t_storage_container_soft_delete_oauth.yaml | 521 + .../test_storage_blob_live_scenarios.py | 8 + .../tests/latest/test_storage_oauth_track2.py | 119 +- 7 files changed, 10934 insertions(+), 14 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_append_blob_upload_oauth.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_oauth_scenarios.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_container_soft_delete_oauth.yaml diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py index dd4e2b6eae9..1bc14abb5ab 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -933,7 +933,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob rewrite', resource_type=ResourceType.DATA_STORAGE_BLOB, min_api='2020-04-08') as c: - c.register_blob_arguments_track2() + c.register_blob_arguments() c.register_precondition_options() c.argument('source_url', options_list=['--source-uri', '-u'], @@ -954,7 +954,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem 'configured to allow overrides. Otherwise an error will be raised.') with self.argument_context('storage blob update') as c: - c.register_blob_arguments_track2() + c.register_blob_arguments() c.register_precondition_options() t_blob_content_settings = self.get_sdk('_models#ContentSettings', resource_type=ResourceType.DATA_STORAGE_BLOB) c.register_content_settings_argument(t_blob_content_settings, update=True, process_md5=True) @@ -990,15 +990,15 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem "The priority can be set on a blob only once, default value is Standard.") with self.argument_context('storage blob set-legal-hold') as c: - c.register_blob_arguments_track2() + c.register_blob_arguments() c.argument('legal_hold', arg_type=get_three_state_flag(), help='Specified if a legal hold should be set on the blob.') with self.argument_context('storage blob immutability-policy delete') as c: - c.register_blob_arguments_track2() + c.register_blob_arguments() with self.argument_context('storage blob immutability-policy set') as c: - c.register_blob_arguments_track2() + c.register_blob_arguments() c.argument('expiry_time', type=get_datetime_type(False), help='expiration UTC datetime in (Y-m-d\'T\'H:M:S\'Z\')') c.argument('policy_mode', arg_type=get_enum_type(['Locked', 'Unlocked']), help='Lock or Unlock the policy') @@ -1173,7 +1173,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob lease acquire') as c: c.register_precondition_options() - c.register_blob_arguments_track2() + c.register_blob_arguments() c.extra('lease_id', options_list='--proposed-lease-id', help='Proposed lease ID, in a GUID string format. ' 'The Blob service returns 400 (Invalid request) if the proposed lease ID is not in the correct format.') c.argument('lease_duration', help='Specify the duration of the lease, in seconds, or negative one (-1) for ' @@ -1182,7 +1182,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob lease break') as c: c.register_precondition_options() - c.register_blob_arguments_track2() + c.register_blob_arguments() c.argument('lease_break_period', type=int, help="This is the proposed duration of seconds that the lease should continue before it is broken, " "between 0 and 60 seconds. This break period is only used if it is shorter than the time remaining " @@ -1193,7 +1193,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob lease change') as c: c.register_precondition_options() - c.register_blob_arguments_track2() + c.register_blob_arguments() c.extra('proposed_lease_id', help='Proposed lease ID, in a GUID string format. The Blob service returns 400 ' '(Invalid request) if the proposed lease ID is not in the correct format.', required=True) c.extra('lease_id', help='Required if the blob has an active lease.', required=True) @@ -1201,7 +1201,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem for item in ['release', 'renew']: with self.argument_context('storage blob lease {}'.format(item)) as c: c.register_precondition_options() - c.register_blob_arguments_track2() + c.register_blob_arguments() c.extra('lease_id', help='Required if the blob has an active lease.', required=True) with self.argument_context('storage copy') as c: @@ -1295,7 +1295,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob copy start', resource_type=ResourceType.DATA_STORAGE_BLOB) as c: from ._validators import validate_source_url - c.register_blob_arguments_track2() + c.register_blob_arguments() c.register_precondition_options() c.register_precondition_options(prefix='source_') c.register_source_uri_arguments(validator=validate_source_url) diff --git a/src/azure-cli/azure/cli/command_modules/storage/commands.py b/src/azure-cli/azure/cli/command_modules/storage/commands.py index 74b9d4a442c..f1ffd120f69 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/commands.py +++ b/src/azure-cli/azure/cli/command_modules/storage/commands.py @@ -368,8 +368,7 @@ def get_custom_sdk(custom_module, client_factory, resource_type=ResourceType.DAT g.storage_command_oauth('metadata update', 'set_blob_metadata') g.storage_command_oauth('snapshot', 'create_snapshot') g.storage_command_oauth('update', 'set_http_headers') - g.storage_custom_command_oauth('exists', 'exists', client_factory=cf_blob_service, - transform=create_boolean_result_output_transformer('exists')) + g.storage_command_oauth('exists', 'exists', transform=create_boolean_result_output_transformer('exists')) g.storage_command_oauth('delete', 'delete_blob') g.storage_command_oauth('undelete', 'undelete_blob', transform=create_boolean_result_output_transformer('undeleted'), diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_append_blob_upload_oauth.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_append_blob_upload_oauth.yaml new file mode 100644 index 00000000000..d32c059a22e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_append_blob_upload_oauth.yaml @@ -0,0 +1,926 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --account-name --account-key + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:30 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 06:54:31 GMT + etag: + - '"0x8DB3734F07DA916"' + last-modified: + - Fri, 07 Apr 2023 06:54:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + ParameterSetName: + - -c -f -n --type --if-none-match --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:32 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + date: + - Fri, 07 Apr 2023 06:54:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-error-code: + - BlobNotFound + x-ms-version: + - '2021-06-08' + status: + code: 404 + message: The specified blob does not exist. +- request: + body: "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + Content-Length: + - '1024' + Content-Type: + - application/octet-stream + ParameterSetName: + - -c -f -n --type --if-none-match --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=appendblock + response: + body: + string: "\uFEFFBlobNotFoundThe + specified blob does not exist.\nRequestId:e1bce5e7-b01e-0076-701d-699c8c000000\nTime:2023-04-07T06:54:34.9335836Z" + headers: + content-length: + - '213' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 06:54:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - BlobNotFound + x-ms-version: + - '2021-06-08' + status: + code: 404 + message: The specified blob does not exist. +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -c -f -n --type --if-none-match --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - AppendBlob + x-ms-date: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 06:54:34 GMT + etag: + - '"0x8DB3734F2A719B9"' + last-modified: + - Fri, 07 Apr 2023 06:54:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + Content-Length: + - '1024' + Content-Type: + - application/octet-stream + ParameterSetName: + - -c -f -n --type --if-none-match --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=appendblock + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 06:54:34 GMT + etag: + - '"0x8DB3734F2D01F33"' + last-modified: + - Fri, 07 Apr 2023 06:54:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-append-offset: + - '0' + x-ms-blob-committed-block-count: + - '1' + x-ms-content-crc64: + - iknlm7CyG2k= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob show + Connection: + - keep-alive + ParameterSetName: + - -n -c --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:36 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '1024' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:36 GMT + etag: + - '"0x8DB3734F2D01F33"' + last-modified: + - Fri, 07 Apr 2023 06:54:35 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: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + ParameterSetName: + - -c -f -n --type --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:37 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '1024' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:37 GMT + etag: + - '"0x8DB3734F2D01F33"' + last-modified: + - Fri, 07 Apr 2023 06:54:35 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: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + ParameterSetName: + - -c -f -n --type --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:38 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '1024' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:37 GMT + etag: + - '"0x8DB3734F2D01F33"' + last-modified: + - Fri, 07 Apr 2023 06:54:35 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: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + Content-Length: + - '1024' + Content-Type: + - application/octet-stream + ParameterSetName: + - -c -f -n --type --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:38 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=appendblock + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 06:54:37 GMT + etag: + - '"0x8DB3734F4A4BDBA"' + last-modified: + - Fri, 07 Apr 2023 06:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-append-offset: + - '1024' + x-ms-blob-committed-block-count: + - '2' + x-ms-content-crc64: + - iknlm7CyG2k= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob show + Connection: + - keep-alive + ParameterSetName: + - -n -c --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:39 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '2048' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:39 GMT + etag: + - '"0x8DB3734F4A4BDBA"' + last-modified: + - Fri, 07 Apr 2023 06:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + ParameterSetName: + - -c -f -n --type --maxsize-condition --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:40 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '2048' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:41 GMT + etag: + - '"0x8DB3734F4A4BDBA"' + last-modified: + - Fri, 07 Apr 2023 06:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + ParameterSetName: + - -c -f -n --type --maxsize-condition --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:41 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '2048' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:41 GMT + etag: + - '"0x8DB3734F4A4BDBA"' + last-modified: + - Fri, 07 Apr 2023 06:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + Content-Length: + - '1024' + Content-Type: + - application/octet-stream + ParameterSetName: + - -c -f -n --type --maxsize-condition --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-condition-maxsize: + - '1000' + x-ms-date: + - Fri, 07 Apr 2023 06:54:41 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=appendblock + response: + body: + string: "\uFEFFMaxBlobSizeConditionNotMetThe + max blob size condition specified was not met.\nRequestId:0436847d-701e-0042-621d-693324000000\nTime:2023-04-07T06:54:41.6428527Z" + headers: + content-length: + - '243' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 06:54:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - MaxBlobSizeConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The max blob size condition specified was not met. +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + ParameterSetName: + - -c -f -n --type --overwrite --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:42 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '2048' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:42 GMT + etag: + - '"0x8DB3734F4A4BDBA"' + last-modified: + - Fri, 07 Apr 2023 06:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + ParameterSetName: + - -c -f -n --type --overwrite --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:43 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '2048' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:42 GMT + etag: + - '"0x8DB3734F4A4BDBA"' + last-modified: + - Fri, 07 Apr 2023 06:54:38 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-committed-block-count: + - '2' + x-ms-blob-type: + - AppendBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -c -f -n --type --overwrite --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - AppendBlob + x-ms-date: + - Fri, 07 Apr 2023 06:54:43 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 06:54:43 GMT + etag: + - '"0x8DB3734F78C9D84"' + last-modified: + - Fri, 07 Apr 2023 06:54:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\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: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload + Connection: + - keep-alive + Content-Length: + - '1024' + Content-Type: + - application/octet-stream + ParameterSetName: + - -c -f -n --type --overwrite --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:44 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=appendblock + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 06:54:43 GMT + etag: + - '"0x8DB3734F7B33261"' + last-modified: + - Fri, 07 Apr 2023 06:54:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-append-offset: + - '0' + x-ms-blob-committed-block-count: + - '1' + x-ms-content-crc64: + - iknlm7CyG2k= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob show + Connection: + - keep-alive + ParameterSetName: + - -n -c --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 06:54:44 GMT + x-ms-version: + - '2021-06-08' + method: HEAD + uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004 + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '1024' + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 06:54:44 GMT + etag: + - '"0x8DB3734F7B33261"' + last-modified: + - Fri, 07 Apr 2023 06:54:43 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: + - Fri, 07 Apr 2023 06:54:35 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_oauth_scenarios.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_oauth_scenarios.yaml new file mode 100644 index 00000000000..2a6dd8c0f94 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_oauth_scenarios.yaml @@ -0,0 +1,9351 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --query -o + User-Agent: + - AZURECLI/2.47.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2023-04-07T07:04:14.7682824Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2023-04-07T07:04:14.7682824Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Fri, 07 Apr 2023 07:04:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --account-name --account-key + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:04:39 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:04:39 GMT + etag: + - '"0x8DB37365B5D1AEF"' + last-modified: + - Fri, 07 Apr 2023 07:04:40 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob list + Connection: + - keep-alive + ParameterSetName: + - -c --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:04:41 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000 + response: + body: + string: "\uFEFF5000" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:41 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: This directory contains test files generated by Azure CLI storage command + module tests. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '87' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:43 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/readme + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b5fd85-301e-005a-1b1f-69191e000000\nTime:2023-04-07T07:04:43.7772593Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_0' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:44 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_0 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b5ff54-301e-005a-511f-69191e000000\nTime:2023-04-07T07:04:44.0561009Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_1' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:44 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_1 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b600cb-301e-005a-2f1f-69191e000000\nTime:2023-04-07T07:04:44.3399395Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:43 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_2' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:44 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_2 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b60252-301e-005a-1d1f-69191e000000\nTime:2023-04-07T07:04:44.6217797Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_3' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:45 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_3 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b603d4-301e-005a-0a1f-69191e000000\nTime:2023-04-07T07:04:44.8986222Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_4' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:45 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_4 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6053f-301e-005a-521f-69191e000000\nTime:2023-04-07T07:04:45.1724677Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_5' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:45 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_5 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b60651-301e-005a-4b1f-69191e000000\nTime:2023-04-07T07:04:45.4672995Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_6' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:46 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_6 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b607bf-301e-005a-281f-69191e000000\nTime:2023-04-07T07:04:45.7471411Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_7' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:46 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_7 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6093f-301e-005a-081f-69191e000000\nTime:2023-04-07T07:04:46.0249831Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_8' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:46 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_8 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b60a8f-301e-005a-421f-69191e000000\nTime:2023-04-07T07:04:46.3168177Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:45 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_9' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:46 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_9 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b60c20-301e-005a-3c1f-69191e000000\nTime:2023-04-07T07:04:46.5936611Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_0' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:47 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_0 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b60d83-301e-005a-0f1f-69191e000000\nTime:2023-04-07T07:04:46.8685047Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_1' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:47 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_1 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b60eed-301e-005a-661f-69191e000000\nTime:2023-04-07T07:04:47.1433486Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_2' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:47 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_2 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b61045-301e-005a-311f-69191e000000\nTime:2023-04-07T07:04:47.4251889Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_3' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:48 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_3 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6115b-301e-005a-2e1f-69191e000000\nTime:2023-04-07T07:04:47.7070284Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_4' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:48 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_4 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b612a8-301e-005a-661f-69191e000000\nTime:2023-04-07T07:04:47.9908681Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_5' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:48 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_5 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b61425-301e-005a-3b1f-69191e000000\nTime:2023-04-07T07:04:48.2657119Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_6' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:48 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_6 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b61593-301e-005a-0d1f-69191e000000\nTime:2023-04-07T07:04:48.5345588Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_7' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:49 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_7 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b616d4-301e-005a-331f-69191e000000\nTime:2023-04-07T07:04:48.8153993Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_8' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:49 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_8 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6180a-301e-005a-501f-69191e000000\nTime:2023-04-07T07:04:49.1042356Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_9' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:49 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_9 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6194f-301e-005a-721f-69191e000000\nTime:2023-04-07T07:04:49.3940713Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:48 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_0' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:50 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_0 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b61b3a-301e-005a-391f-69191e000000\nTime:2023-04-07T07:04:49.6739123Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_1' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:50 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_1 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b61ccd-301e-005a-291f-69191e000000\nTime:2023-04-07T07:04:49.9517546Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_2' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:50 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_2 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b61e32-301e-005a-731f-69191e000000\nTime:2023-04-07T07:04:50.2275985Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_3' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:50 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_3 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b61fa5-301e-005a-4f1f-69191e000000\nTime:2023-04-07T07:04:50.5104378Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_4' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:51 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_4 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62104-301e-005a-0b1f-69191e000000\nTime:2023-04-07T07:04:50.7842823Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_5' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:51 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_5 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b621fb-301e-005a-671f-69191e000000\nTime:2023-04-07T07:04:51.0461353Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_6' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:51 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_6 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6233c-301e-005a-131f-69191e000000\nTime:2023-04-07T07:04:51.3169799Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:50 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_7' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:51 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_7 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62441-301e-005a-071f-69191e000000\nTime:2023-04-07T07:04:51.5808299Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_8' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:52 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_8 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62572-301e-005a-241f-69191e000000\nTime:2023-04-07T07:04:51.8576730Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_9' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:52 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_9 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6265d-301e-005a-7a1f-69191e000000\nTime:2023-04-07T07:04:52.1315180Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_0' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:52 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_0 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62783-301e-005a-0a1f-69191e000000\nTime:2023-04-07T07:04:52.4113588Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:51 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_1' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:53 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_1 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62893-301e-005a-041f-69191e000000\nTime:2023-04-07T07:04:52.6862028Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_2' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:53 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_2 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b629cc-301e-005a-251f-69191e000000\nTime:2023-04-07T07:04:52.9630456Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_3' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:53 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_3 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62b1d-301e-005a-5b1f-69191e000000\nTime:2023-04-07T07:04:53.2398879Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_4' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:53 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_4 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62c84-301e-005a-271f-69191e000000\nTime:2023-04-07T07:04:53.5267254Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:52 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_5' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:54 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_5 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62e28-301e-005a-271f-69191e000000\nTime:2023-04-07T07:04:53.8075671Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_6' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:54 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_6 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b62f50-301e-005a-321f-69191e000000\nTime:2023-04-07T07:04:54.0894066Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_7' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:54 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_7 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b630eb-301e-005a-1f1f-69191e000000\nTime:2023-04-07T07:04:54.3712467Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:53 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_8' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:54 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_8 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6323a-301e-005a-4e1f-69191e000000\nTime:2023-04-07T07:04:54.6420926Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_9' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-Match: + - '*' + If-Unmodified-Since: + - Mon, 29 Jun 2020 06:32:00 GMT + ParameterSetName: + - -s -d --max-connections --if-match --if-unmodified-since --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:55 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_9 + response: + body: + string: "\uFEFFConditionNotMetThe + condition specified using HTTP conditional header(s) is not met.\nRequestId:46b6339f-301e-005a-1c1f-69191e000000\nTime:2023-04-07T07:04:54.9159375Z" + headers: + content-length: + - '250' + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:54 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - ConditionNotMet + x-ms-version: + - '2021-06-08' + status: + code: 412 + message: The condition specified using HTTP conditional header(s) is not met. +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob list + Connection: + - keep-alive + ParameterSetName: + - -c --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:04:55 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000 + response: + body: + string: "\uFEFF5000" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:04:55 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: This directory contains test files generated by Azure CLI storage command + module tests. + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '87' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:57 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/readme + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - sYGKK8OX+WLKH+2bAe4tSQ== + date: + - Fri, 07 Apr 2023 07:04:56 GMT + etag: + - '"0x8DB3736658B9A0B"' + last-modified: + - Fri, 07 Apr 2023 07:04:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - b3Eed3+v3vk= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_0' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:58 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_0 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - akPRzODVxn8zK/AP2n7KAA== + date: + - Fri, 07 Apr 2023 07:04:57 GMT + etag: + - '"0x8DB373665B53C07"' + last-modified: + - Fri, 07 Apr 2023 07:04:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - fGMqXMkmhE4= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_1' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:58 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_1 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - Csfcfd1TNZvDJcvpJy2xRQ== + date: + - Fri, 07 Apr 2023 07:04:57 GMT + etag: + - '"0x8DB373665DEDE1A"' + last-modified: + - Fri, 07 Apr 2023 07:04:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - BeofbAHW6jE= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_2' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:58 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_2 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - A+BU3W0B5bteIX31/CggRQ== + date: + - Fri, 07 Apr 2023 07:04:57 GMT + etag: + - '"0x8DB37366608320C"' + last-modified: + - Fri, 07 Apr 2023 07:04:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - jnFBPFnHWbA= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_3' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:58 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_3 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - uoUeM98MxWZVVEIv1pU/HA== + date: + - Fri, 07 Apr 2023 07:04:57 GMT + etag: + - '"0x8DB3736663185EF"' + last-modified: + - Fri, 07 Apr 2023 07:04:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - 9/h0DJE3N88= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_4' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:59 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_4 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - n1SxWnxluWC26LCLSByJvA== + date: + - Fri, 07 Apr 2023 07:04:58 GMT + etag: + - '"0x8DB3736665B00EB"' + last-modified: + - Fri, 07 Apr 2023 07:04:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - 89VrxLrD5oc= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_5' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:59 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_5 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - YwbWkn8USTTB1Dblm1B9BQ== + date: + - Fri, 07 Apr 2023 07:04:58 GMT + etag: + - '"0x8DB373666851814"' + last-modified: + - Fri, 07 Apr 2023 07:04:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - ilxe9HIziPg= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_6' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:59 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_6 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - UCeOAi2H9/UMR1c92CFfSQ== + date: + - Fri, 07 Apr 2023 07:04:58 GMT + etag: + - '"0x8DB373666AFF273"' + last-modified: + - Fri, 07 Apr 2023 07:04:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - AccApCoiO3k= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_7' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:04:59 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_7 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - r0sxRWSreg/ugh3gj7AhfQ== + date: + - Fri, 07 Apr 2023 07:04:58 GMT + etag: + - '"0x8DB373666D9BB88"' + last-modified: + - Fri, 07 Apr 2023 07:04:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - eE41lOLSVQY= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_8' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:00 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_8 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - AdC1c2QCT3A2pqWSsisLnw== + date: + - Fri, 07 Apr 2023 07:04:59 GMT + etag: + - '"0x8DB37366702E867"' + last-modified: + - Fri, 07 Apr 2023 07:04:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - CZ0+NH3KmOg= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_9' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '133' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:00 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_9 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - y4RIihyMRalyFFTpXqdWDA== + date: + - Fri, 07 Apr 2023 07:04:59 GMT + etag: + - '"0x8DB3736672D74B1"' + last-modified: + - Fri, 07 Apr 2023 07:05:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - cBQLBLU69pc= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_0' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:00 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_0 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - grlrMehYaxqDPLYpLl1NMQ== + date: + - Fri, 07 Apr 2023 07:04:59 GMT + etag: + - '"0x8DB37366756EFBB"' + last-modified: + - Fri, 07 Apr 2023 07:05:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - hfhjFV2n9EQ= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_1' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:01 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_1 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - S9i8DZm+5kwBUnOBvt0Qeg== + date: + - Fri, 07 Apr 2023 07:05:00 GMT + etag: + - '"0x8DB37366780DFC4"' + last-modified: + - Fri, 07 Apr 2023 07:05:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - /HFWJZVXmjs= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_2' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:01 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_2 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - fmkdpLs3wZOgK7DPqHyxFA== + date: + - Fri, 07 Apr 2023 07:05:00 GMT + etag: + - '"0x8DB373667AA81B9"' + last-modified: + - Fri, 07 Apr 2023 07:05:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - d+oIdc1GKbo= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_3' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:01 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_3 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - m0Zg69Hi/Myv0+fYpjgJ7g== + date: + - Fri, 07 Apr 2023 07:05:00 GMT + etag: + - '"0x8DB373667D2EB76"' + last-modified: + - Fri, 07 Apr 2023 07:05:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - DmM9RQW2R8U= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_4' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:01 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_4 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - Hep5bDlvMOYer6o5kcmGjw== + date: + - Fri, 07 Apr 2023 07:05:00 GMT + etag: + - '"0x8DB373667FD0294"' + last-modified: + - Fri, 07 Apr 2023 07:05:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - Ck4ijS5Clo0= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_5' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:02 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_5 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - zD2CJl5JNDCamugq5+kcaA== + date: + - Fri, 07 Apr 2023 07:05:01 GMT + etag: + - '"0x8DB37366824A910"' + last-modified: + - Fri, 07 Apr 2023 07:05:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - c8cXveay+PI= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_6' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:02 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_6 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - bWzn5VgDECWF1CDvFLe3Yg== + date: + - Fri, 07 Apr 2023 07:05:01 GMT + etag: + - '"0x8DB3736684D60DA"' + last-modified: + - Fri, 07 Apr 2023 07:05:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - +FxJ7b6jS3M= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_7' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:02 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_7 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - 4W3BRGlJn+5Fn7z+QQUhBg== + date: + - Fri, 07 Apr 2023 07:05:01 GMT + etag: + - '"0x8DB3736687DB8A7"' + last-modified: + - Fri, 07 Apr 2023 07:05:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - gdV83XZTJQw= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_8' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:03 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_8 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - FTtakfWtMuz8EygCN4GFaQ== + date: + - Fri, 07 Apr 2023 07:05:01 GMT + etag: + - '"0x8DB373668A5AD40"' + last-modified: + - Fri, 07 Apr 2023 07:05:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - 8AZ3felL6OI= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_9' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:03 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_9 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - RuwyYWEdqj9v/DZ4NapZnA== + date: + - Fri, 07 Apr 2023 07:05:02 GMT + etag: + - '"0x8DB373668CC9085"' + last-modified: + - Fri, 07 Apr 2023 07:05:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - iY9CTSG7hp0= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_0' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:03 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_0 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - fZMVhdV5fOxZbt8orseV3g== + date: + - Fri, 07 Apr 2023 07:05:02 GMT + etag: + - '"0x8DB373668F5E476"' + last-modified: + - Fri, 07 Apr 2023 07:05:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - biU4jjLH/YU= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_1' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:03 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_1 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - 8ThrNa2+zPucucYPb4XHGg== + date: + - Fri, 07 Apr 2023 07:05:02 GMT + etag: + - '"0x8DB3736691EEA50"' + last-modified: + - Fri, 07 Apr 2023 07:05:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - F6wNvvo3k/o= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_2' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:04 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_2 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - qvzt6SUD19rux8aG82K8Iw== + date: + - Fri, 07 Apr 2023 07:05:02 GMT + etag: + - '"0x8DB3736694690E2"' + last-modified: + - Fri, 07 Apr 2023 07:05:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - nDdT7qImIHs= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_3' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:04 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_3 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - nWhId82KTCHmCq6phTThKw== + date: + - Fri, 07 Apr 2023 07:05:03 GMT + etag: + - '"0x8DB373669719235"' + last-modified: + - Fri, 07 Apr 2023 07:05:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - 5b5m3mrWTgQ= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_4' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:04 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_4 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - k4SIuao1cJfPOF/PcPW99A== + date: + - Fri, 07 Apr 2023 07:05:03 GMT + etag: + - '"0x8DB3736699B8249"' + last-modified: + - Fri, 07 Apr 2023 07:05:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - 4ZN5FkEin0w= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_5' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:04 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_5 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - Yhbp9va6Uev2WouIl11hlg== + date: + - Fri, 07 Apr 2023 07:05:03 GMT + etag: + - '"0x8DB373669C4FD42"' + last-modified: + - Fri, 07 Apr 2023 07:05:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - mBpMJonS8TM= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_6' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:05 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_6 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - Gs8TYkBKpozmOjByEh/AKg== + date: + - Fri, 07 Apr 2023 07:05:04 GMT + etag: + - '"0x8DB373669F6DB7A"' + last-modified: + - Fri, 07 Apr 2023 07:05:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - E4ESdtHDQrI= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_7' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:05 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_7 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - 8jkucYOrdcWBcfURRkGSUA== + date: + - Fri, 07 Apr 2023 07:05:04 GMT + etag: + - '"0x8DB37366A1E33EF"' + last-modified: + - Fri, 07 Apr 2023 07:05:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - aggnRhkzLM0= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_8' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:05 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_8 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - 9HGalJE7qK5YCA4//j3Bgw== + date: + - Fri, 07 Apr 2023 07:05:04 GMT + etag: + - '"0x8DB37366A456541"' + last-modified: + - Fri, 07 Apr 2023 07:05:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - G9ss5oYr4SM= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_9' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '142' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:05 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_9 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - oNt8UttwLAi+00Q97PjCkw== + date: + - Fri, 07 Apr 2023 07:05:04 GMT + etag: + - '"0x8DB37366A6C96A7"' + last-modified: + - Fri, 07 Apr 2023 07:05:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - YlIZ1k7bj1w= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_0' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:06 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_0 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - 5WD9QHC0TurCYnf3R96ZCQ== + date: + - Fri, 07 Apr 2023 07:05:05 GMT + etag: + - '"0x8DB37366A93C80A"' + last-modified: + - Fri, 07 Apr 2023 07:05:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - DNcow1iGnKs= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_1' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:06 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_1 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - Te1phRB/aiuccBo52yK31A== + date: + - Fri, 07 Apr 2023 07:05:05 GMT + etag: + - '"0x8DB37366AC16113"' + last-modified: + - Fri, 07 Apr 2023 07:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - dV4d85B28tQ= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_2' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:06 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_2 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - ecy/i+dABRdGCLNdsEgdAA== + date: + - Fri, 07 Apr 2023 07:05:05 GMT + etag: + - '"0x8DB37366AEA66FC"' + last-modified: + - Fri, 07 Apr 2023 07:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - /sVDo8hnQVU= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_3' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:07 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_3 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - LdJoInsnLvvToyEjVnDfxQ== + date: + - Fri, 07 Apr 2023 07:05:06 GMT + etag: + - '"0x8DB37366B1345C7"' + last-modified: + - Fri, 07 Apr 2023 07:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - h0x2kwCXLyo= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_4' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:07 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_4 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - 79ktHc0B+4TZRvzdykdvag== + date: + - Fri, 07 Apr 2023 07:05:06 GMT + etag: + - '"0x8DB37366B3DAB06"' + last-modified: + - Fri, 07 Apr 2023 07:05:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - g2FpWytj/mI= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_5' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:07 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_5 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - scoxteYlc4sTBQkI5rM7EQ== + date: + - Fri, 07 Apr 2023 07:05:06 GMT + etag: + - '"0x8DB37366B688557"' + last-modified: + - Fri, 07 Apr 2023 07:05:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - +uhca+OTkB0= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_6' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:07 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_6 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - fglj3qkdAgaS6MagbePCLw== + date: + - Fri, 07 Apr 2023 07:05:06 GMT + etag: + - '"0x8DB37366B9004D1"' + last-modified: + - Fri, 07 Apr 2023 07:05:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - cXMCO7uCI5w= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_7' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:08 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_7 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - EQx7EF/Klad8D8mck/xJGg== + date: + - Fri, 07 Apr 2023 07:05:07 GMT + etag: + - '"0x8DB37366BB73626"' + last-modified: + - Fri, 07 Apr 2023 07:05:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - CPo3C3NyTeM= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_8' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:08 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_8 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - W/u7/qhbGv+A1p4ZEO2+7g== + date: + - Fri, 07 Apr 2023 07:05:07 GMT + etag: + - '"0x8DB37366BE12646"' + last-modified: + - Fri, 07 Apr 2023 07:05:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - eSk8q+xqgA0= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_9' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob upload-batch + Connection: + - keep-alive + Content-Length: + - '139' + Content-Type: + - application/octet-stream + If-None-Match: + - '*' + ParameterSetName: + - -s -d --max-connections --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-blob-type: + - BlockBlob + x-ms-date: + - Fri, 07 Apr 2023 07:05:08 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_9 + response: + body: + string: '' + headers: + content-length: + - '0' + content-md5: + - poWmh3LYSDJDFOfuhMPiuQ== + date: + - Fri, 07 Apr 2023 07:05:07 GMT + etag: + - '"0x8DB37366C0AC846"' + last-modified: + - Fri, 07 Apr 2023 07:05:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-content-crc64: + - AKAJmySa7nI= + x-ms-request-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob list + Connection: + - keep-alive + ParameterSetName: + - -c --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:09 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000 + response: + body: + string: "\uFEFF5000apple/file_0Fri, + 07 Apr 2023 07:04:57 GMTFri, 07 Apr 2023 07:04:57 + GMT0x8DB373665B53C07133application/octet-streamakPRzODVxn8zK/AP2n7KAA==BlockBlobunlockedavailabletrueapple/file_1Fri, 07 + Apr 2023 07:04:57 GMTFri, 07 Apr 2023 07:04:57 + GMT0x8DB373665DEDE1A133application/octet-streamCsfcfd1TNZvDJcvpJy2xRQ==BlockBlobunlockedavailabletrueapple/file_2Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB37366608320C133application/octet-streamA+BU3W0B5bteIX31/CggRQ==BlockBlobunlockedavailabletrueapple/file_3Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB3736663185EF133application/octet-streamuoUeM98MxWZVVEIv1pU/HA==BlockBlobunlockedavailabletrueapple/file_4Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB3736665B00EB133application/octet-streamn1SxWnxluWC26LCLSByJvA==BlockBlobunlockedavailabletrueapple/file_5Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666851814133application/octet-streamYwbWkn8USTTB1Dblm1B9BQ==BlockBlobunlockedavailabletrueapple/file_6Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666AFF273133application/octet-streamUCeOAi2H9/UMR1c92CFfSQ==BlockBlobunlockedavailabletrueapple/file_7Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666D9BB88133application/octet-streamr0sxRWSreg/ugh3gj7AhfQ==BlockBlobunlockedavailabletrueapple/file_8Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB37366702E867133application/octet-streamAdC1c2QCT3A2pqWSsisLnw==BlockBlobunlockedavailabletrueapple/file_9Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB3736672D74B1133application/octet-streamy4RIihyMRalyFFTpXqdWDA==BlockBlobunlockedavailabletruebutter/charlie/file_0Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB373668F5E476142application/octet-streamfZMVhdV5fOxZbt8orseV3g==BlockBlobunlockedavailabletruebutter/charlie/file_1Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB3736691EEA50142application/octet-stream8ThrNa2+zPucucYPb4XHGg==BlockBlobunlockedavailabletruebutter/charlie/file_2Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB3736694690E2142application/octet-streamqvzt6SUD19rux8aG82K8Iw==BlockBlobunlockedavailabletruebutter/charlie/file_3Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB373669719235142application/octet-streamnWhId82KTCHmCq6phTThKw==BlockBlobunlockedavailabletruebutter/charlie/file_4Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB3736699B8249142application/octet-streamk4SIuao1cJfPOF/PcPW99A==BlockBlobunlockedavailabletruebutter/charlie/file_5Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB373669C4FD42142application/octet-streamYhbp9va6Uev2WouIl11hlg==BlockBlobunlockedavailabletruebutter/charlie/file_6Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB373669F6DB7A142application/octet-streamGs8TYkBKpozmOjByEh/AKg==BlockBlobunlockedavailabletruebutter/charlie/file_7Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A1E33EF142application/octet-stream8jkucYOrdcWBcfURRkGSUA==BlockBlobunlockedavailabletruebutter/charlie/file_8Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A456541142application/octet-stream9HGalJE7qK5YCA4//j3Bgw==BlockBlobunlockedavailabletruebutter/charlie/file_9Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A6C96A7142application/octet-streamoNt8UttwLAi+00Q97PjCkw==BlockBlobunlockedavailabletruebutter/file_0Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB37366756EFBB134application/octet-streamgrlrMehYaxqDPLYpLl1NMQ==BlockBlobunlockedavailabletruebutter/file_1Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB37366780DFC4134application/octet-streamS9i8DZm+5kwBUnOBvt0Qeg==BlockBlobunlockedavailabletruebutter/file_2Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667AA81B9134application/octet-streamfmkdpLs3wZOgK7DPqHyxFA==BlockBlobunlockedavailabletruebutter/file_3Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667D2EB76134application/octet-streamm0Zg69Hi/Myv0+fYpjgJ7g==BlockBlobunlockedavailabletruebutter/file_4Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667FD0294134application/octet-streamHep5bDlvMOYer6o5kcmGjw==BlockBlobunlockedavailabletruebutter/file_5Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB37366824A910134application/octet-streamzD2CJl5JNDCamugq5+kcaA==BlockBlobunlockedavailabletruebutter/file_6Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB3736684D60DA134application/octet-streambWzn5VgDECWF1CDvFLe3Yg==BlockBlobunlockedavailabletruebutter/file_7Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB3736687DB8A7134application/octet-stream4W3BRGlJn+5Fn7z+QQUhBg==BlockBlobunlockedavailabletruebutter/file_8Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB373668A5AD40134application/octet-streamFTtakfWtMuz8EygCN4GFaQ==BlockBlobunlockedavailabletruebutter/file_9Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB373668CC9085134application/octet-streamRuwyYWEdqj9v/DZ4NapZnA==BlockBlobunlockedavailabletrueduff/edward/file_0Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A93C80A139application/octet-stream5WD9QHC0TurCYnf3R96ZCQ==BlockBlobunlockedavailabletrueduff/edward/file_1Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366AC16113139application/octet-streamTe1phRB/aiuccBo52yK31A==BlockBlobunlockedavailabletrueduff/edward/file_2Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366AEA66FC139application/octet-streamecy/i+dABRdGCLNdsEgdAA==BlockBlobunlockedavailabletrueduff/edward/file_3Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366B1345C7139application/octet-streamLdJoInsnLvvToyEjVnDfxQ==BlockBlobunlockedavailabletrueduff/edward/file_4Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B3DAB06139application/octet-stream79ktHc0B+4TZRvzdykdvag==BlockBlobunlockedavailabletrueduff/edward/file_5Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B688557139application/octet-streamscoxteYlc4sTBQkI5rM7EQ==BlockBlobunlockedavailabletrueduff/edward/file_6Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B9004D1139application/octet-streamfglj3qkdAgaS6MagbePCLw==BlockBlobunlockedavailabletrueduff/edward/file_7Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366BB73626139application/octet-streamEQx7EF/Klad8D8mck/xJGg==BlockBlobunlockedavailabletrueduff/edward/file_8Fri, + 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08 + GMT0x8DB37366BE12646139application/octet-streamW/u7/qhbGv+A1p4ZEO2+7g==BlockBlobunlockedavailabletrueduff/edward/file_9Fri, + 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08 + GMT0x8DB37366C0AC846139application/octet-streampoWmh3LYSDJDFOfuhMPiuQ==BlockBlobunlockedavailabletruereadmeFri, 07 Apr 2023 + 07:04:57 GMTFri, 07 Apr 2023 07:04:57 GMT0x8DB3736658B9A0B87application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrue" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:05:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:10 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list + response: + body: + string: "\uFEFFapple/file_0Fri, + 07 Apr 2023 07:04:57 GMTFri, 07 Apr 2023 07:04:57 + GMT0x8DB373665B53C07133application/octet-streamakPRzODVxn8zK/AP2n7KAA==BlockBlobunlockedavailabletrueapple/file_1Fri, 07 + Apr 2023 07:04:57 GMTFri, 07 Apr 2023 07:04:57 + GMT0x8DB373665DEDE1A133application/octet-streamCsfcfd1TNZvDJcvpJy2xRQ==BlockBlobunlockedavailabletrueapple/file_2Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB37366608320C133application/octet-streamA+BU3W0B5bteIX31/CggRQ==BlockBlobunlockedavailabletrueapple/file_3Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB3736663185EF133application/octet-streamuoUeM98MxWZVVEIv1pU/HA==BlockBlobunlockedavailabletrueapple/file_4Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB3736665B00EB133application/octet-streamn1SxWnxluWC26LCLSByJvA==BlockBlobunlockedavailabletrueapple/file_5Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666851814133application/octet-streamYwbWkn8USTTB1Dblm1B9BQ==BlockBlobunlockedavailabletrueapple/file_6Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666AFF273133application/octet-streamUCeOAi2H9/UMR1c92CFfSQ==BlockBlobunlockedavailabletrueapple/file_7Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666D9BB88133application/octet-streamr0sxRWSreg/ugh3gj7AhfQ==BlockBlobunlockedavailabletrueapple/file_8Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB37366702E867133application/octet-streamAdC1c2QCT3A2pqWSsisLnw==BlockBlobunlockedavailabletrueapple/file_9Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB3736672D74B1133application/octet-streamy4RIihyMRalyFFTpXqdWDA==BlockBlobunlockedavailabletruebutter/charlie/file_0Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB373668F5E476142application/octet-streamfZMVhdV5fOxZbt8orseV3g==BlockBlobunlockedavailabletruebutter/charlie/file_1Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB3736691EEA50142application/octet-stream8ThrNa2+zPucucYPb4XHGg==BlockBlobunlockedavailabletruebutter/charlie/file_2Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB3736694690E2142application/octet-streamqvzt6SUD19rux8aG82K8Iw==BlockBlobunlockedavailabletruebutter/charlie/file_3Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB373669719235142application/octet-streamnWhId82KTCHmCq6phTThKw==BlockBlobunlockedavailabletruebutter/charlie/file_4Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB3736699B8249142application/octet-streamk4SIuao1cJfPOF/PcPW99A==BlockBlobunlockedavailabletruebutter/charlie/file_5Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB373669C4FD42142application/octet-streamYhbp9va6Uev2WouIl11hlg==BlockBlobunlockedavailabletruebutter/charlie/file_6Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB373669F6DB7A142application/octet-streamGs8TYkBKpozmOjByEh/AKg==BlockBlobunlockedavailabletruebutter/charlie/file_7Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A1E33EF142application/octet-stream8jkucYOrdcWBcfURRkGSUA==BlockBlobunlockedavailabletruebutter/charlie/file_8Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A456541142application/octet-stream9HGalJE7qK5YCA4//j3Bgw==BlockBlobunlockedavailabletruebutter/charlie/file_9Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A6C96A7142application/octet-streamoNt8UttwLAi+00Q97PjCkw==BlockBlobunlockedavailabletruebutter/file_0Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB37366756EFBB134application/octet-streamgrlrMehYaxqDPLYpLl1NMQ==BlockBlobunlockedavailabletruebutter/file_1Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB37366780DFC4134application/octet-streamS9i8DZm+5kwBUnOBvt0Qeg==BlockBlobunlockedavailabletruebutter/file_2Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667AA81B9134application/octet-streamfmkdpLs3wZOgK7DPqHyxFA==BlockBlobunlockedavailabletruebutter/file_3Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667D2EB76134application/octet-streamm0Zg69Hi/Myv0+fYpjgJ7g==BlockBlobunlockedavailabletruebutter/file_4Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667FD0294134application/octet-streamHep5bDlvMOYer6o5kcmGjw==BlockBlobunlockedavailabletruebutter/file_5Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB37366824A910134application/octet-streamzD2CJl5JNDCamugq5+kcaA==BlockBlobunlockedavailabletruebutter/file_6Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB3736684D60DA134application/octet-streambWzn5VgDECWF1CDvFLe3Yg==BlockBlobunlockedavailabletruebutter/file_7Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB3736687DB8A7134application/octet-stream4W3BRGlJn+5Fn7z+QQUhBg==BlockBlobunlockedavailabletruebutter/file_8Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB373668A5AD40134application/octet-streamFTtakfWtMuz8EygCN4GFaQ==BlockBlobunlockedavailabletruebutter/file_9Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB373668CC9085134application/octet-streamRuwyYWEdqj9v/DZ4NapZnA==BlockBlobunlockedavailabletrueduff/edward/file_0Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A93C80A139application/octet-stream5WD9QHC0TurCYnf3R96ZCQ==BlockBlobunlockedavailabletrueduff/edward/file_1Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366AC16113139application/octet-streamTe1phRB/aiuccBo52yK31A==BlockBlobunlockedavailabletrueduff/edward/file_2Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366AEA66FC139application/octet-streamecy/i+dABRdGCLNdsEgdAA==BlockBlobunlockedavailabletrueduff/edward/file_3Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366B1345C7139application/octet-streamLdJoInsnLvvToyEjVnDfxQ==BlockBlobunlockedavailabletrueduff/edward/file_4Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B3DAB06139application/octet-stream79ktHc0B+4TZRvzdykdvag==BlockBlobunlockedavailabletrueduff/edward/file_5Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B688557139application/octet-streamscoxteYlc4sTBQkI5rM7EQ==BlockBlobunlockedavailabletrueduff/edward/file_6Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B9004D1139application/octet-streamfglj3qkdAgaS6MagbePCLw==BlockBlobunlockedavailabletrueduff/edward/file_7Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366BB73626139application/octet-streamEQx7EF/Klad8D8mck/xJGg==BlockBlobunlockedavailabletrueduff/edward/file_8Fri, + 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08 + GMT0x8DB37366BE12646139application/octet-streamW/u7/qhbGv+A1p4ZEO2+7g==BlockBlobunlockedavailabletrueduff/edward/file_9Fri, + 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08 + GMT0x8DB37366C0AC846139application/octet-streampoWmh3LYSDJDFOfuhMPiuQ==BlockBlobunlockedavailabletruereadmeFri, 07 Apr 2023 + 07:04:57 GMTFri, 07 Apr 2023 07:04:57 GMT0x8DB3736658B9A0B87application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrue" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:05:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:12 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_0 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_0' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:11 GMT + etag: + - '"0x8DB373665B53C07"' + last-modified: + - Fri, 07 Apr 2023 07:04:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - akPRzODVxn8zK/AP2n7KAA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:57 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:12 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_1 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_1' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:12 GMT + etag: + - '"0x8DB373665DEDE1A"' + last-modified: + - Fri, 07 Apr 2023 07:04:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - Csfcfd1TNZvDJcvpJy2xRQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:57 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:12 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_2 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_2' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:12 GMT + etag: + - '"0x8DB37366608320C"' + last-modified: + - Fri, 07 Apr 2023 07:04:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - A+BU3W0B5bteIX31/CggRQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:58 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:13 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_3 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_3' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:13 GMT + etag: + - '"0x8DB3736663185EF"' + last-modified: + - Fri, 07 Apr 2023 07:04:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - uoUeM98MxWZVVEIv1pU/HA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:58 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:14 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_4 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_4' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:13 GMT + etag: + - '"0x8DB3736665B00EB"' + last-modified: + - Fri, 07 Apr 2023 07:04:58 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - n1SxWnxluWC26LCLSByJvA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:58 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:14 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_5 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_5' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:13 GMT + etag: + - '"0x8DB373666851814"' + last-modified: + - Fri, 07 Apr 2023 07:04:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - YwbWkn8USTTB1Dblm1B9BQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:59 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:14 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_6 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_6' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:14 GMT + etag: + - '"0x8DB373666AFF273"' + last-modified: + - Fri, 07 Apr 2023 07:04:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - UCeOAi2H9/UMR1c92CFfSQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:59 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:14 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_7 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_7' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:14 GMT + etag: + - '"0x8DB373666D9BB88"' + last-modified: + - Fri, 07 Apr 2023 07:04:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - r0sxRWSreg/ugh3gj7AhfQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:59 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:15 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_8 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_8' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:14 GMT + etag: + - '"0x8DB37366702E867"' + last-modified: + - Fri, 07 Apr 2023 07:04:59 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - AdC1c2QCT3A2pqWSsisLnw== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:59 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:15 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_9 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\apple\file_9' + headers: + accept-ranges: + - bytes + content-length: + - '133' + content-range: + - bytes 0-132/133 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:15 GMT + etag: + - '"0x8DB3736672D74B1"' + last-modified: + - Fri, 07 Apr 2023 07:05:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - y4RIihyMRalyFFTpXqdWDA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:00 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:15 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_0 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_0' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:15 GMT + etag: + - '"0x8DB373668F5E476"' + last-modified: + - Fri, 07 Apr 2023 07:05:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - fZMVhdV5fOxZbt8orseV3g== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:03 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:16 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_1 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_1' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:15 GMT + etag: + - '"0x8DB3736691EEA50"' + last-modified: + - Fri, 07 Apr 2023 07:05:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - 8ThrNa2+zPucucYPb4XHGg== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:03 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:16 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_2 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_2' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:15 GMT + etag: + - '"0x8DB3736694690E2"' + last-modified: + - Fri, 07 Apr 2023 07:05:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - qvzt6SUD19rux8aG82K8Iw== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:03 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:16 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_3 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_3' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:16 GMT + etag: + - '"0x8DB373669719235"' + last-modified: + - Fri, 07 Apr 2023 07:05:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - nWhId82KTCHmCq6phTThKw== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:03 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:16 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_4 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_4' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:16 GMT + etag: + - '"0x8DB3736699B8249"' + last-modified: + - Fri, 07 Apr 2023 07:05:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - k4SIuao1cJfPOF/PcPW99A== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:04 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:17 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_5 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_5' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:16 GMT + etag: + - '"0x8DB373669C4FD42"' + last-modified: + - Fri, 07 Apr 2023 07:05:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - Yhbp9va6Uev2WouIl11hlg== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:04 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:17 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_6 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_6' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:16 GMT + etag: + - '"0x8DB373669F6DB7A"' + last-modified: + - Fri, 07 Apr 2023 07:05:04 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - Gs8TYkBKpozmOjByEh/AKg== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:04 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:17 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_7 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_7' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:17 GMT + etag: + - '"0x8DB37366A1E33EF"' + last-modified: + - Fri, 07 Apr 2023 07:05:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - 8jkucYOrdcWBcfURRkGSUA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:05 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:17 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_8 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_8' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:17 GMT + etag: + - '"0x8DB37366A456541"' + last-modified: + - Fri, 07 Apr 2023 07:05:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - 9HGalJE7qK5YCA4//j3Bgw== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:05 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:18 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_9 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter/charlie\file_9' + headers: + accept-ranges: + - bytes + content-length: + - '142' + content-range: + - bytes 0-141/142 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:17 GMT + etag: + - '"0x8DB37366A6C96A7"' + last-modified: + - Fri, 07 Apr 2023 07:05:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - oNt8UttwLAi+00Q97PjCkw== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:05 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:18 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_0 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_0' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:18 GMT + etag: + - '"0x8DB37366756EFBB"' + last-modified: + - Fri, 07 Apr 2023 07:05:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - grlrMehYaxqDPLYpLl1NMQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:00 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:18 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_1 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_1' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:18 GMT + etag: + - '"0x8DB37366780DFC4"' + last-modified: + - Fri, 07 Apr 2023 07:05:00 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - S9i8DZm+5kwBUnOBvt0Qeg== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:00 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:18 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_2 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_2' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:18 GMT + etag: + - '"0x8DB373667AA81B9"' + last-modified: + - Fri, 07 Apr 2023 07:05:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - fmkdpLs3wZOgK7DPqHyxFA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:01 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:19 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_3 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_3' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:18 GMT + etag: + - '"0x8DB373667D2EB76"' + last-modified: + - Fri, 07 Apr 2023 07:05:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - m0Zg69Hi/Myv0+fYpjgJ7g== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:01 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:19 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_4 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_4' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:19 GMT + etag: + - '"0x8DB373667FD0294"' + last-modified: + - Fri, 07 Apr 2023 07:05:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - Hep5bDlvMOYer6o5kcmGjw== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:01 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:19 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_5 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_5' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:19 GMT + etag: + - '"0x8DB37366824A910"' + last-modified: + - Fri, 07 Apr 2023 07:05:01 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - zD2CJl5JNDCamugq5+kcaA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:01 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:20 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_6 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_6' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:19 GMT + etag: + - '"0x8DB3736684D60DA"' + last-modified: + - Fri, 07 Apr 2023 07:05:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - bWzn5VgDECWF1CDvFLe3Yg== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:02 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:20 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_7 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_7' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:19 GMT + etag: + - '"0x8DB3736687DB8A7"' + last-modified: + - Fri, 07 Apr 2023 07:05:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - 4W3BRGlJn+5Fn7z+QQUhBg== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:02 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:20 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_8 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_8' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:20 GMT + etag: + - '"0x8DB373668A5AD40"' + last-modified: + - Fri, 07 Apr 2023 07:05:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - FTtakfWtMuz8EygCN4GFaQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:02 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:20 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_9 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\butter\file_9' + headers: + accept-ranges: + - bytes + content-length: + - '134' + content-range: + - bytes 0-133/134 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:20 GMT + etag: + - '"0x8DB373668CC9085"' + last-modified: + - Fri, 07 Apr 2023 07:05:02 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - RuwyYWEdqj9v/DZ4NapZnA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:02 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:21 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_0 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_0' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:20 GMT + etag: + - '"0x8DB37366A93C80A"' + last-modified: + - Fri, 07 Apr 2023 07:05:05 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - 5WD9QHC0TurCYnf3R96ZCQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:05 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:21 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_1 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_1' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:21 GMT + etag: + - '"0x8DB37366AC16113"' + last-modified: + - Fri, 07 Apr 2023 07:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - Te1phRB/aiuccBo52yK31A== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:06 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:21 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_2 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_2' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:21 GMT + etag: + - '"0x8DB37366AEA66FC"' + last-modified: + - Fri, 07 Apr 2023 07:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - ecy/i+dABRdGCLNdsEgdAA== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:06 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:21 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_3 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_3' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:21 GMT + etag: + - '"0x8DB37366B1345C7"' + last-modified: + - Fri, 07 Apr 2023 07:05:06 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - LdJoInsnLvvToyEjVnDfxQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:06 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:22 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_4 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_4' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:21 GMT + etag: + - '"0x8DB37366B3DAB06"' + last-modified: + - Fri, 07 Apr 2023 07:05:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - 79ktHc0B+4TZRvzdykdvag== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:07 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:22 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_5 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_5' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:22 GMT + etag: + - '"0x8DB37366B688557"' + last-modified: + - Fri, 07 Apr 2023 07:05:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - scoxteYlc4sTBQkI5rM7EQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:07 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:22 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_6 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_6' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:22 GMT + etag: + - '"0x8DB37366B9004D1"' + last-modified: + - Fri, 07 Apr 2023 07:05:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - fglj3qkdAgaS6MagbePCLw== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:07 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:23 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_7 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_7' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:22 GMT + etag: + - '"0x8DB37366BB73626"' + last-modified: + - Fri, 07 Apr 2023 07:05:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - EQx7EF/Klad8D8mck/xJGg== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:07 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:23 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_8 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_8' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:22 GMT + etag: + - '"0x8DB37366BE12646"' + last-modified: + - Fri, 07 Apr 2023 07:05:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - W/u7/qhbGv+A1p4ZEO2+7g== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:08 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:23 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_9 + response: + body: + string: 'Azure CLI storage command module test sample file. origin: C:\Users\SHIYIN~1\AppData\Local\Temp\test26ciwsamkdzirax6q3ab\duff/edward\file_9' + headers: + accept-ranges: + - bytes + content-length: + - '139' + content-range: + - bytes 0-138/139 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:23 GMT + etag: + - '"0x8DB37366C0AC846"' + last-modified: + - Fri, 07 Apr 2023 07:05:08 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - poWmh3LYSDJDFOfuhMPiuQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:05:08 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob download-batch + Connection: + - keep-alive + ParameterSetName: + - -s -d --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:23 GMT + x-ms-range: + - bytes=0-33554431 + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003/readme + response: + body: + string: This directory contains test files generated by Azure CLI storage command + module tests. + headers: + accept-ranges: + - bytes + content-length: + - '87' + content-range: + - bytes 0-86/87 + content-type: + - application/octet-stream + date: + - Fri, 07 Apr 2023 07:05:23 GMT + etag: + - '"0x8DB3736658B9A0B"' + last-modified: + - Fri, 07 Apr 2023 07:04:57 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-content-md5: + - sYGKK8OX+WLKH+2bAe4tSQ== + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 07 Apr 2023 07:04:57 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 206 + message: Partial Content +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:24 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list + response: + body: + string: "\uFEFFapple/file_0Fri, + 07 Apr 2023 07:04:57 GMTFri, 07 Apr 2023 07:04:57 + GMT0x8DB373665B53C07133application/octet-streamakPRzODVxn8zK/AP2n7KAA==BlockBlobunlockedavailabletrueapple/file_1Fri, 07 + Apr 2023 07:04:57 GMTFri, 07 Apr 2023 07:04:57 + GMT0x8DB373665DEDE1A133application/octet-streamCsfcfd1TNZvDJcvpJy2xRQ==BlockBlobunlockedavailabletrueapple/file_2Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB37366608320C133application/octet-streamA+BU3W0B5bteIX31/CggRQ==BlockBlobunlockedavailabletrueapple/file_3Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB3736663185EF133application/octet-streamuoUeM98MxWZVVEIv1pU/HA==BlockBlobunlockedavailabletrueapple/file_4Fri, 07 + Apr 2023 07:04:58 GMTFri, 07 Apr 2023 07:04:58 + GMT0x8DB3736665B00EB133application/octet-streamn1SxWnxluWC26LCLSByJvA==BlockBlobunlockedavailabletrueapple/file_5Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666851814133application/octet-streamYwbWkn8USTTB1Dblm1B9BQ==BlockBlobunlockedavailabletrueapple/file_6Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666AFF273133application/octet-streamUCeOAi2H9/UMR1c92CFfSQ==BlockBlobunlockedavailabletrueapple/file_7Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB373666D9BB88133application/octet-streamr0sxRWSreg/ugh3gj7AhfQ==BlockBlobunlockedavailabletrueapple/file_8Fri, 07 + Apr 2023 07:04:59 GMTFri, 07 Apr 2023 07:04:59 + GMT0x8DB37366702E867133application/octet-streamAdC1c2QCT3A2pqWSsisLnw==BlockBlobunlockedavailabletrueapple/file_9Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB3736672D74B1133application/octet-streamy4RIihyMRalyFFTpXqdWDA==BlockBlobunlockedavailabletruebutter/charlie/file_0Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB373668F5E476142application/octet-streamfZMVhdV5fOxZbt8orseV3g==BlockBlobunlockedavailabletruebutter/charlie/file_1Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB3736691EEA50142application/octet-stream8ThrNa2+zPucucYPb4XHGg==BlockBlobunlockedavailabletruebutter/charlie/file_2Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB3736694690E2142application/octet-streamqvzt6SUD19rux8aG82K8Iw==BlockBlobunlockedavailabletruebutter/charlie/file_3Fri, + 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03 + GMT0x8DB373669719235142application/octet-streamnWhId82KTCHmCq6phTThKw==BlockBlobunlockedavailabletruebutter/charlie/file_4Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB3736699B8249142application/octet-streamk4SIuao1cJfPOF/PcPW99A==BlockBlobunlockedavailabletruebutter/charlie/file_5Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB373669C4FD42142application/octet-streamYhbp9va6Uev2WouIl11hlg==BlockBlobunlockedavailabletruebutter/charlie/file_6Fri, + 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04 + GMT0x8DB373669F6DB7A142application/octet-streamGs8TYkBKpozmOjByEh/AKg==BlockBlobunlockedavailabletruebutter/charlie/file_7Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A1E33EF142application/octet-stream8jkucYOrdcWBcfURRkGSUA==BlockBlobunlockedavailabletruebutter/charlie/file_8Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A456541142application/octet-stream9HGalJE7qK5YCA4//j3Bgw==BlockBlobunlockedavailabletruebutter/charlie/file_9Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A6C96A7142application/octet-streamoNt8UttwLAi+00Q97PjCkw==BlockBlobunlockedavailabletruebutter/file_0Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB37366756EFBB134application/octet-streamgrlrMehYaxqDPLYpLl1NMQ==BlockBlobunlockedavailabletruebutter/file_1Fri, 07 + Apr 2023 07:05:00 GMTFri, 07 Apr 2023 07:05:00 + GMT0x8DB37366780DFC4134application/octet-streamS9i8DZm+5kwBUnOBvt0Qeg==BlockBlobunlockedavailabletruebutter/file_2Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667AA81B9134application/octet-streamfmkdpLs3wZOgK7DPqHyxFA==BlockBlobunlockedavailabletruebutter/file_3Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667D2EB76134application/octet-streamm0Zg69Hi/Myv0+fYpjgJ7g==BlockBlobunlockedavailabletruebutter/file_4Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB373667FD0294134application/octet-streamHep5bDlvMOYer6o5kcmGjw==BlockBlobunlockedavailabletruebutter/file_5Fri, 07 + Apr 2023 07:05:01 GMTFri, 07 Apr 2023 07:05:01 + GMT0x8DB37366824A910134application/octet-streamzD2CJl5JNDCamugq5+kcaA==BlockBlobunlockedavailabletruebutter/file_6Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB3736684D60DA134application/octet-streambWzn5VgDECWF1CDvFLe3Yg==BlockBlobunlockedavailabletruebutter/file_7Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB3736687DB8A7134application/octet-stream4W3BRGlJn+5Fn7z+QQUhBg==BlockBlobunlockedavailabletruebutter/file_8Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB373668A5AD40134application/octet-streamFTtakfWtMuz8EygCN4GFaQ==BlockBlobunlockedavailabletruebutter/file_9Fri, 07 + Apr 2023 07:05:02 GMTFri, 07 Apr 2023 07:05:02 + GMT0x8DB373668CC9085134application/octet-streamRuwyYWEdqj9v/DZ4NapZnA==BlockBlobunlockedavailabletrueduff/edward/file_0Fri, + 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05 + GMT0x8DB37366A93C80A139application/octet-stream5WD9QHC0TurCYnf3R96ZCQ==BlockBlobunlockedavailabletrueduff/edward/file_1Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366AC16113139application/octet-streamTe1phRB/aiuccBo52yK31A==BlockBlobunlockedavailabletrueduff/edward/file_2Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366AEA66FC139application/octet-streamecy/i+dABRdGCLNdsEgdAA==BlockBlobunlockedavailabletrueduff/edward/file_3Fri, + 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06 + GMT0x8DB37366B1345C7139application/octet-streamLdJoInsnLvvToyEjVnDfxQ==BlockBlobunlockedavailabletrueduff/edward/file_4Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B3DAB06139application/octet-stream79ktHc0B+4TZRvzdykdvag==BlockBlobunlockedavailabletrueduff/edward/file_5Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B688557139application/octet-streamscoxteYlc4sTBQkI5rM7EQ==BlockBlobunlockedavailabletrueduff/edward/file_6Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366B9004D1139application/octet-streamfglj3qkdAgaS6MagbePCLw==BlockBlobunlockedavailabletrueduff/edward/file_7Fri, + 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07 + GMT0x8DB37366BB73626139application/octet-streamEQx7EF/Klad8D8mck/xJGg==BlockBlobunlockedavailabletrueduff/edward/file_8Fri, + 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08 + GMT0x8DB37366BE12646139application/octet-streamW/u7/qhbGv+A1p4ZEO2+7g==BlockBlobunlockedavailabletrueduff/edward/file_9Fri, + 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08 + GMT0x8DB37366C0AC846139application/octet-streampoWmh3LYSDJDFOfuhMPiuQ==BlockBlobunlockedavailabletruereadmeFri, 07 Apr 2023 + 07:04:57 GMTFri, 07 Apr 2023 07:04:57 GMT0x8DB3736658B9A0B87application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrue" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:05:24 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:25 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_0 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:26 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_1 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:25 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:26 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_2 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:26 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_3 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:26 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_4 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:27 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_5 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:26 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:27 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_6 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:27 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_7 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:28 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_8 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:28 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_9 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:27 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:28 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_0 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:28 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_1 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:29 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_2 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:28 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:29 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_3 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:29 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_4 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:29 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_5 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:30 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_6 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:29 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:30 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_7 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:30 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_8 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:30 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_9 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:31 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_0 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:30 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:31 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_1 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:31 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_2 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:32 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_3 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:32 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_4 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:31 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:32 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_5 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:32 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_6 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:33 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_7 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:32 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:33 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_8 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:33 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_9 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:33 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_0 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:34 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_1 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:33 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:34 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_2 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:34 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_3 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:35 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_4 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:35 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_5 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:34 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:35 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_6 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:35 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_7 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:36 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_8 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:35 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:36 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_9 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob delete-batch + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -s --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:36 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/cont000003/readme + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:05:36 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-delete-type-permanent: + - 'true' + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage blob list + Connection: + - keep-alive + ParameterSetName: + - -c --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:05:37 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000 + response: + body: + string: "\uFEFF5000" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:05:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_container_soft_delete_oauth.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_container_soft_delete_oauth.yaml new file mode 100644 index 00000000000..2603d05070a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_container_soft_delete_oauth.yaml @@ -0,0 +1,521 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account keys list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g --query -o + User-Agent: + - AZURECLI/2.47.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2023-04-07T07:00:36.6916100Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2023-04-07T07:00:36.6916100Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Fri, 07 Apr 2023 07:01:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --account-name --account-key + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:02 GMT + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/con1000003?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:01:03 GMT + etag: + - '"0x8DB3735DA0F91C8"' + last-modified: + - Fri, 07 Apr 2023 07:01:03 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account blob-service-properties update + Connection: + - keep-alive + ParameterSetName: + - -n -g --container-delete-retention-days --enable-container-delete-retention + User-Agent: + - AZURECLI/2.47.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default?api-version=2022-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices","properties":{"cors":{"corsRules":[]},"deleteRetentionPolicy":{"allowPermanentDelete":false,"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '399' + content-type: + - application/json + date: + - Fri, 07 Apr 2023 07:01:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"cors": {"corsRules": []}, "deleteRetentionPolicy": {"enabled": + false, "allowPermanentDelete": false}, "containerDeleteRetentionPolicy": {"enabled": + true, "days": 7}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account blob-service-properties update + Connection: + - keep-alive + Content-Length: + - '183' + Content-Type: + - application/json + ParameterSetName: + - -n -g --container-delete-retention-days --enable-container-delete-retention + User-Agent: + - AZURECLI/2.47.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default?api-version=2022-09-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Storage/storageAccounts/clitest000002/blobServices/default","name":"default","type":"Microsoft.Storage/storageAccounts/blobServices","properties":{"containerDeleteRetentionPolicy":{"enabled":true,"days":7},"cors":{"corsRules":[]},"deleteRetentionPolicy":{"allowPermanentDelete":false,"enabled":false}}}' + headers: + cache-control: + - no-cache + content-length: + - '410' + content-type: + - application/json + date: + - Fri, 07 Apr 2023 07:01:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container list + Connection: + - keep-alive + ParameterSetName: + - --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:07 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/?comp=list&maxresults=5000&include= + response: + body: + string: "\uFEFF5000con1000003Fri, + 07 Apr 2023 07:01:03 GMT\"0x8DB3735DA0F91C8\"unlockedavailable$account-encryption-keyfalsefalsefalsefalse" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:01:07 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:09 GMT + x-ms-version: + - '2021-06-08' + method: DELETE + uri: https://clitest000002.blob.core.windows.net/con1000003?restype=container + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:01:09 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2021-06-08' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container list + Connection: + - keep-alive + ParameterSetName: + - --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:11 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/?comp=list&maxresults=5000&include= + response: + body: + string: "\uFEFF5000" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:01:11 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container list + Connection: + - keep-alive + ParameterSetName: + - --include-deleted --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:12 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/?comp=list&maxresults=5000&include=deleted + response: + body: + string: "\uFEFF5000con1000003true01D9691EB7990AFBFri, + 07 Apr 2023 07:01:03 GMT\"0x8DB3735DA0F91C8\"lockedleasedfixed$account-encryption-keyfalsefalsefalsefalseFri, + 07 Apr 2023 07:01:10 GMT7" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:01:13 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container list + Connection: + - keep-alive + ParameterSetName: + - --include-deleted --query -o --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:44 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/?comp=list&maxresults=5000&include=deleted + response: + body: + string: "\uFEFF5000con1000003true01D9691EB7990AFBFri, + 07 Apr 2023 07:01:03 GMT\"0x8DB3735DA0F91C8\"unlockedexpired$account-encryption-keyfalsefalsefalsefalseFri, + 07 Apr 2023 07:01:10 GMT7" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:01:44 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container restore + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --deleted-version --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:45 GMT + x-ms-deleted-container-name: + - con1dpn2vzgvdswj45kmmf4i + x-ms-deleted-container-version: + - 01D9691EB7990AFB + x-ms-version: + - '2021-06-08' + method: PUT + uri: https://clitest000002.blob.core.windows.net/con1000003?restype=container&comp=undelete + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Fri, 07 Apr 2023 07:01:46 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2021-06-08' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container list + Connection: + - keep-alive + ParameterSetName: + - --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:47 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/?comp=list&maxresults=5000&include= + response: + body: + string: "\uFEFF5000con1000003Fri, + 07 Apr 2023 07:01:46 GMT\"0x8DB3735F3E6F448\"unlockedavailable$account-encryption-keyfalsefalsefalsefalse" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:01:47 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - storage container list + Connection: + - keep-alive + ParameterSetName: + - --include-deleted --account-name --auth-mode + User-Agent: + - AZURECLI/2.47.0 azsdk-python-storage-blob/12.12.0 Python/3.10.10 (Windows-10-10.0.22621-SP0) + x-ms-date: + - Fri, 07 Apr 2023 07:01:49 GMT + x-ms-version: + - '2021-06-08' + method: GET + uri: https://clitest000002.blob.core.windows.net/?comp=list&maxresults=5000&include=deleted + response: + body: + string: "\uFEFF5000con1000003Fri, + 07 Apr 2023 07:01:46 GMT\"0x8DB3735F3E6F448\"unlockedavailable$account-encryption-keyfalsefalsefalsefalse" + headers: + content-type: + - application/xml + date: + - Fri, 07 Apr 2023 07:01:49 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-version: + - '2021-06-08' + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_live_scenarios.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_live_scenarios.py index 5850f32fad6..8782865d183 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_live_scenarios.py +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_live_scenarios.py @@ -146,6 +146,14 @@ def test_storage_blob_query_scenario(self, resource_group, storage_account): result = self.storage_cmd('storage blob query -c {} -n {} --query-expression "{}"', account_info, container, csv_blob, query_string).output self.assertIsNotNone(result) + #test blob-url + expiry = (datetime.utcnow() + timedelta(hours=1)).strftime('%Y-%m-%dT%H:%MZ') + blob_uri = self.storage_cmd('storage blob generate-sas -n {} -c {} --expiry {} --permissions ' + 'rwad --https-only --full-uri -o tsv', + account_info, csv_blob, container, expiry).output.strip() + result = self.cmd('storage blob query --blob-url {} --query-expression "{}"' + .format(blob_uri, query_string)).output + self.assertIsNotNone(result) # test csv output temp_dir = self.create_temp_dir() diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_oauth_track2.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_oauth_track2.py index f96a8f06384..376ac4a518a 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_oauth_track2.py +++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_oauth_track2.py @@ -4,9 +4,9 @@ # -------------------------------------------------------------------------------------------- import os from azure.cli.testsdk import (ScenarioTest, JMESPathCheck, JMESPathCheckExists, ResourceGroupPreparer, - StorageAccountPreparer, api_version_constraint) + StorageAccountPreparer, api_version_constraint, live_only) from azure.cli.core.profiles import ResourceType -from ..storage_test_util import StorageScenarioMixin +from ..storage_test_util import StorageScenarioMixin, StorageTestFilesPreparer class StorageOauthTests(StorageScenarioMixin, ScenarioTest): @@ -128,6 +128,51 @@ def test_storage_blob_lease_oauth(self, resource_group, storage_account_info): JMESPathCheck('properties.lease.state', 'available'), JMESPathCheck('properties.lease.status', 'unlocked')) + @ResourceGroupPreparer() + @StorageAccountPreparer() + def test_storage_append_blob_upload_oauth(self, resource_group, storage_account_info): + account_info = storage_account_info + self.kwargs = { + 'account': storage_account_info[0], + 'container': self.create_container(account_info), + 'local_file': self.create_temp_file(1, full_random=False), + 'blob': self.create_random_name('blob', 16) + } + + # create an append blob with pre-condition + self.oauth_cmd('storage blob upload -c {container} -f "{local_file}" -n {blob} --type append --if-none-match * ' + '--account-name {account} ') + result = self.oauth_cmd('storage blob show -n {blob} -c {container} --account-name {account}')\ + .get_output_in_json() + self.assertEqual(result['properties']['blobType'], 'AppendBlob') + length = int(result['properties']['contentLength']) + + # append if-none-match should throw exception + with self.assertRaises(Exception): + self.oauth_cmd('storage blob upload -c {container} -f "{local_file}" -n {blob} --type append ' + '--if-none-match * --account-name {} ') + + # append an append blob + self.oauth_cmd('storage blob upload -c {container} -f "{local_file}" -n {blob} --type append ' + '--account-name {account} ') + self.oauth_cmd('storage blob show -n {blob} -c {container} --account-name {account}').assert_with_checks( + JMESPathCheck('properties.contentLength', length * 2), + JMESPathCheck('properties.blobType', 'AppendBlob') + ) + + # append an append blob with maxsize_condition + with self.assertRaises(Exception): + self.oauth_cmd('storage blob upload -c {container} -f "{local_file}" -n {blob} --type append ' + '--maxsize-condition 1000 --account-name {account} ') + + # append an append blob with overwrite + self.oauth_cmd('storage blob upload -c {container} -f "{local_file}" -n {blob} --type append ' + '--overwrite --account-name {account} ') + self.oauth_cmd('storage blob show -n {blob} -c {container} --account-name {account}').assert_with_checks( + JMESPathCheck('properties.contentLength', length), + JMESPathCheck('properties.blobType', 'AppendBlob') + ) + @ResourceGroupPreparer() @StorageAccountPreparer() def test_storage_blob_show_oauth(self, resource_group, storage_account_info): @@ -241,6 +286,76 @@ def test_storage_blob_show_oauth(self, resource_group, storage_account_info): JMESPathCheck('properties.contentSettings.contentType', 'application/octet-stream'), JMESPathCheck('properties.pageRanges', None)) + @ResourceGroupPreparer(name_prefix='clitest') + @StorageAccountPreparer(kind='StorageV2', name_prefix='clitest', location='eastus2euap') + def test_storage_container_soft_delete_oauth(self, resource_group, storage_account): + import time + account_info = self.get_account_info(resource_group, storage_account) + container = self.create_container(account_info, prefix="con1") + self.cmd('storage account blob-service-properties update -n {sa} -g {rg} --container-delete-retention-days 7 ' + '--enable-container-delete-retention', + checks={ + JMESPathCheck('containerDeleteRetentionPolicy.days', 7), + JMESPathCheck('containerDeleteRetentionPolicy.enabled', True) + }) + self.oauth_cmd('storage container list --account-name {} '.format(storage_account)) \ + .assert_with_checks(JMESPathCheck('length(@)', 1)) + + self.oauth_cmd('storage container delete -n {} --account-name {} '.format(container, storage_account)) + self.oauth_cmd('storage container list --account-name {} '.format(storage_account)) \ + .assert_with_checks(JMESPathCheck('length(@)', 0)) + self.oauth_cmd('storage container list --include-deleted --account-name {} '.format(storage_account))\ + .assert_with_checks(JMESPathCheck('length(@)', 1), + JMESPathCheck('[0].deleted', True)) + + time.sleep(30) + version = self.oauth_cmd('storage container list --include-deleted --query [0].version -o tsv --account-name {}' + .format(storage_account)).output.strip('\n') + self.oauth_cmd('storage container restore -n {} --deleted-version {} --account-name {} '.format( + container, version, storage_account))\ + .assert_with_checks(JMESPathCheck('containerName', container)) + + self.oauth_cmd('storage container list --account-name {} '.format(storage_account)) \ + .assert_with_checks(JMESPathCheck('length(@)', 1)) + self.oauth_cmd('storage container list --include-deleted --account-name {} '.format(storage_account)) \ + .assert_with_checks(JMESPathCheck('length(@)', 1)) + + @live_only() + @ResourceGroupPreparer() + @StorageAccountPreparer() + @StorageTestFilesPreparer() + def test_storage_blob_batch_oauth_scenarios(self, test_dir, resource_group, storage_account): + storage_account_info = self.get_account_info(resource_group, storage_account) + src_container = self.create_container(storage_account_info) + + # upload test files to storage account when precondition failed + self.oauth_cmd('storage blob list -c {} --account-name {} '.format(src_container, storage_account))\ + .assert_with_checks(JMESPathCheck('length(@)', 0)) + self.oauth_cmd('storage blob upload-batch -s "{}" -d {} --max-connections 3 --if-match * ' + '--if-unmodified-since "2020-06-29T06:32Z" --account-name {} '.format(test_dir, src_container, + storage_account)) + self.oauth_cmd('storage blob list -c {} --account-name {} '.format(src_container, storage_account))\ + .assert_with_checks(JMESPathCheck('length(@)', 0)) + + # upload test files to storage account + self.oauth_cmd('storage blob upload-batch -s "{}" -d {} --max-connections 3 --account-name {} '.format( + test_dir, src_container, storage_account)) + self.oauth_cmd( + 'storage blob list -c {} --account-name {} '.format(src_container, storage_account)).assert_with_checks( + JMESPathCheck('length(@)', 41)) + + # download recursively without pattern + local_folder = self.create_temp_dir() + self.oauth_cmd('storage blob download-batch -s {} -d "{}" --account-name {} '.format( + src_container, local_folder, storage_account)) + self.assertEqual(41, sum(len(f) for r, d, f in os.walk(local_folder))) + + # delete recursively without pattern + self.oauth_cmd('storage blob delete-batch -s {} --account-name {} '.format(src_container, storage_account)) + self.oauth_cmd( + 'storage blob list -c {} --account-name {} '.format(src_container, storage_account)).assert_with_checks( + JMESPathCheck('length(@)', 0)) + @ResourceGroupPreparer(name_prefix='clitest') @StorageAccountPreparer(name_prefix='storage', kind='StorageV2', location='eastus2', sku='Standard_RAGRS') def test_storage_queue_oauth_track2(self, resource_group, storage_account):