From bfb0396affffcba98d366b629cb95d506fb458bc Mon Sep 17 00:00:00 2001
From: Sebastian Cramond <47074056+sebby37@users.noreply.github.com>
Date: Thu, 24 Sep 2026 15:11:31 +0930
Subject: [PATCH 1/5] [Storage] `az storage blob download-batch`: Ensure
downloaded blobs stay within the destination directory
---
.../storage/operations/blob.py | 24 +++-
.../test_storage_blob_download_batch.py | 120 ++++++++++++++++++
2 files changed, 143 insertions(+), 1 deletion(-)
create mode 100644 src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
diff --git a/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py b/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
index 55c9f206108..52cfab9cd93 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
@@ -442,6 +442,26 @@ def action_file_copy(file_info):
raise ValueError('Fail to find source. Neither blob container nor file share is specified')
+def _get_blob_download_path(destination, normalized_blob_name, blob_name):
+ """Build the local path for a blob, ensuring it cannot escape the destination directory."""
+ destination_path = os.path.join(destination, os.path.normpath(normalized_blob_name))
+ # Blob names are arbitrary server-controlled strings (e.g. '../../.ssh/authorized_keys', or 'C:/x' on Windows),
+ # so resolve the final path and verify it is strictly inside the destination before writing anything.
+ real_destination = os.path.normcase(os.path.realpath(destination))
+ real_destination_path = os.path.normcase(os.path.realpath(destination_path))
+ try:
+ is_within_destination = real_destination_path != real_destination and \
+ os.path.commonpath([real_destination, real_destination_path]) == real_destination
+ except ValueError: # paths are on different drives
+ is_within_destination = False
+ if not is_within_destination:
+ raise FileOperationError('Blob "{}" cannot be downloaded because its name resolves to a path outside the '
+ 'destination directory "{}". Use the `--pattern` parameter to exclude it, or use '
+ 'the `storage blob download` command to download it to an explicit file path.'
+ .format(blob_name, destination))
+ return destination_path
+
+
# pylint: disable=unused-argument
def storage_blob_download_batch(client, source, destination, source_container_name, pattern=None, dryrun=False,
progress_callback=None, overwrite=False, **kwargs):
@@ -455,6 +475,8 @@ def _download_blob(*args, **kwargs):
for blob_name in source_blobs:
# remove starting path seperator and normalize
normalized_blob_name = normalize_blob_file_path(None, blob_name)
+ # validate every blob before downloading any of them, so a malicious name fails the batch up front
+ _get_blob_download_path(destination, normalized_blob_name, blob_name)
if normalized_blob_name in blobs_to_download:
raise CLIError('Multiple blobs with download path: `{}`. As a solution, use the `--pattern` parameter '
'to select for a subset of blobs to download OR utilize the `storage blob download` '
@@ -483,7 +505,7 @@ def _download_blob(*args, **kwargs):
index + 1, len(blobs_to_download), blobs_to_download[blob_normed])
blob_client = client.get_blob_client(container=source_container_name,
blob=blobs_to_download[blob_normed])
- destination_path = os.path.join(destination, os.path.normpath(blob_normed))
+ destination_path = _get_blob_download_path(destination, blob_normed, blobs_to_download[blob_normed])
destination_folder = os.path.dirname(destination_path)
# Failed when there is same name for file and folder
if os.path.isfile(destination_path) and os.path.exists(destination_folder) and not overwrite:
diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
new file mode 100644
index 00000000000..af1aa15c315
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
@@ -0,0 +1,120 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+import ntpath
+import os
+import sys
+import tempfile
+import unittest
+from types import SimpleNamespace
+from unittest import mock
+
+from azure.cli.core.azclierror import FileOperationError
+from azure.cli.command_modules.storage.operations.blob import storage_blob_download_batch
+
+BLOB_MODULE = 'azure.cli.command_modules.storage.operations.blob'
+UTIL_MODULE = 'azure.cli.command_modules.storage.util'
+
+
+def _fake_download_blob(client, file_path=None, **kwargs): # pylint: disable=unused-argument
+ with open(file_path, 'wb') as stream:
+ stream.write(b'content')
+ return mock.Mock(name=file_path)
+
+
+class TestStorageBlobDownloadBatch(unittest.TestCase):
+
+ def setUp(self):
+ self._root = tempfile.TemporaryDirectory()
+ self.root = os.path.realpath(self._root.name)
+ self.destination = os.path.join(self.root, 'a', 'b', 'destination')
+ os.makedirs(self.destination)
+
+ def tearDown(self):
+ self._root.cleanup()
+
+ def _run(self, blob_names, dryrun=False):
+ client = mock.Mock()
+ with mock.patch(BLOB_MODULE + '.collect_blobs', return_value=list(blob_names)), \
+ mock.patch(BLOB_MODULE + '.download_blob', side_effect=_fake_download_blob) as download:
+ storage_blob_download_batch(client, source='container', destination=self.destination,
+ source_container_name='container', dryrun=dryrun)
+ return download
+
+ def _files_written(self):
+ return sorted(os.path.relpath(os.path.join(d, f), self.root)
+ for d, _, files in os.walk(self.root) for f in files)
+
+ def test_download_batch_writes_blobs_inside_destination(self):
+ download = self._run(['file.txt', 'dir/sub/nested.txt', '/leading/slash.txt', 'x/../normalized.txt'])
+
+ self.assertEqual(download.call_count, 4)
+ expected = [os.path.join('a', 'b', 'destination', p) for p in
+ ('dir/sub/nested.txt', 'file.txt', 'leading/slash.txt', 'normalized.txt')]
+ self.assertEqual(self._files_written(), sorted(os.path.normpath(p) for p in expected))
+
+ def test_download_batch_rejects_path_traversal_blob_names(self):
+ for blob_name in ('../evil.txt', '../../evil.txt', '../../../evil.txt', 'dir/../../evil.txt',
+ 'dir/../../destination-sibling/evil.txt', '..'):
+ with self.subTest(blob_name=blob_name):
+ with self.assertRaisesRegex(FileOperationError, 'outside the destination directory'):
+ self._run([blob_name])
+ self.assertEqual(self._files_written(), [])
+
+ def test_download_batch_rejects_before_downloading_any_blob(self):
+ with mock.patch(BLOB_MODULE + '.download_blob', side_effect=_fake_download_blob) as download:
+ with self.assertRaises(FileOperationError):
+ with mock.patch(BLOB_MODULE + '.collect_blobs', return_value=['good.txt', '../../evil.txt']):
+ storage_blob_download_batch(mock.Mock(), source='container', destination=self.destination,
+ source_container_name='container')
+ download.assert_not_called()
+ self.assertEqual(self._files_written(), [])
+
+ def test_download_batch_dryrun_rejects_path_traversal_blob_names(self):
+ with self.assertRaises(FileOperationError):
+ self._run(['../../evil.txt'], dryrun=True)
+
+ @unittest.skipIf(sys.platform == 'win32', 'Creating symlinks may require elevated privileges on Windows')
+ def test_download_batch_rejects_symlink_escape(self):
+ outside = os.path.join(self.root, 'outside')
+ os.makedirs(outside)
+ os.symlink(outside, os.path.join(self.destination, 'link'))
+
+ with self.assertRaises(FileOperationError):
+ self._run(['link/evil.txt'])
+ self.assertEqual(os.listdir(outside), [])
+
+ def test_download_batch_rejects_windows_blob_names_with_simulated_windows_paths(self):
+ # Exercise Windows path semantics on any platform by swapping os.path for ntpath in the code under test
+ windows_os = SimpleNamespace(path=ntpath)
+ destination = 'C:\\Users\\victim\\downloads'
+ with mock.patch(BLOB_MODULE + '.os', windows_os), mock.patch(UTIL_MODULE + '.os', windows_os):
+ for blob_name in ('C:/Users/Public/evil.txt', 'C:\\Users\\Public\\evil.txt', 'D:/evil.txt',
+ '..\\..\\evil.txt', 'dir\\..\\..\\evil.txt', '../downloads2/evil.txt'):
+ with self.subTest(blob_name=blob_name):
+ with mock.patch(BLOB_MODULE + '.collect_blobs', return_value=[blob_name]), \
+ self.assertRaisesRegex(FileOperationError, 'outside the destination directory'):
+ storage_blob_download_batch(mock.Mock(), source='container', destination=destination,
+ source_container_name='container', dryrun=True)
+
+ for blob_name in ('dir/file.txt', 'dir\\file.txt', 'C:evil.txt', '\\\\server\\share\\file.txt'):
+ with self.subTest(blob_name=blob_name):
+ with mock.patch(BLOB_MODULE + '.collect_blobs', return_value=[blob_name]):
+ self.assertEqual(storage_blob_download_batch(
+ mock.Mock(), source='container', destination=destination,
+ source_container_name='container', dryrun=True), [])
+
+ @unittest.skipUnless(sys.platform == 'win32', 'Windows path semantics')
+ def test_download_batch_rejects_windows_traversal_blob_names(self):
+ drive = os.path.splitdrive(self.root)[0]
+ for blob_name in ('..\\..\\evil.txt', 'dir\\..\\..\\evil.txt', drive + '/evil.txt', drive + '\\evil.txt'):
+ with self.subTest(blob_name=blob_name):
+ with self.assertRaises(FileOperationError):
+ self._run([blob_name])
+ self.assertEqual(self._files_written(), [])
+
+
+if __name__ == '__main__':
+ unittest.main()
From 49e1782309a86f5b8734f5de172fa5e115e3627a Mon Sep 17 00:00:00 2001
From: Sebastian Cramond <47074056+sebby37@users.noreply.github.com>
Date: Thu, 24 Sep 2026 15:11:31 +0930
Subject: [PATCH 2/5] Add junction and `--overwrite` coverage to download-batch
tests
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
.../test_storage_blob_download_batch.py | 33 +++++++++++++++----
1 file changed, 26 insertions(+), 7 deletions(-)
diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
index af1aa15c315..35546143622 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
@@ -5,6 +5,7 @@
import ntpath
import os
+import subprocess
import sys
import tempfile
import unittest
@@ -35,14 +36,22 @@ def setUp(self):
def tearDown(self):
self._root.cleanup()
- def _run(self, blob_names, dryrun=False):
+ def _run(self, blob_names, dryrun=False, overwrite=False):
client = mock.Mock()
with mock.patch(BLOB_MODULE + '.collect_blobs', return_value=list(blob_names)), \
mock.patch(BLOB_MODULE + '.download_blob', side_effect=_fake_download_blob) as download:
storage_blob_download_batch(client, source='container', destination=self.destination,
- source_container_name='container', dryrun=dryrun)
+ source_container_name='container', dryrun=dryrun, overwrite=overwrite)
return download
+ @staticmethod
+ def _make_directory_link(target, link):
+ if sys.platform == 'win32':
+ # Unlike symlinks, junctions can be created without elevated privileges
+ subprocess.run(['cmd', '/c', 'mklink', '/J', link, target], check=True, capture_output=True)
+ else:
+ os.symlink(target, link)
+
def _files_written(self):
return sorted(os.path.relpath(os.path.join(d, f), self.root)
for d, _, files in os.walk(self.root) for f in files)
@@ -76,11 +85,20 @@ def test_download_batch_dryrun_rejects_path_traversal_blob_names(self):
with self.assertRaises(FileOperationError):
self._run(['../../evil.txt'], dryrun=True)
- @unittest.skipIf(sys.platform == 'win32', 'Creating symlinks may require elevated privileges on Windows')
- def test_download_batch_rejects_symlink_escape(self):
+ def test_download_batch_with_overwrite_does_not_replace_files_outside_destination(self):
+ outside_file = os.path.join(self.root, 'a', 'existing.txt')
+ with open(outside_file, 'wb') as stream:
+ stream.write(b'original')
+
+ with self.assertRaises(FileOperationError):
+ self._run(['../../existing.txt'], overwrite=True)
+ with open(outside_file, 'rb') as stream:
+ self.assertEqual(stream.read(), b'original')
+
+ def test_download_batch_rejects_directory_link_escape(self):
outside = os.path.join(self.root, 'outside')
os.makedirs(outside)
- os.symlink(outside, os.path.join(self.destination, 'link'))
+ self._make_directory_link(outside, os.path.join(self.destination, 'link'))
with self.assertRaises(FileOperationError):
self._run(['link/evil.txt'])
@@ -108,8 +126,9 @@ def test_download_batch_rejects_windows_blob_names_with_simulated_windows_paths(
@unittest.skipUnless(sys.platform == 'win32', 'Windows path semantics')
def test_download_batch_rejects_windows_traversal_blob_names(self):
- drive = os.path.splitdrive(self.root)[0]
- for blob_name in ('..\\..\\evil.txt', 'dir\\..\\..\\evil.txt', drive + '/evil.txt', drive + '\\evil.txt'):
+ # drive-absolute names point back into the temp root so a vulnerable build can't write elsewhere
+ outside = os.path.join(self.root, 'evil.txt')
+ for blob_name in ('..\\..\\evil.txt', 'dir\\..\\..\\evil.txt', outside, outside.replace('\\', '/')):
with self.subTest(blob_name=blob_name):
with self.assertRaises(FileOperationError):
self._run([blob_name])
From f116f590a4910615264740f32c056655e5840342 Mon Sep 17 00:00:00 2001
From: Sebastian Cramond <47074056+sebby37@users.noreply.github.com>
Date: Fri, 25 Sep 2026 09:46:54 +0930
Subject: [PATCH 3/5] Follow existing symlinks/junctions under the destination;
re-record download-batch scenario test
---
.../storage/operations/blob.py | 11 +-
...storage_blob_batch_download_scenarios.yaml | 8926 +++++++++--------
.../latest/test_storage_batch_operations.py | 2 +-
.../test_storage_blob_download_batch.py | 12 +-
.../tests/latest/test_storage_oauth_track2.py | 2 +-
5 files changed, 4762 insertions(+), 4191 deletions(-)
diff --git a/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py b/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
index 52cfab9cd93..afe76ecbfec 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
@@ -446,12 +446,13 @@ def _get_blob_download_path(destination, normalized_blob_name, blob_name):
"""Build the local path for a blob, ensuring it cannot escape the destination directory."""
destination_path = os.path.join(destination, os.path.normpath(normalized_blob_name))
# Blob names are arbitrary server-controlled strings (e.g. '../../.ssh/authorized_keys', or 'C:/x' on Windows),
- # so resolve the final path and verify it is strictly inside the destination before writing anything.
- real_destination = os.path.normcase(os.path.realpath(destination))
- real_destination_path = os.path.normcase(os.path.realpath(destination_path))
+ # so verify the final path is strictly inside the destination before writing anything. The check is lexical on
+ # purpose: existing symlinks/junctions under the destination are followed, preserving user-created layouts.
+ abs_destination = os.path.normcase(os.path.abspath(destination))
+ abs_destination_path = os.path.normcase(os.path.abspath(destination_path))
try:
- is_within_destination = real_destination_path != real_destination and \
- os.path.commonpath([real_destination, real_destination_path]) == real_destination
+ is_within_destination = abs_destination_path != abs_destination and \
+ os.path.commonpath([abs_destination, abs_destination_path]) == abs_destination
except ValueError: # paths are on different drives
is_within_destination = False
if not is_within_destination:
diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_download_scenarios.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_download_scenarios.yaml
index de453b85ea8..e03edbbd247 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_download_scenarios.yaml
+++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_download_scenarios.yaml
@@ -15,11 +15,11 @@ interactions:
ParameterSetName:
- -n --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:04:16 GMT
+ - Fri, 25 Sep 2026 00:03:53 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container1?restype=container
response:
@@ -29,15 +29,15 @@ interactions:
content-length:
- '0'
date:
- - Thu, 18 Sep 2025 09:04:17 GMT
+ - Fri, 25 Sep 2026 00:03:54 GMT
etag:
- - '"0x8DDF6925933FF2C"'
+ - '"0x8DF1A987D4F4A6D"'
last-modified:
- - Thu, 18 Sep 2025 09:04:17 GMT
+ - Fri, 25 Sep 2026 00:03:54 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -62,13 +62,13 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:18 GMT
+ - Fri, 25 Sep 2026 00:03:55 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container1/readme
response:
@@ -80,11 +80,11 @@ interactions:
content-md5:
- sYGKK8OX+WLKH+2bAe4tSQ==
date:
- - Thu, 18 Sep 2025 09:04:18 GMT
+ - Fri, 25 Sep 2026 00:03:55 GMT
etag:
- - '"0x8DDF69259EB250E"'
+ - '"0x8DF1A987DD403AE"'
last-modified:
- - Thu, 18 Sep 2025 09:04:19 GMT
+ - Fri, 25 Sep 2026 00:03:55 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
@@ -92,12 +92,12 @@ interactions:
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_3'
headers:
Accept:
- application/xml
@@ -108,7 +108,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -116,15 +116,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:19 GMT
+ - Fri, 25 Sep 2026 00:03:55 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
response:
body:
string: ''
@@ -132,26 +132,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - zGQZoDWt8Y5dJESc8TB0Mg==
date:
- - Thu, 18 Sep 2025 09:04:19 GMT
+ - Fri, 25 Sep 2026 00:03:56 GMT
etag:
- - '"0x8DDF6925A8B44F7"'
+ - '"0x8DF1A987E54E0DA"'
last-modified:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:03:56 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - eNCO1vhLk5g=
+ - 9ke1C+p2IX8=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_0'
headers:
Accept:
- application/xml
@@ -162,7 +162,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -170,15 +170,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:03:56 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
response:
body:
string: ''
@@ -186,26 +186,26 @@ interactions:
content-length:
- '0'
content-md5:
- - lIufFEDWG6WiNe7Vy5LCzw==
+ - 71w8dBoGUSSVbamKcO1lFw==
date:
- - Thu, 18 Sep 2025 09:04:21 GMT
+ - Fri, 25 Sep 2026 00:03:56 GMT
etag:
- - '"0x8DDF6925B26AEAD"'
+ - '"0x8DF1A987ED72011"'
last-modified:
- - Thu, 18 Sep 2025 09:04:21 GMT
+ - Fri, 25 Sep 2026 00:03:57 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - AVm75jC7/ec=
+ - fdzrW7Jnkv4=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_4'
headers:
Accept:
- application/xml
@@ -216,7 +216,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -224,15 +224,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:21 GMT
+ - Fri, 25 Sep 2026 00:03:57 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
response:
body:
string: ''
@@ -240,26 +240,26 @@ interactions:
content-length:
- '0'
content-md5:
- - Xr/A/PPBjAvfBnZM6eDygw==
+ - pGxnukS6Fz7NjCuHvHJSOQ==
date:
- - Thu, 18 Sep 2025 09:04:21 GMT
+ - Fri, 25 Sep 2026 00:03:57 GMT
etag:
- - '"0x8DDF6925BC328DD"'
+ - '"0x8DF1A987F59CB18"'
last-modified:
- - Thu, 18 Sep 2025 09:04:22 GMT
+ - Fri, 25 Sep 2026 00:03:58 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - isLltmiqTmY=
+ - 8mqqw8GC8Dc=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_6'
headers:
Accept:
- application/xml
@@ -270,7 +270,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -278,15 +278,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:22 GMT
+ - Fri, 25 Sep 2026 00:03:58 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
response:
body:
string: ''
@@ -294,26 +294,26 @@ interactions:
content-length:
- '0'
content-md5:
- - QijJ1Y0HkLHaWhK6JWu6Yg==
+ - wxdWezoDBTifLE6AYPV4fw==
date:
- - Thu, 18 Sep 2025 09:04:22 GMT
+ - Fri, 25 Sep 2026 00:03:59 GMT
etag:
- - '"0x8DDF6925C5D5BB6"'
+ - '"0x8DF1A987FDAE34F"'
last-modified:
- - Thu, 18 Sep 2025 09:04:23 GMT
+ - Fri, 25 Sep 2026 00:03:59 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 80vQhqBaIBk=
+ - AHjBo1FjLck=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_2'
headers:
Accept:
- application/xml
@@ -324,7 +324,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -332,15 +332,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:23 GMT
+ - Fri, 25 Sep 2026 00:03:59 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
response:
body:
string: ''
@@ -348,26 +348,26 @@ interactions:
content-length:
- '0'
content-md5:
- - vbz+Yk+D6XrKvX4okS2Gag==
+ - sd0gDAybdZBuWZ2am5ULCQ==
date:
- - Thu, 18 Sep 2025 09:04:23 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
etag:
- - '"0x8DDF6925CF7DC62"'
+ - '"0x8DF1A9880600392"'
last-modified:
- - Thu, 18 Sep 2025 09:04:24 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 92bPTouu8VE=
+ - j86AOyKGTwA=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_8'
headers:
Accept:
- application/xml
@@ -378,7 +378,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -386,15 +386,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:24 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
response:
body:
string: ''
@@ -402,26 +402,26 @@ interactions:
content-length:
- '0'
content-md5:
- - qyjPb9RRf+qh1mpxe/Zaxw==
+ - Qe2yDZak0qtkDUBcxAFmLQ==
date:
- - Thu, 18 Sep 2025 09:04:24 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
etag:
- - '"0x8DDF6925D8F5334"'
+ - '"0x8DF1A9880E11C52"'
last-modified:
- - Thu, 18 Sep 2025 09:04:25 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - ju/6fkNeny4=
+ - CCL/MwaLjlg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_1'
headers:
Accept:
- application/xml
@@ -432,7 +432,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -440,15 +440,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:25 GMT
+ - Fri, 25 Sep 2026 00:04:01 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
response:
body:
string: ''
@@ -456,26 +456,26 @@ interactions:
content-length:
- '0'
content-md5:
- - wXEJFzIgI33TKjbAlix3iw==
+ - DnLBQRNtFnclTyJXfyKqnA==
date:
- - Thu, 18 Sep 2025 09:04:25 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
etag:
- - '"0x8DDF6925E2DC701"'
+ - '"0x8DF1A9881615D30"'
last-modified:
- - Thu, 18 Sep 2025 09:04:26 GMT
+ - Fri, 25 Sep 2026 00:04:01 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - BXSkLhtPLK8=
+ - BFXea3qX/IE=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_9'
headers:
Accept:
- application/xml
@@ -486,7 +486,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -494,15 +494,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:26 GMT
+ - Fri, 25 Sep 2026 00:04:01 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
response:
body:
string: ''
@@ -510,26 +510,26 @@ interactions:
content-length:
- '0'
content-md5:
- - NzN/gbDos0zQ+5NCHOgUcg==
+ - LZvKP6Iz3MAPrql/iSMbxw==
date:
- - Thu, 18 Sep 2025 09:04:26 GMT
+ - Fri, 25 Sep 2026 00:04:02 GMT
etag:
- - '"0x8DDF6925ECDBFBA"'
+ - '"0x8DF1A9881E3C202"'
last-modified:
- - Thu, 18 Sep 2025 09:04:27 GMT
+ - Fri, 25 Sep 2026 00:04:02 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - fP2RHtO/QtA=
+ - cavKA8574Cc=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_7'
headers:
Accept:
- application/xml
@@ -540,7 +540,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -548,15 +548,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:27 GMT
+ - Fri, 25 Sep 2026 00:04:02 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
response:
body:
string: ''
@@ -564,26 +564,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 7GVacxDUKYkMT8VjT+tTgQ==
+ - pmShc94YBcMpNtkfJ6TS6A==
date:
- - Thu, 18 Sep 2025 09:04:27 GMT
+ - Fri, 25 Sep 2026 00:04:03 GMT
etag:
- - '"0x8DDF6925F650FA7"'
+ - '"0x8DF1A988265596B"'
last-modified:
- - Thu, 18 Sep 2025 09:04:28 GMT
+ - Fri, 25 Sep 2026 00:04:03 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - DS6avkynjz4=
+ - efH0k5mTQ7Y=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_5'
headers:
Accept:
- application/xml
@@ -594,7 +594,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -602,15 +602,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:28 GMT
+ - Fri, 25 Sep 2026 00:04:03 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
response:
body:
string: ''
@@ -618,26 +618,26 @@ interactions:
content-length:
- '0'
content-md5:
- - o8CI3RsPcRLdlmTyY8+r6g==
+ - 09mN8BZH+J3xKBIdhMTn2A==
date:
- - Thu, 18 Sep 2025 09:04:29 GMT
+ - Fri, 25 Sep 2026 00:04:04 GMT
etag:
- - '"0x8DDF6926003AA61"'
+ - '"0x8DF1A9882E63688"'
last-modified:
- - Thu, 18 Sep 2025 09:04:29 GMT
+ - Fri, 25 Sep 2026 00:04:04 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - dKevjoRX4UE=
+ - i+Of8wlynkg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_3'
headers:
Accept:
- application/xml
@@ -648,7 +648,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -656,15 +656,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:29 GMT
+ - Fri, 25 Sep 2026 00:04:04 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
response:
body:
string: ''
@@ -672,26 +672,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 9b/sO4zifnv0UaZvaocIvw==
+ - 8A3Po3vddYDGBGfja7/XQw==
date:
- - Thu, 18 Sep 2025 09:04:30 GMT
+ - Fri, 25 Sep 2026 00:04:04 GMT
etag:
- - '"0x8DDF692609D8F63"'
+ - '"0x8DF1A9883669D75"'
last-modified:
- - Thu, 18 Sep 2025 09:04:30 GMT
+ - Fri, 25 Sep 2026 00:04:05 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - ueqovENVQI0=
+ - yPvqV9WoVo8=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_0'
headers:
Accept:
- application/xml
@@ -702,7 +702,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -710,15 +710,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:30 GMT
+ - Fri, 25 Sep 2026 00:04:05 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
response:
body:
string: ''
@@ -726,26 +726,26 @@ interactions:
content-length:
- '0'
content-md5:
- - n0rDSbIqToxjMieFptvIGQ==
+ - UkUA0/FHbUXIe+47c6Dj9Q==
date:
- - Thu, 18 Sep 2025 09:04:31 GMT
+ - Fri, 25 Sep 2026 00:04:05 GMT
etag:
- - '"0x8DDF692613726B0"'
+ - '"0x8DF1A9883E8E3CE"'
last-modified:
- - Thu, 18 Sep 2025 09:04:31 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - wGOdjIulLvI=
+ - Q2C0B4255Q4=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_4'
headers:
Accept:
- application/xml
@@ -756,7 +756,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -764,15 +764,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:31 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
response:
body:
string: ''
@@ -780,26 +780,26 @@ interactions:
content-length:
- '0'
content-md5:
- - DYolaEf0RsVC992imxxZRw==
+ - 9zWE7vtoJnOJHv6tUmqfwQ==
date:
- - Thu, 18 Sep 2025 09:04:31 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
etag:
- - '"0x8DDF69261D3C7D7"'
+ - '"0x8DF1A98846B203D"'
last-modified:
- - Thu, 18 Sep 2025 09:04:32 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - S/jD3NO0nXM=
+ - zNb1n/5ch8c=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_6'
headers:
Accept:
- application/xml
@@ -810,7 +810,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -818,15 +818,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:32 GMT
+ - Fri, 25 Sep 2026 00:04:07 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
response:
body:
string: ''
@@ -834,26 +834,26 @@ interactions:
content-length:
- '0'
content-md5:
- - i+ji99hYpAoJqdy08+A6Wg==
+ - Nkl8ajHVjxKl9UmKy7TaZA==
date:
- - Thu, 18 Sep 2025 09:04:33 GMT
+ - Fri, 25 Sep 2026 00:04:07 GMT
etag:
- - '"0x8DDF692626D383A"'
+ - '"0x8DF1A9884ECAC89"'
last-modified:
- - Thu, 18 Sep 2025 09:04:33 GMT
+ - Fri, 25 Sep 2026 00:04:07 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - MnH27BtE8ww=
+ - PsSe/269Wjk=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_2'
headers:
Accept:
- application/xml
@@ -864,7 +864,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -872,15 +872,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:33 GMT
+ - Fri, 25 Sep 2026 00:04:07 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
response:
body:
string: ''
@@ -888,26 +888,26 @@ interactions:
content-length:
- '0'
content-md5:
- - mF4KjAXjgSo1MW7Yp6kyFA==
+ - 9nT2gYpljB8wufj8Np3SCg==
date:
- - Thu, 18 Sep 2025 09:04:34 GMT
+ - Fri, 25 Sep 2026 00:04:08 GMT
etag:
- - '"0x8DDF6926308069D"'
+ - '"0x8DF1A98856D89A8"'
last-modified:
- - Thu, 18 Sep 2025 09:04:34 GMT
+ - Fri, 25 Sep 2026 00:04:08 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - NlzpJDCwIkQ=
+ - sXLfZx1YOPA=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_8'
headers:
Accept:
- application/xml
@@ -918,7 +918,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -926,15 +926,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:34 GMT
+ - Fri, 25 Sep 2026 00:04:08 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
response:
body:
string: ''
@@ -942,26 +942,26 @@ interactions:
content-length:
- '0'
content-md5:
- - JxT6YyZzPZCJhVE6ZQkQaA==
+ - eRydkbCQ5SJKqFIWYL7VqA==
date:
- - Thu, 18 Sep 2025 09:04:34 GMT
+ - Fri, 25 Sep 2026 00:04:08 GMT
etag:
- - '"0x8DDF69263A15027"'
+ - '"0x8DF1A9885F0D857"'
last-modified:
- - Thu, 18 Sep 2025 09:04:35 GMT
+ - Fri, 25 Sep 2026 00:04:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - T9XcFPhATDs=
+ - Np6gbzlV+ag=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_1'
headers:
Accept:
- application/xml
@@ -972,7 +972,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -980,15 +980,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:35 GMT
+ - Fri, 25 Sep 2026 00:04:09 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
response:
body:
string: ''
@@ -996,26 +996,26 @@ interactions:
content-length:
- '0'
content-md5:
- - pynwCV43Rcrth0ZFpJjl8A==
+ - eRVeHTq6T6dxb0zP9rq+fw==
date:
- - Thu, 18 Sep 2025 09:04:36 GMT
+ - Fri, 25 Sep 2026 00:04:09 GMT
etag:
- - '"0x8DDF69264403899"'
+ - '"0x8DF1A9886722A96"'
last-modified:
- - Thu, 18 Sep 2025 09:04:36 GMT
+ - Fri, 25 Sep 2026 00:04:10 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - xE6CRKBR/7o=
+ - OumBN0VJi3E=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_9'
headers:
Accept:
- application/xml
@@ -1026,7 +1026,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1034,15 +1034,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:36 GMT
+ - Fri, 25 Sep 2026 00:04:10 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
response:
body:
string: ''
@@ -1050,26 +1050,26 @@ interactions:
content-length:
- '0'
content-md5:
- - frgRHx8gFlDTsguZeuIKDQ==
+ - bJ+4nl0DQc5Lvg891+rFxw==
date:
- - Thu, 18 Sep 2025 09:04:36 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
etag:
- - '"0x8DDF692650BCB29"'
+ - '"0x8DF1A9886F3EAD9"'
last-modified:
- - Thu, 18 Sep 2025 09:04:37 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - vce3dGihkcU=
+ - TxeVX/Gll9c=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_7'
headers:
Accept:
- application/xml
@@ -1080,7 +1080,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1088,15 +1088,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:37 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
response:
body:
string: ''
@@ -1104,26 +1104,26 @@ interactions:
content-length:
- '0'
content-md5:
- - MkCfTLxExqfymIm9fRRP+g==
+ - fpY5g8HejIN8pEh2a+nPvg==
date:
- - Thu, 18 Sep 2025 09:04:38 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
etag:
- - '"0x8DDF69265A70E43"'
+ - '"0x8DF1A98877598F0"'
last-modified:
- - Thu, 18 Sep 2025 09:04:38 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - zBS81Pe5XCs=
+ - R02rz6ZNNEY=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_5'
headers:
Accept:
- application/xml
@@ -1134,7 +1134,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1142,15 +1142,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:38 GMT
+ - Fri, 25 Sep 2026 00:04:12 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
response:
body:
string: ''
@@ -1158,26 +1158,26 @@ interactions:
content-length:
- '0'
content-md5:
- - YvHfoHTcH+y2539JPKMHRw==
+ - 8VIxMUtGyMBSRHL/4f1dgA==
date:
- - Thu, 18 Sep 2025 09:04:38 GMT
+ - Fri, 25 Sep 2026 00:04:12 GMT
etag:
- - '"0x8DDF692664754C7"'
+ - '"0x8DF1A9887F73932"'
last-modified:
- - Thu, 18 Sep 2025 09:04:39 GMT
+ - Fri, 25 Sep 2026 00:04:12 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - tZ2J5D9JMlQ=
+ - tV/Arzas6bg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_3'
headers:
Accept:
- application/xml
@@ -1188,7 +1188,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1196,15 +1196,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:39 GMT
+ - Fri, 25 Sep 2026 00:04:12 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
response:
body:
string: ''
@@ -1212,26 +1212,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 12k9IzPedeb+H+LE+BwTOA==
+ - FqmYxqi+B9UUgUkk/DMOiw==
date:
- - Thu, 18 Sep 2025 09:04:40 GMT
+ - Fri, 25 Sep 2026 00:04:12 GMT
etag:
- - '"0x8DDF69266DECB96"'
+ - '"0x8DF1A9888777FE1"'
last-modified:
- - Thu, 18 Sep 2025 09:04:40 GMT
+ - Fri, 25 Sep 2026 00:04:13 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - +L0Pwqp4bcQ=
+ - QLT7+y44HMc=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_0'
headers:
Accept:
- application/xml
@@ -1242,7 +1242,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1250,15 +1250,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:40 GMT
+ - Fri, 25 Sep 2026 00:04:13 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
response:
body:
string: ''
@@ -1266,26 +1266,26 @@ interactions:
content-length:
- '0'
content-md5:
- - sUqNOb1eQlwHIMNckVPXPg==
+ - XbtDGjFHEIZZx793eGZPsA==
date:
- - Thu, 18 Sep 2025 09:04:41 GMT
+ - Fri, 25 Sep 2026 00:04:14 GMT
etag:
- - '"0x8DDF692677B939E"'
+ - '"0x8DF1A9888F725BC"'
last-modified:
- - Thu, 18 Sep 2025 09:04:41 GMT
+ - Fri, 25 Sep 2026 00:04:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - gTQ68mKIA7s=
+ - yy+lq3Ypr0Y=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_4'
headers:
Accept:
- application/xml
@@ -1296,7 +1296,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1304,15 +1304,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:42 GMT
+ - Fri, 25 Sep 2026 00:04:14 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
response:
body:
string: ''
@@ -1320,26 +1320,26 @@ interactions:
content-length:
- '0'
content-md5:
- - +YjkzJyA0LKFHmtciQvWFQ==
+ - Y+qUsq9BoUPXQX9kldKOVQ==
date:
- - Thu, 18 Sep 2025 09:04:42 GMT
+ - Fri, 25 Sep 2026 00:04:14 GMT
etag:
- - '"0x8DDF6926824A9D0"'
+ - '"0x8DF1A9889789EF6"'
last-modified:
- - Thu, 18 Sep 2025 09:04:42 GMT
+ - Fri, 25 Sep 2026 00:04:15 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - Cq9kojqZsDo=
+ - RJnkMwXMzY8=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_6'
headers:
Accept:
- application/xml
@@ -1350,7 +1350,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1358,15 +1358,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:43 GMT
+ - Fri, 25 Sep 2026 00:04:15 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
response:
body:
string: ''
@@ -1374,26 +1374,26 @@ interactions:
content-length:
- '0'
content-md5:
- - W8HiNitS2lkGz6qjH7CrZQ==
+ - vrzicRbCAIuEGm8/8nN7dA==
date:
- - Thu, 18 Sep 2025 09:04:43 GMT
+ - Fri, 25 Sep 2026 00:04:16 GMT
etag:
- - '"0x8DDF69268C51739"'
+ - '"0x8DF1A988A9868D1"'
last-modified:
- - Thu, 18 Sep 2025 09:04:43 GMT
+ - Fri, 25 Sep 2026 00:04:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - cyZRkvJp3kU=
+ - touPU5UtEHE=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_2'
headers:
Accept:
- application/xml
@@ -1404,7 +1404,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1412,15 +1412,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:44 GMT
+ - Fri, 25 Sep 2026 00:04:17 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
response:
body:
string: ''
@@ -1428,26 +1428,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 4WhpVWYJewUiPB/Y/me8Dw==
+ - x6YzJb9YrpMLY+4pP0INPA==
date:
- - Thu, 18 Sep 2025 09:04:45 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
etag:
- - '"0x8DDF692696DDFA0"'
+ - '"0x8DF1A988B191EE0"'
last-modified:
- - Thu, 18 Sep 2025 09:04:45 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - dwtOWtmdDw0=
+ - OT3Oy+bIcrg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_8'
headers:
Accept:
- application/xml
@@ -1458,7 +1458,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1466,15 +1466,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:45 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
response:
body:
string: ''
@@ -1482,26 +1482,26 @@ interactions:
content-length:
- '0'
content-md5:
- - ZATCeWkPFprrI77nB4jlog==
+ - 2/OZGEBlGHRrQo1E/WuQpw==
date:
- - Thu, 18 Sep 2025 09:04:46 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
etag:
- - '"0x8DDF6926A0A80BB"'
+ - '"0x8DF1A988B99A518"'
last-modified:
- - Thu, 18 Sep 2025 09:04:46 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - DoJ7ahFtYXI=
+ - vtGxw8LFs+A=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_1'
headers:
Accept:
- application/xml
@@ -1512,7 +1512,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1520,15 +1520,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:46 GMT
+ - Fri, 25 Sep 2026 00:04:19 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
response:
body:
string: ''
@@ -1536,26 +1536,26 @@ interactions:
content-length:
- '0'
content-md5:
- - j+DrkJK59KnMzrIuQL6f/A==
+ - cN1XKD1FzfAQDdREtSw/7w==
date:
- - Thu, 18 Sep 2025 09:04:46 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
etag:
- - '"0x8DDF6926AA65F65"'
+ - '"0x8DF1A988C195083"'
last-modified:
- - Thu, 18 Sep 2025 09:04:47 GMT
+ - Fri, 25 Sep 2026 00:04:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - hRklOkl80vM=
+ - sqaQm77ZwTk=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_9'
headers:
Accept:
- application/xml
@@ -1566,7 +1566,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1574,15 +1574,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:47 GMT
+ - Fri, 25 Sep 2026 00:04:19 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
response:
body:
string: ''
@@ -1590,26 +1590,26 @@ interactions:
content-length:
- '0'
content-md5:
- - wwDWQLvZbZoN0I3o6XBEpA==
+ - nDNirqTlng3V44RFowp5PA==
date:
- - Thu, 18 Sep 2025 09:04:47 GMT
+ - Fri, 25 Sep 2026 00:04:20 GMT
etag:
- - '"0x8DDF6926B4961F2"'
+ - '"0x8DF1A988C9C7731"'
last-modified:
- - Thu, 18 Sep 2025 09:04:48 GMT
+ - Fri, 25 Sep 2026 00:04:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - /JAQCoGMvIw=
+ - x1iE8wo13Z8=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_7'
headers:
Accept:
- application/xml
@@ -1620,7 +1620,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1628,15 +1628,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:48 GMT
+ - Fri, 25 Sep 2026 00:04:20 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
response:
body:
string: ''
@@ -1644,26 +1644,26 @@ interactions:
content-length:
- '0'
content-md5:
- - NPMm4IvOROmjNzvELlJ7bw==
+ - NOXHACzIcvk8kcldttK/MQ==
date:
- - Thu, 18 Sep 2025 09:04:48 GMT
+ - Fri, 25 Sep 2026 00:04:21 GMT
etag:
- - '"0x8DDF6926BE6EC6C"'
+ - '"0x8DF1A988D1DA425"'
last-modified:
- - Thu, 18 Sep 2025 09:04:49 GMT
+ - Fri, 25 Sep 2026 00:04:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - jUMbqh6UcWI=
+ - zwK6Y13dfg4=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_5'
headers:
Accept:
- application/xml
@@ -1674,7 +1674,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1682,15 +1682,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:49 GMT
+ - Fri, 25 Sep 2026 00:04:21 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
response:
body:
string: ''
@@ -1698,26 +1698,26 @@ interactions:
content-length:
- '0'
content-md5:
- - NMybN+t/RJ+B3CVzAMzBaQ==
+ - HpWc8xctKhZr8Ui60QuGjg==
date:
- - Thu, 18 Sep 2025 09:04:50 GMT
+ - Fri, 25 Sep 2026 00:04:21 GMT
etag:
- - '"0x8DDF6926C87A797"'
+ - '"0x8DF1A988D9E28A7"'
last-modified:
- - Thu, 18 Sep 2025 09:04:50 GMT
+ - Fri, 25 Sep 2026 00:04:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 9MoumtZkHx0=
+ - PRDRA808o/A=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_3'
headers:
Accept:
- application/xml
@@ -1728,7 +1728,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1736,15 +1736,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:50 GMT
+ - Fri, 25 Sep 2026 00:04:22 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
response:
body:
string: ''
@@ -1752,26 +1752,26 @@ interactions:
content-length:
- '0'
content-md5:
- - HZ5VvkfcPrB30qCGJtpzHA==
+ - phwTrnZMY9i06YYgrOQnig==
date:
- - Thu, 18 Sep 2025 09:04:50 GMT
+ - Fri, 25 Sep 2026 00:04:22 GMT
etag:
- - '"0x8DDF6926D22EAB5"'
+ - '"0x8DF1A988E201701"'
last-modified:
- - Thu, 18 Sep 2025 09:04:51 GMT
+ - Fri, 25 Sep 2026 00:04:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - EgmoJYY8OLg=
+ - A6WAX1xJMF4=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
Accept:
- application/xml
@@ -1782,7 +1782,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1790,15 +1790,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:51 GMT
+ - Fri, 25 Sep 2026 00:04:23 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
string: ''
@@ -1806,26 +1806,26 @@ interactions:
content-length:
- '0'
content-md5:
- - bv/3aBCYrXw59a/qg5U1mw==
+ - IttzcHmb0E6yCZslpuPw1A==
date:
- - Thu, 18 Sep 2025 09:04:51 GMT
+ - Fri, 25 Sep 2026 00:04:23 GMT
etag:
- - '"0x8DDF6926DC07520"'
+ - '"0x8DF1A988EA49BFB"'
last-modified:
- - Thu, 18 Sep 2025 09:04:52 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - a4CdFU7MVsc=
+ - iD7eDwRYg98=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_4'
headers:
Accept:
- application/xml
@@ -1836,7 +1836,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1844,15 +1844,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:52 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
response:
body:
string: ''
@@ -1860,26 +1860,26 @@ interactions:
content-length:
- '0'
content-md5:
- - R3KoM2kfOoD/NkAFRjFuqA==
+ - /HuiF61YVAUfVdKz18uP8Q==
date:
- - Thu, 18 Sep 2025 09:04:53 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
etag:
- - '"0x8DDF6926E5DD8F1"'
+ - '"0x8DF1A988F268A53"'
last-modified:
- - Thu, 18 Sep 2025 09:04:53 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 4BvDRRbd5UY=
+ - B4ifl3e94RY=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_6'
headers:
Accept:
- application/xml
@@ -1890,7 +1890,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1898,15 +1898,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:53 GMT
+ - Fri, 25 Sep 2026 00:04:25 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
response:
body:
string: ''
@@ -1914,26 +1914,26 @@ interactions:
content-length:
- '0'
content-md5:
- - morBADnfqCkwBXXZU3hA6A==
+ - 486OkvW8vp9u/9aEK8KnSw==
date:
- - Thu, 18 Sep 2025 09:04:53 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
etag:
- - '"0x8DDF6926EFCC139"'
+ - '"0x8DF1A988FA7B576"'
last-modified:
- - Thu, 18 Sep 2025 09:04:54 GMT
+ - Fri, 25 Sep 2026 00:04:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - mZL2dd4tizk=
+ - 9Zr09+dcPOg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_2'
headers:
Accept:
- application/xml
@@ -1944,7 +1944,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -1952,15 +1952,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:54 GMT
+ - Fri, 25 Sep 2026 00:04:25 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
response:
body:
string: ''
@@ -1968,26 +1968,26 @@ interactions:
content-length:
- '0'
content-md5:
- - jMy7yZooIbu+xco5y0PnWA==
+ - VFct9Mc6MBwDbT88fXarRA==
date:
- - Thu, 18 Sep 2025 09:04:54 GMT
+ - Fri, 25 Sep 2026 00:04:26 GMT
etag:
- - '"0x8DDF6926FA42B9B"'
+ - '"0x8DF1A98902DD4D4"'
last-modified:
- - Thu, 18 Sep 2025 09:04:55 GMT
+ - Fri, 25 Sep 2026 00:04:26 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - nb/pvfXZWnE=
+ - eiy1b5S5XiE=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_8'
headers:
Accept:
- application/xml
@@ -1998,7 +1998,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2006,15 +2006,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:55 GMT
+ - Fri, 25 Sep 2026 00:04:26 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
response:
body:
string: ''
@@ -2022,26 +2022,26 @@ interactions:
content-length:
- '0'
content-md5:
- - WWxxctNl0WEZ3Fkt0xSjXw==
+ - 13BG86AuGtf3vrzFRULiDA==
date:
- - Thu, 18 Sep 2025 09:04:55 GMT
+ - Fri, 25 Sep 2026 00:04:26 GMT
etag:
- - '"0x8DDF6927042ED29"'
+ - '"0x8DF1A9890ADFDA8"'
last-modified:
- - Thu, 18 Sep 2025 09:04:56 GMT
+ - Fri, 25 Sep 2026 00:04:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 5DbcjT0pNA4=
+ - /cDKZ7C0n3k=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_1'
headers:
Accept:
- application/xml
@@ -2052,7 +2052,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2060,15 +2060,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:56 GMT
+ - Fri, 25 Sep 2026 00:04:27 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
response:
body:
string: ''
@@ -2076,26 +2076,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 7SYtr6WWjvfHwEWZlFicyA==
+ - Ky86k6/sL9E/AduD5Dvghg==
date:
- - Thu, 18 Sep 2025 09:04:57 GMT
+ - Fri, 25 Sep 2026 00:04:28 GMT
etag:
- - '"0x8DDF69270E2E5E1"'
+ - '"0x8DF1A98912F3156"'
last-modified:
- - Thu, 18 Sep 2025 09:04:57 GMT
+ - Fri, 25 Sep 2026 00:04:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - b62C3WU4h48=
+ - 8bfrP8yo7aA=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_9'
headers:
Accept:
- application/xml
@@ -2106,7 +2106,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2114,15 +2114,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:57 GMT
+ - Fri, 25 Sep 2026 00:04:28 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
response:
body:
string: ''
@@ -2130,26 +2130,26 @@ interactions:
content-length:
- '0'
content-md5:
- - a0gskKctLUTyJ98stcb+zw==
+ - gonIw6Mm9y6Lwl0mS9zqyA==
date:
- - Thu, 18 Sep 2025 09:04:57 GMT
+ - Fri, 25 Sep 2026 00:04:29 GMT
etag:
- - '"0x8DDF69271809752"'
+ - '"0x8DF1A9891B1F6F6"'
last-modified:
- - Thu, 18 Sep 2025 09:04:58 GMT
+ - Fri, 25 Sep 2026 00:04:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - FiS37a3I6fA=
+ - hEn/V3hE8QY=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_7'
headers:
Accept:
- application/xml
@@ -2160,7 +2160,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2168,15 +2168,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:58 GMT
+ - Fri, 25 Sep 2026 00:04:29 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
response:
body:
string: ''
@@ -2184,26 +2184,26 @@ interactions:
content-length:
- '0'
content-md5:
- - WsaYffpQ9TM4slY4craDlw==
+ - QtsIKJZ1l9DJfk8UuCAH9w==
date:
- - Thu, 18 Sep 2025 09:04:59 GMT
+ - Fri, 25 Sep 2026 00:04:29 GMT
etag:
- - '"0x8DDF692721F58D2"'
+ - '"0x8DF1A9892343AB4"'
last-modified:
- - Thu, 18 Sep 2025 09:04:59 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - Z/e8TTLQJB4=
+ - jBPBxy+sUpc=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_5'
headers:
Accept:
- application/xml
@@ -2214,7 +2214,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2222,15 +2222,15 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:04:59 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
response:
body:
string: ''
@@ -2238,21 +2238,21 @@ interactions:
content-length:
- '0'
content-md5:
- - sOOZ8v6f8otceBtL552N9g==
+ - CvWiulprfZhTPzyafnVFlQ==
date:
- - Thu, 18 Sep 2025 09:05:00 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
etag:
- - '"0x8DDF69272BBD319"'
+ - '"0x8DF1A9892B58C78"'
last-modified:
- - Thu, 18 Sep 2025 09:05:00 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - Hn6JffogSmE=
+ - fgGqp79Nj2k=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -2277,37 +2277,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:00 GMT
+ - Fri, 25 Sep 2026 00:04:31 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container1/readme
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:9219fa6b-901e-002e-3f7b-28a3bf000000\nTime:2025-09-18T09:05:01.7929402Z"
+ specified blob already exists.\nRequestId:3314c445-f01e-004e-6081-4c4132000000\nTime:2026-09-25T00:04:31.7534341Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:01 GMT
+ - Fri, 25 Sep 2026 00:04:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_3'
headers:
Accept:
- application/xml
@@ -2318,7 +2318,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2326,37 +2326,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:01 GMT
+ - Fri, 25 Sep 2026 00:04:31 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:47bbd20a-c01e-007e-087b-2861ef000000\nTime:2025-09-18T09:05:02.8024082Z"
+ specified blob already exists.\nRequestId:9733079c-e01e-0030-7681-4cd175000000\nTime:2026-09-25T00:04:32.6044493Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:01 GMT
+ - Fri, 25 Sep 2026 00:04:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_0'
headers:
Accept:
- application/xml
@@ -2367,7 +2367,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2375,37 +2375,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:02 GMT
+ - Fri, 25 Sep 2026 00:04:32 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:7b09f6b3-f01e-00be-417b-2899d1000000\nTime:2025-09-18T09:05:03.8613651Z"
+ specified blob already exists.\nRequestId:48680677-201e-003f-1181-4ca719000000\nTime:2026-09-25T00:04:33.4490505Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:03 GMT
+ - Fri, 25 Sep 2026 00:04:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_4'
headers:
Accept:
- application/xml
@@ -2416,7 +2416,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2424,37 +2424,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:04 GMT
+ - Fri, 25 Sep 2026 00:04:33 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:de3e9c81-701e-0009-617b-28b47b000000\nTime:2025-09-18T09:05:04.9055333Z"
+ specified blob already exists.\nRequestId:c0124f6c-701e-0040-5b81-4c6882000000\nTime:2026-09-25T00:04:34.2813834Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:03 GMT
+ - Fri, 25 Sep 2026 00:04:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_6'
headers:
Accept:
- application/xml
@@ -2465,7 +2465,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2473,37 +2473,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:05 GMT
+ - Fri, 25 Sep 2026 00:04:34 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:e80be6d4-c01e-0023-347b-286b6b000000\nTime:2025-09-18T09:05:05.9434015Z"
+ specified blob already exists.\nRequestId:4b264fc5-001e-0028-1f81-4c0e12000000\nTime:2026-09-25T00:04:35.1376739Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:05 GMT
+ - Fri, 25 Sep 2026 00:04:35 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_2'
headers:
Accept:
- application/xml
@@ -2514,7 +2514,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2522,37 +2522,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:06 GMT
+ - Fri, 25 Sep 2026 00:04:35 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:e735d749-801e-00d6-237b-28ff41000000\nTime:2025-09-18T09:05:06.9970065Z"
+ specified blob already exists.\nRequestId:04b4c4a4-c01e-0018-5281-4cb0dd000000\nTime:2026-09-25T00:04:35.9741673Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:06 GMT
+ - Fri, 25 Sep 2026 00:04:35 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_8'
headers:
Accept:
- application/xml
@@ -2563,7 +2563,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2571,37 +2571,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:07 GMT
+ - Fri, 25 Sep 2026 00:04:36 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:b1c97eca-401e-0070-3d7b-28485f000000\nTime:2025-09-18T09:05:08.0151756Z"
+ specified blob already exists.\nRequestId:6340bafa-901e-0083-4c81-4c71d8000000\nTime:2026-09-25T00:04:36.8571710Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:07 GMT
+ - Fri, 25 Sep 2026 00:04:36 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_1'
headers:
Accept:
- application/xml
@@ -2612,7 +2612,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2620,37 +2620,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:08 GMT
+ - Fri, 25 Sep 2026 00:04:36 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:485c345c-f01e-0028-607b-289000000000\nTime:2025-09-18T09:05:09.0607671Z"
+ specified blob already exists.\nRequestId:db47e6f5-701e-0022-6781-4caaa5000000\nTime:2026-09-25T00:04:37.6782742Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:08 GMT
+ - Fri, 25 Sep 2026 00:04:37 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_9'
headers:
Accept:
- application/xml
@@ -2661,7 +2661,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2669,37 +2669,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:09 GMT
+ - Fri, 25 Sep 2026 00:04:37 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:944a4249-401e-00d9-277b-28892d000000\nTime:2025-09-18T09:05:10.1016338Z"
+ specified blob already exists.\nRequestId:06653034-c01e-007a-2481-4c72fa000000\nTime:2026-09-25T00:04:38.5264874Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:09 GMT
+ - Fri, 25 Sep 2026 00:04:38 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_7'
headers:
Accept:
- application/xml
@@ -2710,7 +2710,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2718,37 +2718,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:10 GMT
+ - Fri, 25 Sep 2026 00:04:38 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:95a01c64-a01e-00c1-037b-28564a000000\nTime:2025-09-18T09:05:11.1250901Z"
+ specified blob already exists.\nRequestId:9d5c8de7-201e-005d-3c81-4c653e000000\nTime:2026-09-25T00:04:39.3581993Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:10 GMT
+ - Fri, 25 Sep 2026 00:04:38 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_5'
headers:
Accept:
- application/xml
@@ -2759,7 +2759,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2767,37 +2767,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:11 GMT
+ - Fri, 25 Sep 2026 00:04:39 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:50590b23-101e-001f-297b-2842ac000000\nTime:2025-09-18T09:05:12.1505363Z"
+ specified blob already exists.\nRequestId:5ccbd21d-601e-0001-2781-4c3066000000\nTime:2026-09-25T00:04:40.2037130Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:11 GMT
+ - Fri, 25 Sep 2026 00:04:40 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_3'
headers:
Accept:
- application/xml
@@ -2808,7 +2808,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2816,37 +2816,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:12 GMT
+ - Fri, 25 Sep 2026 00:04:40 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:a08caa4f-901e-00ca-417b-28ad21000000\nTime:2025-09-18T09:05:13.1705727Z"
+ specified blob already exists.\nRequestId:0179cb5f-401e-0016-5781-4c996d000000\nTime:2026-09-25T00:04:41.0709476Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:12 GMT
+ - Fri, 25 Sep 2026 00:04:40 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_0'
headers:
Accept:
- application/xml
@@ -2857,7 +2857,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2865,37 +2865,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:13 GMT
+ - Fri, 25 Sep 2026 00:04:41 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:f32fb12f-201e-0092-257b-28757e000000\nTime:2025-09-18T09:05:14.1934400Z"
+ specified blob already exists.\nRequestId:9dfedeec-101e-0046-5981-4c5b3d000000\nTime:2026-09-25T00:04:41.9239719Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:13 GMT
+ - Fri, 25 Sep 2026 00:04:41 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_4'
headers:
Accept:
- application/xml
@@ -2906,7 +2906,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2914,37 +2914,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:14 GMT
+ - Fri, 25 Sep 2026 00:04:42 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:944a55df-401e-00d9-537b-28892d000000\nTime:2025-09-18T09:05:15.2178262Z"
+ specified blob already exists.\nRequestId:b2056022-301e-0033-5c81-4c3011000000\nTime:2026-09-25T00:04:42.7806134Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:14 GMT
+ - Fri, 25 Sep 2026 00:04:42 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_6'
headers:
Accept:
- application/xml
@@ -2955,7 +2955,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2963,37 +2963,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:15 GMT
+ - Fri, 25 Sep 2026 00:04:42 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:c6e5659e-201e-0004-0b7b-287caf000000\nTime:2025-09-18T09:05:16.2369052Z"
+ specified blob already exists.\nRequestId:e7f1c0c8-801e-0019-4881-4cef01000000\nTime:2026-09-25T00:04:43.6349169Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:15 GMT
+ - Fri, 25 Sep 2026 00:04:43 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_2'
headers:
Accept:
- application/xml
@@ -3004,7 +3004,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3012,37 +3012,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:16 GMT
+ - Fri, 25 Sep 2026 00:04:43 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:a08cbaa0-901e-00ca-7c7b-28ad21000000\nTime:2025-09-18T09:05:17.2845637Z"
+ specified blob already exists.\nRequestId:c05f1fe7-401e-0064-5581-4c9e22000000\nTime:2026-09-25T00:04:44.4713482Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:16 GMT
+ - Fri, 25 Sep 2026 00:04:43 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_8'
headers:
Accept:
- application/xml
@@ -3053,7 +3053,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3061,37 +3061,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:17 GMT
+ - Fri, 25 Sep 2026 00:04:44 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:c6e56fd8-201e-0004-657b-287caf000000\nTime:2025-09-18T09:05:18.3433487Z"
+ specified blob already exists.\nRequestId:52aaa958-c01e-006a-4081-4cb792000000\nTime:2026-09-25T00:04:45.3355259Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:17 GMT
+ - Fri, 25 Sep 2026 00:04:44 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_1'
headers:
Accept:
- application/xml
@@ -3102,7 +3102,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3110,37 +3110,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:18 GMT
+ - Fri, 25 Sep 2026 00:04:45 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:b1578f3d-701e-00a0-137b-287509000000\nTime:2025-09-18T09:05:19.4905174Z"
+ specified blob already exists.\nRequestId:0c848edf-d01e-0066-2f81-4c209a000000\nTime:2026-09-25T00:04:46.1855529Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:18 GMT
+ - Fri, 25 Sep 2026 00:04:45 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_9'
headers:
Accept:
- application/xml
@@ -3151,7 +3151,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3159,37 +3159,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:19 GMT
+ - Fri, 25 Sep 2026 00:04:46 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:33495b2e-001e-002c-0c7b-281d07000000\nTime:2025-09-18T09:05:20.4812866Z"
+ specified blob already exists.\nRequestId:d20b2753-d01e-003b-1781-4c2a1e000000\nTime:2026-09-25T00:04:47.0319544Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:19 GMT
+ - Fri, 25 Sep 2026 00:04:46 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_7'
headers:
Accept:
- application/xml
@@ -3200,7 +3200,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3208,37 +3208,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:20 GMT
+ - Fri, 25 Sep 2026 00:04:47 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:5d401c51-201e-0076-757b-287be0000000\nTime:2025-09-18T09:05:21.4766285Z"
+ specified blob already exists.\nRequestId:f2bbf911-301e-001c-7881-4c3dda000000\nTime:2026-09-25T00:04:47.8831646Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:21 GMT
+ - Fri, 25 Sep 2026 00:04:46 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_5'
headers:
Accept:
- application/xml
@@ -3249,7 +3249,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3257,37 +3257,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:21 GMT
+ - Fri, 25 Sep 2026 00:04:48 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:5831afaf-f01e-0065-0d7b-285fec000000\nTime:2025-09-18T09:05:22.4536324Z"
+ specified blob already exists.\nRequestId:c0ebb96d-d01e-0049-4581-4c2d51000000\nTime:2026-09-25T00:04:48.7452310Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:21 GMT
+ - Fri, 25 Sep 2026 00:04:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_3'
headers:
Accept:
- application/xml
@@ -3298,7 +3298,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3306,37 +3306,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:22 GMT
+ - Fri, 25 Sep 2026 00:04:48 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:630c0777-501e-00ea-697b-28d686000000\nTime:2025-09-18T09:05:23.4414459Z"
+ specified blob already exists.\nRequestId:b769a90d-001e-005a-3381-4c095d000000\nTime:2026-09-25T00:04:49.5732863Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:23 GMT
+ - Fri, 25 Sep 2026 00:04:48 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_0'
headers:
Accept:
- application/xml
@@ -3347,7 +3347,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3355,37 +3355,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:23 GMT
+ - Fri, 25 Sep 2026 00:04:49 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:1231b211-d01e-00e4-287b-28ff36000000\nTime:2025-09-18T09:05:24.4878117Z"
+ specified blob already exists.\nRequestId:b769ab28-001e-005a-1481-4c095d000000\nTime:2026-09-25T00:04:50.4122623Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:24 GMT
+ - Fri, 25 Sep 2026 00:04:49 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_4'
headers:
Accept:
- application/xml
@@ -3396,7 +3396,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3404,37 +3404,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:24 GMT
+ - Fri, 25 Sep 2026 00:04:50 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:7c6ec466-501e-0098-3e7b-28d1c9000000\nTime:2025-09-18T09:05:25.4928430Z"
+ specified blob already exists.\nRequestId:e6aef053-501e-0025-1a81-4cc6c6000000\nTime:2026-09-25T00:04:51.3004435Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:25 GMT
+ - Fri, 25 Sep 2026 00:04:50 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_6'
headers:
Accept:
- application/xml
@@ -3445,7 +3445,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3453,37 +3453,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:25 GMT
+ - Fri, 25 Sep 2026 00:04:51 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:3b5c6a2b-b01e-0016-4e7b-28077f000000\nTime:2025-09-18T09:05:26.4801094Z"
+ specified blob already exists.\nRequestId:a3e44a37-201e-002f-3581-4c6271000000\nTime:2026-09-25T00:04:52.1359335Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:26 GMT
+ - Fri, 25 Sep 2026 00:04:52 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_2'
headers:
Accept:
- application/xml
@@ -3494,7 +3494,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3502,37 +3502,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:26 GMT
+ - Fri, 25 Sep 2026 00:04:52 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:67aec7ec-001e-0003-537b-2810cc000000\nTime:2025-09-18T09:05:27.5156069Z"
+ specified blob already exists.\nRequestId:b04f7b63-901e-0067-3481-4c7f46000000\nTime:2026-09-25T00:04:52.9946001Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:27 GMT
+ - Fri, 25 Sep 2026 00:04:52 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_8'
headers:
Accept:
- application/xml
@@ -3543,7 +3543,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3551,37 +3551,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:27 GMT
+ - Fri, 25 Sep 2026 00:04:53 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:26304fcf-701e-0026-247b-28b9b0000000\nTime:2025-09-18T09:05:28.5020085Z"
+ specified blob already exists.\nRequestId:7a5b0ad6-301e-007e-5681-4cfffd000000\nTime:2026-09-25T00:04:53.8825861Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:28 GMT
+ - Fri, 25 Sep 2026 00:04:53 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_1'
headers:
Accept:
- application/xml
@@ -3592,7 +3592,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3600,37 +3600,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:28 GMT
+ - Fri, 25 Sep 2026 00:04:53 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:08b99522-b01e-00dd-777b-28042a000000\nTime:2025-09-18T09:05:29.5204884Z"
+ specified blob already exists.\nRequestId:709185f7-d01e-0076-0981-4ce5f2000000\nTime:2026-09-25T00:04:54.7078532Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:29 GMT
+ - Fri, 25 Sep 2026 00:04:54 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_9'
headers:
Accept:
- application/xml
@@ -3641,7 +3641,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3649,37 +3649,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:29 GMT
+ - Fri, 25 Sep 2026 00:04:54 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:69ec3f43-101e-00c4-197b-288491000000\nTime:2025-09-18T09:05:30.5039810Z"
+ specified blob already exists.\nRequestId:7b5e0f7a-b01e-005f-7681-4cdb86000000\nTime:2026-09-25T00:04:55.4015321Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:30 GMT
+ - Fri, 25 Sep 2026 00:04:54 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_7'
headers:
Accept:
- application/xml
@@ -3690,7 +3690,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3698,37 +3698,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:30 GMT
+ - Fri, 25 Sep 2026 00:04:55 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:a9872ff7-901e-0087-747b-2862cd000000\nTime:2025-09-18T09:05:31.5304631Z"
+ specified blob already exists.\nRequestId:2082065a-701e-000d-5e81-4ca76e000000\nTime:2026-09-25T00:04:56.0980704Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:30 GMT
+ - Fri, 25 Sep 2026 00:04:55 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_5'
headers:
Accept:
- application/xml
@@ -3739,7 +3739,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3747,37 +3747,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:31 GMT
+ - Fri, 25 Sep 2026 00:04:56 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:82af2c3b-801e-0022-427b-2834b7000000\nTime:2025-09-18T09:05:32.7787882Z"
+ specified blob already exists.\nRequestId:52aab966-c01e-006a-4381-4cb792000000\nTime:2026-09-25T00:04:56.7890826Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:32 GMT
+ - Fri, 25 Sep 2026 00:04:56 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_3'
headers:
Accept:
- application/xml
@@ -3788,7 +3788,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3796,37 +3796,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:32 GMT
+ - Fri, 25 Sep 2026 00:04:56 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:a63dadd4-a01e-0057-0c7b-285f9b000000\nTime:2025-09-18T09:05:33.8195670Z"
+ specified blob already exists.\nRequestId:973359a2-e01e-0030-1781-4cd175000000\nTime:2026-09-25T00:04:57.4886496Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:33 GMT
+ - Fri, 25 Sep 2026 00:04:56 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
Accept:
- application/xml
@@ -3837,7 +3837,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3845,37 +3845,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:33 GMT
+ - Fri, 25 Sep 2026 00:04:57 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:a45b4e1e-401e-00bb-057b-284b0a000000\nTime:2025-09-18T09:05:34.8794454Z"
+ specified blob already exists.\nRequestId:eebe962b-201e-0072-6e81-4c68f5000000\nTime:2026-09-25T00:04:58.1965404Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:34 GMT
+ - Fri, 25 Sep 2026 00:04:58 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_4'
headers:
Accept:
- application/xml
@@ -3886,7 +3886,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3894,37 +3894,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:35 GMT
+ - Fri, 25 Sep 2026 00:04:58 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:853d731c-d01e-00cb-537b-28f2fd000000\nTime:2025-09-18T09:05:35.8729532Z"
+ specified blob already exists.\nRequestId:8c87a3b8-401e-004b-4181-4c93e9000000\nTime:2026-09-25T00:04:58.8941715Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:35 GMT
+ - Fri, 25 Sep 2026 00:04:58 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_6'
headers:
Accept:
- application/xml
@@ -3935,7 +3935,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3943,37 +3943,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:36 GMT
+ - Fri, 25 Sep 2026 00:04:59 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:1d6573be-f01e-0038-117b-285568000000\nTime:2025-09-18T09:05:36.8608358Z"
+ specified blob already exists.\nRequestId:5db3ddda-601e-0063-1481-4cf241000000\nTime:2026-09-25T00:04:59.7264203Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:36 GMT
+ - Fri, 25 Sep 2026 00:04:58 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_2'
headers:
Accept:
- application/xml
@@ -3984,7 +3984,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3992,37 +3992,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:37 GMT
+ - Fri, 25 Sep 2026 00:04:59 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:2c1e5045-f01e-005a-797b-28974f000000\nTime:2025-09-18T09:05:37.9091882Z"
+ specified blob already exists.\nRequestId:e869559e-601e-005c-0581-4c3ae2000000\nTime:2026-09-25T00:05:00.4238280Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:37 GMT
+ - Fri, 25 Sep 2026 00:05:00 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_8'
headers:
Accept:
- application/xml
@@ -4033,7 +4033,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4041,37 +4041,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:38 GMT
+ - Fri, 25 Sep 2026 00:05:00 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:07611e8a-c01e-009a-217b-286f71000000\nTime:2025-09-18T09:05:38.9179840Z"
+ specified blob already exists.\nRequestId:e3d0476b-a01e-000e-6181-4c460a000000\nTime:2026-09-25T00:05:01.1148932Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:38 GMT
+ - Fri, 25 Sep 2026 00:05:00 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_1'
headers:
Accept:
- application/xml
@@ -4082,7 +4082,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4090,37 +4090,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:39 GMT
+ - Fri, 25 Sep 2026 00:05:01 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:efea0cd0-c01e-00a5-617b-28a7d2000000\nTime:2025-09-18T09:05:39.9574105Z"
+ specified blob already exists.\nRequestId:52aac346-c01e-006a-0181-4cb792000000\nTime:2026-09-25T00:05:01.7939000Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:39 GMT
+ - Fri, 25 Sep 2026 00:05:01 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_9'
headers:
Accept:
- application/xml
@@ -4131,7 +4131,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4139,37 +4139,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:40 GMT
+ - Fri, 25 Sep 2026 00:05:01 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:181d7984-601e-0058-5f7b-2829f7000000\nTime:2025-09-18T09:05:40.9669650Z"
+ specified blob already exists.\nRequestId:fe4fd74b-501e-001a-1881-4c0e65000000\nTime:2026-09-25T00:05:02.4770845Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:40 GMT
+ - Fri, 25 Sep 2026 00:05:01 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_7'
headers:
Accept:
- application/xml
@@ -4180,7 +4180,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4188,37 +4188,37 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:41 GMT
+ - Fri, 25 Sep 2026 00:05:02 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:40966ec4-b01e-0064-7f7b-280030000000\nTime:2025-09-18T09:05:41.9703540Z"
+ specified blob already exists.\nRequestId:17e53d73-401e-005b-0a81-4c5681000000\nTime:2026-09-25T00:05:03.1786181Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:41 GMT
+ - Fri, 25 Sep 2026 00:05:03 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_5'
headers:
Accept:
- application/xml
@@ -4229,7 +4229,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4237,32 +4237,32 @@ interactions:
ParameterSetName:
- -s -d --max-connections --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:42 GMT
+ - Fri, 25 Sep 2026 00:05:03 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
response:
body:
string: "\uFEFFBlobAlreadyExistsThe
- specified blob already exists.\nRequestId:6a2842f8-501e-0088-217b-2814a1000000\nTime:2025-09-18T09:05:42.9515629Z"
+ specified blob already exists.\nRequestId:503c283c-101e-000b-0481-4c94d1000000\nTime:2026-09-25T00:05:03.8661344Z"
headers:
content-length:
- '218'
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:05:42 GMT
+ - Fri, 25 Sep 2026 00:05:02 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- BlobAlreadyExists
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 409
message: The specified blob already exists.
@@ -4285,13 +4285,13 @@ interactions:
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:43 GMT
+ - Fri, 25 Sep 2026 00:05:04 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container1/readme
response:
@@ -4303,11 +4303,11 @@ interactions:
content-md5:
- sYGKK8OX+WLKH+2bAe4tSQ==
date:
- - Thu, 18 Sep 2025 09:05:43 GMT
+ - Fri, 25 Sep 2026 00:05:04 GMT
etag:
- - '"0x8DDF6928C9CBE3B"'
+ - '"0x8DF1A98A6F513E4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:44 GMT
+ - Fri, 25 Sep 2026 00:05:04 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
@@ -4315,12 +4315,12 @@ interactions:
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_3'
headers:
Accept:
- application/xml
@@ -4331,21 +4331,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:44 GMT
+ - Fri, 25 Sep 2026 00:05:04 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
response:
body:
string: ''
@@ -4353,26 +4353,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - zGQZoDWt8Y5dJESc8TB0Mg==
date:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:05 GMT
etag:
- - '"0x8DDF6928D32D70B"'
+ - '"0x8DF1A98A7602F3A"'
last-modified:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:05 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - eNCO1vhLk5g=
+ - 9ke1C+p2IX8=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_0'
headers:
Accept:
- application/xml
@@ -4383,21 +4383,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:05 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
response:
body:
string: ''
@@ -4405,26 +4405,26 @@ interactions:
content-length:
- '0'
content-md5:
- - lIufFEDWG6WiNe7Vy5LCzw==
+ - 71w8dBoGUSSVbamKcO1lFw==
date:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:05 GMT
etag:
- - '"0x8DDF6928DCBABD6"'
+ - '"0x8DF1A98A7CA7A9D"'
last-modified:
- - Thu, 18 Sep 2025 09:05:46 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - AVm75jC7/ec=
+ - fdzrW7Jnkv4=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_4'
headers:
Accept:
- application/xml
@@ -4435,21 +4435,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:46 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
response:
body:
string: ''
@@ -4457,26 +4457,26 @@ interactions:
content-length:
- '0'
content-md5:
- - Xr/A/PPBjAvfBnZM6eDygw==
+ - pGxnukS6Fz7NjCuHvHJSOQ==
date:
- - Thu, 18 Sep 2025 09:05:46 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
etag:
- - '"0x8DDF6928E639742"'
+ - '"0x8DF1A98A835172A"'
last-modified:
- - Thu, 18 Sep 2025 09:05:47 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - isLltmiqTmY=
+ - 8mqqw8GC8Dc=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_6'
headers:
Accept:
- application/xml
@@ -4487,21 +4487,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:47 GMT
+ - Fri, 25 Sep 2026 00:05:07 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
response:
body:
string: ''
@@ -4509,26 +4509,26 @@ interactions:
content-length:
- '0'
content-md5:
- - QijJ1Y0HkLHaWhK6JWu6Yg==
+ - wxdWezoDBTifLE6AYPV4fw==
date:
- - Thu, 18 Sep 2025 09:05:47 GMT
+ - Fri, 25 Sep 2026 00:05:07 GMT
etag:
- - '"0x8DDF6928EFB82B1"'
+ - '"0x8DF1A98A89EC6C8"'
last-modified:
- - Thu, 18 Sep 2025 09:05:48 GMT
+ - Fri, 25 Sep 2026 00:05:07 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 80vQhqBaIBk=
+ - AHjBo1FjLck=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_2'
headers:
Accept:
- application/xml
@@ -4539,21 +4539,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:48 GMT
+ - Fri, 25 Sep 2026 00:05:07 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
response:
body:
string: ''
@@ -4561,26 +4561,26 @@ interactions:
content-length:
- '0'
content-md5:
- - vbz+Yk+D6XrKvX4okS2Gag==
+ - sd0gDAybdZBuWZ2am5ULCQ==
date:
- - Thu, 18 Sep 2025 09:05:49 GMT
+ - Fri, 25 Sep 2026 00:05:08 GMT
etag:
- - '"0x8DDF6928F9B7B7D"'
+ - '"0x8DF1A98A9089CDC"'
last-modified:
- - Thu, 18 Sep 2025 09:05:49 GMT
+ - Fri, 25 Sep 2026 00:05:08 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 92bPTouu8VE=
+ - j86AOyKGTwA=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_8'
headers:
Accept:
- application/xml
@@ -4591,21 +4591,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:49 GMT
+ - Fri, 25 Sep 2026 00:05:08 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
response:
body:
string: ''
@@ -4613,26 +4613,26 @@ interactions:
content-length:
- '0'
content-md5:
- - qyjPb9RRf+qh1mpxe/Zaxw==
+ - Qe2yDZak0qtkDUBcxAFmLQ==
date:
- - Thu, 18 Sep 2025 09:05:49 GMT
+ - Fri, 25 Sep 2026 00:05:08 GMT
etag:
- - '"0x8DDF692903622F3"'
+ - '"0x8DF1A98A988B6BE"'
last-modified:
- - Thu, 18 Sep 2025 09:05:50 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - ju/6fkNeny4=
+ - CCL/MwaLjlg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_1'
headers:
Accept:
- application/xml
@@ -4643,21 +4643,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:50 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
response:
body:
string: ''
@@ -4665,26 +4665,26 @@ interactions:
content-length:
- '0'
content-md5:
- - wXEJFzIgI33TKjbAlix3iw==
+ - DnLBQRNtFnclTyJXfyKqnA==
date:
- - Thu, 18 Sep 2025 09:05:50 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
etag:
- - '"0x8DDF69290CCFE23"'
+ - '"0x8DF1A98A9F3622D"'
last-modified:
- - Thu, 18 Sep 2025 09:05:51 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - BXSkLhtPLK8=
+ - BFXea3qX/IE=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_9'
headers:
Accept:
- application/xml
@@ -4695,21 +4695,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:51 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
response:
body:
string: ''
@@ -4717,26 +4717,26 @@ interactions:
content-length:
- '0'
content-md5:
- - NzN/gbDos0zQ+5NCHOgUcg==
+ - LZvKP6Iz3MAPrql/iSMbxw==
date:
- - Thu, 18 Sep 2025 09:05:51 GMT
+ - Fri, 25 Sep 2026 00:05:10 GMT
etag:
- - '"0x8DDF692917000B0"'
+ - '"0x8DF1A98AA601E2F"'
last-modified:
- - Thu, 18 Sep 2025 09:05:52 GMT
+ - Fri, 25 Sep 2026 00:05:10 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - fP2RHtO/QtA=
+ - cavKA8574Cc=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_7'
headers:
Accept:
- application/xml
@@ -4747,21 +4747,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:52 GMT
+ - Fri, 25 Sep 2026 00:05:10 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
response:
body:
string: ''
@@ -4769,26 +4769,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 7GVacxDUKYkMT8VjT+tTgQ==
+ - pmShc94YBcMpNtkfJ6TS6A==
date:
- - Thu, 18 Sep 2025 09:05:52 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
etag:
- - '"0x8DDF692920702D0"'
+ - '"0x8DF1A98AACADDF8"'
last-modified:
- - Thu, 18 Sep 2025 09:05:53 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - DS6avkynjz4=
+ - efH0k5mTQ7Y=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_5'
headers:
Accept:
- application/xml
@@ -4799,21 +4799,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:53 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
response:
body:
string: ''
@@ -4821,26 +4821,26 @@ interactions:
content-length:
- '0'
content-md5:
- - o8CI3RsPcRLdlmTyY8+r6g==
+ - 09mN8BZH+J3xKBIdhMTn2A==
date:
- - Thu, 18 Sep 2025 09:05:53 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
etag:
- - '"0x8DDF69292A135A6"'
+ - '"0x8DF1A98AB35EC64"'
last-modified:
- - Thu, 18 Sep 2025 09:05:54 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - dKevjoRX4UE=
+ - i+Of8wlynkg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_3'
headers:
Accept:
- application/xml
@@ -4851,21 +4851,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:54 GMT
+ - Fri, 25 Sep 2026 00:05:12 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
response:
body:
string: ''
@@ -4873,26 +4873,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 9b/sO4zifnv0UaZvaocIvw==
+ - 8A3Po3vddYDGBGfja7/XQw==
date:
- - Thu, 18 Sep 2025 09:05:54 GMT
+ - Fri, 25 Sep 2026 00:05:12 GMT
etag:
- - '"0x8DDF692933BB64B"'
+ - '"0x8DF1A98ABA176AA"'
last-modified:
- - Thu, 18 Sep 2025 09:05:55 GMT
+ - Fri, 25 Sep 2026 00:05:12 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - ueqovENVQI0=
+ - yPvqV9WoVo8=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_0'
headers:
Accept:
- application/xml
@@ -4903,21 +4903,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:55 GMT
+ - Fri, 25 Sep 2026 00:05:12 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
response:
body:
string: ''
@@ -4925,26 +4925,26 @@ interactions:
content-length:
- '0'
content-md5:
- - n0rDSbIqToxjMieFptvIGQ==
+ - UkUA0/FHbUXIe+47c6Dj9Q==
date:
- - Thu, 18 Sep 2025 09:05:56 GMT
+ - Fri, 25 Sep 2026 00:05:13 GMT
etag:
- - '"0x8DDF69293D30632"'
+ - '"0x8DF1A98AC0B4D18"'
last-modified:
- - Thu, 18 Sep 2025 09:05:56 GMT
+ - Fri, 25 Sep 2026 00:05:13 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - wGOdjIulLvI=
+ - Q2C0B4255Q4=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_4'
headers:
Accept:
- application/xml
@@ -4955,21 +4955,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:56 GMT
+ - Fri, 25 Sep 2026 00:05:13 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
response:
body:
string: ''
@@ -4977,26 +4977,26 @@ interactions:
content-length:
- '0'
content-md5:
- - DYolaEf0RsVC992imxxZRw==
+ - 9zWE7vtoJnOJHv6tUmqfwQ==
date:
- - Thu, 18 Sep 2025 09:05:56 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
etag:
- - '"0x8DDF6929466FE78"'
+ - '"0x8DF1A98AC8CC667"'
last-modified:
- - Thu, 18 Sep 2025 09:05:57 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - S/jD3NO0nXM=
+ - zNb1n/5ch8c=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_6'
headers:
Accept:
- application/xml
@@ -5007,21 +5007,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:57 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
response:
body:
string: ''
@@ -5029,26 +5029,26 @@ interactions:
content-length:
- '0'
content-md5:
- - i+ji99hYpAoJqdy08+A6Wg==
+ - Nkl8ajHVjxKl9UmKy7TaZA==
date:
- - Thu, 18 Sep 2025 09:05:58 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
etag:
- - '"0x8DDF69295002108"'
+ - '"0x8DF1A98ACFB3CC7"'
last-modified:
- - Thu, 18 Sep 2025 09:05:58 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - MnH27BtE8ww=
+ - PsSe/269Wjk=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_2'
headers:
Accept:
- application/xml
@@ -5059,21 +5059,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:58 GMT
+ - Fri, 25 Sep 2026 00:05:15 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
response:
body:
string: ''
@@ -5081,26 +5081,26 @@ interactions:
content-length:
- '0'
content-md5:
- - mF4KjAXjgSo1MW7Yp6kyFA==
+ - 9nT2gYpljB8wufj8Np3SCg==
date:
- - Thu, 18 Sep 2025 09:05:58 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
etag:
- - '"0x8DDF692959F5750"'
+ - '"0x8DF1A98AD644FAA"'
last-modified:
- - Thu, 18 Sep 2025 09:05:59 GMT
+ - Fri, 25 Sep 2026 00:05:15 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - NlzpJDCwIkQ=
+ - sXLfZx1YOPA=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_8'
headers:
Accept:
- application/xml
@@ -5111,21 +5111,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:05:59 GMT
+ - Fri, 25 Sep 2026 00:05:15 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
response:
body:
string: ''
@@ -5133,26 +5133,26 @@ interactions:
content-length:
- '0'
content-md5:
- - JxT6YyZzPZCJhVE6ZQkQaA==
+ - eRydkbCQ5SJKqFIWYL7VqA==
date:
- - Thu, 18 Sep 2025 09:05:59 GMT
+ - Fri, 25 Sep 2026 00:05:15 GMT
etag:
- - '"0x8DDF69296363283"'
+ - '"0x8DF1A98ADCDC775"'
last-modified:
- - Thu, 18 Sep 2025 09:06:00 GMT
+ - Fri, 25 Sep 2026 00:05:16 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - T9XcFPhATDs=
+ - Np6gbzlV+ag=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_1'
headers:
Accept:
- application/xml
@@ -5163,21 +5163,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:00 GMT
+ - Fri, 25 Sep 2026 00:05:16 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
response:
body:
string: ''
@@ -5185,26 +5185,26 @@ interactions:
content-length:
- '0'
content-md5:
- - pynwCV43Rcrth0ZFpJjl8A==
+ - eRVeHTq6T6dxb0zP9rq+fw==
date:
- - Thu, 18 Sep 2025 09:06:00 GMT
+ - Fri, 25 Sep 2026 00:05:16 GMT
etag:
- - '"0x8DDF69296D2ACBA"'
+ - '"0x8DF1A98AE3A835B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:01 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - xE6CRKBR/7o=
+ - OumBN0VJi3E=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_9'
headers:
Accept:
- application/xml
@@ -5215,21 +5215,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:01 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
response:
body:
string: ''
@@ -5237,26 +5237,26 @@ interactions:
content-length:
- '0'
content-md5:
- - frgRHx8gFlDTsguZeuIKDQ==
+ - bJ+4nl0DQc5Lvg891+rFxw==
date:
- - Thu, 18 Sep 2025 09:06:01 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
etag:
- - '"0x8DDF692976DA204"'
+ - '"0x8DF1A98AEA58BF5"'
last-modified:
- - Thu, 18 Sep 2025 09:06:02 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - vce3dGihkcU=
+ - TxeVX/Gll9c=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_7'
headers:
Accept:
- application/xml
@@ -5267,21 +5267,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:02 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
response:
body:
string: ''
@@ -5289,26 +5289,26 @@ interactions:
content-length:
- '0'
content-md5:
- - MkCfTLxExqfymIm9fRRP+g==
+ - fpY5g8HejIN8pEh2a+nPvg==
date:
- - Thu, 18 Sep 2025 09:06:02 GMT
+ - Fri, 25 Sep 2026 00:05:18 GMT
etag:
- - '"0x8DDF6929807871A"'
+ - '"0x8DF1A98AF0F532C"'
last-modified:
- - Thu, 18 Sep 2025 09:06:03 GMT
+ - Fri, 25 Sep 2026 00:05:18 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - zBS81Pe5XCs=
+ - R02rz6ZNNEY=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_5'
headers:
Accept:
- application/xml
@@ -5319,21 +5319,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:03 GMT
+ - Fri, 25 Sep 2026 00:05:18 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
response:
body:
string: ''
@@ -5341,26 +5341,26 @@ interactions:
content-length:
- '0'
content-md5:
- - YvHfoHTcH+y2539JPKMHRw==
+ - 8VIxMUtGyMBSRHL/4f1dgA==
date:
- - Thu, 18 Sep 2025 09:06:04 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
etag:
- - '"0x8DDF69298AECA95"'
+ - '"0x8DF1A98AF8F9187"'
last-modified:
- - Thu, 18 Sep 2025 09:06:04 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - tZ2J5D9JMlQ=
+ - tV/Arzas6bg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_3'
headers:
Accept:
- application/xml
@@ -5371,21 +5371,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:04 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
response:
body:
string: ''
@@ -5393,26 +5393,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 12k9IzPedeb+H+LE+BwTOA==
+ - FqmYxqi+B9UUgUkk/DMOiw==
date:
- - Thu, 18 Sep 2025 09:06:04 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
etag:
- - '"0x8DDF692994A3486"'
+ - '"0x8DF1A98AFFA78F3"'
last-modified:
- - Thu, 18 Sep 2025 09:06:05 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - +L0Pwqp4bcQ=
+ - QLT7+y44HMc=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_0'
headers:
Accept:
- application/xml
@@ -5423,21 +5423,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:05 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
response:
body:
string: ''
@@ -5445,26 +5445,26 @@ interactions:
content-length:
- '0'
content-md5:
- - sUqNOb1eQlwHIMNckVPXPg==
+ - XbtDGjFHEIZZx793eGZPsA==
date:
- - Thu, 18 Sep 2025 09:06:06 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
etag:
- - '"0x8DDF69299E991B0"'
+ - '"0x8DF1A98B0652647"'
last-modified:
- - Thu, 18 Sep 2025 09:06:06 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - gTQ68mKIA7s=
+ - yy+lq3Ypr0Y=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_4'
headers:
Accept:
- application/xml
@@ -5475,21 +5475,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:06 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
response:
body:
string: ''
@@ -5497,26 +5497,26 @@ interactions:
content-length:
- '0'
content-md5:
- - +YjkzJyA0LKFHmtciQvWFQ==
+ - Y+qUsq9BoUPXQX9kldKOVQ==
date:
- - Thu, 18 Sep 2025 09:06:06 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
etag:
- - '"0x8DDF6929A882C57"'
+ - '"0x8DF1A98B0D199D5"'
last-modified:
- - Thu, 18 Sep 2025 09:06:07 GMT
+ - Fri, 25 Sep 2026 00:05:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - Cq9kojqZsDo=
+ - RJnkMwXMzY8=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_6'
headers:
Accept:
- application/xml
@@ -5527,21 +5527,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:07 GMT
+ - Fri, 25 Sep 2026 00:05:21 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
response:
body:
string: ''
@@ -5549,26 +5549,26 @@ interactions:
content-length:
- '0'
content-md5:
- - W8HiNitS2lkGz6qjH7CrZQ==
+ - vrzicRbCAIuEGm8/8nN7dA==
date:
- - Thu, 18 Sep 2025 09:06:08 GMT
+ - Fri, 25 Sep 2026 00:05:21 GMT
etag:
- - '"0x8DDF6929B1F7C43"'
+ - '"0x8DF1A98B13C0C21"'
last-modified:
- - Thu, 18 Sep 2025 09:06:08 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - cyZRkvJp3kU=
+ - touPU5UtEHE=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_2'
headers:
Accept:
- application/xml
@@ -5579,21 +5579,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:08 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
response:
body:
string: ''
@@ -5601,26 +5601,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 4WhpVWYJewUiPB/Y/me8Dw==
+ - x6YzJb9YrpMLY+4pP0INPA==
date:
- - Thu, 18 Sep 2025 09:06:08 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
etag:
- - '"0x8DDF6929BBB81CF"'
+ - '"0x8DF1A98B1A6CC8B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:09 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - dwtOWtmdDw0=
+ - OT3Oy+bIcrg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_8'
headers:
Accept:
- application/xml
@@ -5631,21 +5631,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:09 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
response:
body:
string: ''
@@ -5653,26 +5653,26 @@ interactions:
content-length:
- '0'
content-md5:
- - ZATCeWkPFprrI77nB4jlog==
+ - 2/OZGEBlGHRrQo1E/WuQpw==
date:
- - Thu, 18 Sep 2025 09:06:09 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
etag:
- - '"0x8DDF6929C50B13B"'
+ - '"0x8DF1A98B210A2B7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:10 GMT
+ - Fri, 25 Sep 2026 00:05:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - DoJ7ahFtYXI=
+ - vtGxw8LFs+A=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_1'
headers:
Accept:
- application/xml
@@ -5683,21 +5683,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:10 GMT
+ - Fri, 25 Sep 2026 00:05:23 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
response:
body:
string: ''
@@ -5705,26 +5705,26 @@ interactions:
content-length:
- '0'
content-md5:
- - j+DrkJK59KnMzrIuQL6f/A==
+ - cN1XKD1FzfAQDdREtSw/7w==
date:
- - Thu, 18 Sep 2025 09:06:10 GMT
+ - Fri, 25 Sep 2026 00:05:24 GMT
etag:
- - '"0x8DDF6929CEA2196"'
+ - '"0x8DF1A98B29125E7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:11 GMT
+ - Fri, 25 Sep 2026 00:05:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - hRklOkl80vM=
+ - sqaQm77ZwTk=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_9'
headers:
Accept:
- application/xml
@@ -5735,21 +5735,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:11 GMT
+ - Fri, 25 Sep 2026 00:05:24 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
response:
body:
string: ''
@@ -5757,26 +5757,26 @@ interactions:
content-length:
- '0'
content-md5:
- - wwDWQLvZbZoN0I3o6XBEpA==
+ - nDNirqTlng3V44RFowp5PA==
date:
- - Thu, 18 Sep 2025 09:06:11 GMT
+ - Fri, 25 Sep 2026 00:05:24 GMT
etag:
- - '"0x8DDF6929D8AB5D9"'
+ - '"0x8DF1A98B2FA9421"'
last-modified:
- - Thu, 18 Sep 2025 09:06:12 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - /JAQCoGMvIw=
+ - x1iE8wo13Z8=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_7'
headers:
Accept:
- application/xml
@@ -5787,21 +5787,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:12 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
response:
body:
string: ''
@@ -5809,26 +5809,26 @@ interactions:
content-length:
- '0'
content-md5:
- - NPMm4IvOROmjNzvELlJ7bw==
+ - NOXHACzIcvk8kcldttK/MQ==
date:
- - Thu, 18 Sep 2025 09:06:12 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
etag:
- - '"0x8DDF6929E1FE545"'
+ - '"0x8DF1A98B3637FD0"'
last-modified:
- - Thu, 18 Sep 2025 09:06:13 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - jUMbqh6UcWI=
+ - zwK6Y13dfg4=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_5'
headers:
Accept:
- application/xml
@@ -5839,21 +5839,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:13 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
response:
body:
string: ''
@@ -5861,26 +5861,26 @@ interactions:
content-length:
- '0'
content-md5:
- - NMybN+t/RJ+B3CVzAMzBaQ==
+ - HpWc8xctKhZr8Ui60QuGjg==
date:
- - Thu, 18 Sep 2025 09:06:13 GMT
+ - Fri, 25 Sep 2026 00:05:26 GMT
etag:
- - '"0x8DDF6929EB7D0B4"'
+ - '"0x8DF1A98B3CCDC9B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:14 GMT
+ - Fri, 25 Sep 2026 00:05:26 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 9MoumtZkHx0=
+ - PRDRA808o/A=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_0'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_3'
headers:
Accept:
- application/xml
@@ -5891,21 +5891,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:14 GMT
+ - Fri, 25 Sep 2026 00:05:26 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
response:
body:
string: ''
@@ -5913,26 +5913,26 @@ interactions:
content-length:
- '0'
content-md5:
- - HZ5VvkfcPrB30qCGJtpzHA==
+ - phwTrnZMY9i06YYgrOQnig==
date:
- - Thu, 18 Sep 2025 09:06:15 GMT
+ - Fri, 25 Sep 2026 00:05:26 GMT
etag:
- - '"0x8DDF6929F4CB25A"'
+ - '"0x8DF1A98B4363D8B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:15 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - EgmoJYY8OLg=
+ - A6WAX1xJMF4=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_1'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
Accept:
- application/xml
@@ -5943,21 +5943,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:15 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
string: ''
@@ -5965,26 +5965,26 @@ interactions:
content-length:
- '0'
content-md5:
- - bv/3aBCYrXw59a/qg5U1mw==
+ - IttzcHmb0E6yCZslpuPw1A==
date:
- - Thu, 18 Sep 2025 09:06:15 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
etag:
- - '"0x8DDF6929FE3B472"'
+ - '"0x8DF1A98B49F95F4"'
last-modified:
- - Thu, 18 Sep 2025 09:06:16 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - a4CdFU7MVsc=
+ - iD7eDwRYg98=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_2'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_4'
headers:
Accept:
- application/xml
@@ -5995,21 +5995,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:16 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
response:
body:
string: ''
@@ -6017,26 +6017,26 @@ interactions:
content-length:
- '0'
content-md5:
- - R3KoM2kfOoD/NkAFRjFuqA==
+ - /HuiF61YVAUfVdKz18uP8Q==
date:
- - Thu, 18 Sep 2025 09:06:17 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
etag:
- - '"0x8DDF692A08007D7"'
+ - '"0x8DF1A98B50AF273"'
last-modified:
- - Thu, 18 Sep 2025 09:06:17 GMT
+ - Fri, 25 Sep 2026 00:05:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 4BvDRRbd5UY=
+ - B4ifl3e94RY=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_3'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_6'
headers:
Accept:
- application/xml
@@ -6047,21 +6047,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:17 GMT
+ - Fri, 25 Sep 2026 00:05:28 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
response:
body:
string: ''
@@ -6069,26 +6069,26 @@ interactions:
content-length:
- '0'
content-md5:
- - morBADnfqCkwBXXZU3hA6A==
+ - 486OkvW8vp9u/9aEK8KnSw==
date:
- - Thu, 18 Sep 2025 09:06:18 GMT
+ - Fri, 25 Sep 2026 00:05:28 GMT
etag:
- - '"0x8DDF692A1151057"'
+ - '"0x8DF1A98B58AF9B4"'
last-modified:
- - Thu, 18 Sep 2025 09:06:18 GMT
+ - Fri, 25 Sep 2026 00:05:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - mZL2dd4tizk=
+ - 9Zr09+dcPOg=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_4'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_2'
headers:
Accept:
- application/xml
@@ -6099,21 +6099,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:18 GMT
+ - Fri, 25 Sep 2026 00:05:29 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
response:
body:
string: ''
@@ -6121,26 +6121,26 @@ interactions:
content-length:
- '0'
content-md5:
- - jMy7yZooIbu+xco5y0PnWA==
+ - VFct9Mc6MBwDbT88fXarRA==
date:
- - Thu, 18 Sep 2025 09:06:19 GMT
+ - Fri, 25 Sep 2026 00:05:29 GMT
etag:
- - '"0x8DDF692A1C2676C"'
+ - '"0x8DF1A98B5F56BE6"'
last-modified:
- - Thu, 18 Sep 2025 09:06:19 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - nb/pvfXZWnE=
+ - eiy1b5S5XiE=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_5'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_8'
headers:
Accept:
- application/xml
@@ -6151,21 +6151,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:19 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
response:
body:
string: ''
@@ -6173,26 +6173,26 @@ interactions:
content-length:
- '0'
content-md5:
- - WWxxctNl0WEZ3Fkt0xSjXw==
+ - 13BG86AuGtf3vrzFRULiDA==
date:
- - Thu, 18 Sep 2025 09:06:20 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
etag:
- - '"0x8DDF692A26B56BE"'
+ - '"0x8DF1A98B65E933F"'
last-modified:
- - Thu, 18 Sep 2025 09:06:20 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 5DbcjT0pNA4=
+ - /cDKZ7C0n3k=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_6'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_1'
headers:
Accept:
- application/xml
@@ -6203,21 +6203,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:20 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
response:
body:
string: ''
@@ -6225,26 +6225,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 7SYtr6WWjvfHwEWZlFicyA==
+ - Ky86k6/sL9E/AduD5Dvghg==
date:
- - Thu, 18 Sep 2025 09:06:21 GMT
+ - Fri, 25 Sep 2026 00:05:31 GMT
etag:
- - '"0x8DDF692A30258DD"'
+ - '"0x8DF1A98B6C8F884"'
last-modified:
- - Thu, 18 Sep 2025 09:06:21 GMT
+ - Fri, 25 Sep 2026 00:05:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - b62C3WU4h48=
+ - 8bfrP8yo7aA=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_7'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_9'
headers:
Accept:
- application/xml
@@ -6255,21 +6255,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:21 GMT
+ - Fri, 25 Sep 2026 00:05:31 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
response:
body:
string: ''
@@ -6277,26 +6277,26 @@ interactions:
content-length:
- '0'
content-md5:
- - a0gskKctLUTyJ98stcb+zw==
+ - gonIw6Mm9y6Lwl0mS9zqyA==
date:
- - Thu, 18 Sep 2025 09:06:21 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
etag:
- - '"0x8DDF692A399A8C5"'
+ - '"0x8DF1A98B7319622"'
last-modified:
- - Thu, 18 Sep 2025 09:06:22 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - FiS37a3I6fA=
+ - hEn/V3hE8QY=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_8'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_7'
headers:
Accept:
- application/xml
@@ -6307,21 +6307,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:22 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
response:
body:
string: ''
@@ -6329,26 +6329,26 @@ interactions:
content-length:
- '0'
content-md5:
- - WsaYffpQ9TM4slY4craDlw==
+ - QtsIKJZ1l9DJfk8UuCAH9w==
date:
- - Thu, 18 Sep 2025 09:06:22 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
etag:
- - '"0x8DDF692A42E8A5E"'
+ - '"0x8DF1A98B79ABD46"'
last-modified:
- - Thu, 18 Sep 2025 09:06:23 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - Z/e8TTLQJB4=
+ - jBPBxy+sUpc=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
- request:
- body: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_9'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_5'
headers:
Accept:
- application/xml
@@ -6359,21 +6359,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
ParameterSetName:
- -s -d --max-connections --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:06:23 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
response:
body:
string: ''
@@ -6381,21 +6381,21 @@ interactions:
content-length:
- '0'
content-md5:
- - sOOZ8v6f8otceBtL552N9g==
+ - CvWiulprfZhTPzyafnVFlQ==
date:
- - Thu, 18 Sep 2025 09:06:24 GMT
+ - Fri, 25 Sep 2026 00:05:33 GMT
etag:
- - '"0x8DDF692A4C64EF9"'
+ - '"0x8DF1A98B80E1BE9"'
last-modified:
- - Thu, 18 Sep 2025 09:06:24 GMT
+ - Fri, 25 Sep 2026 00:05:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - Hn6JffogSmE=
+ - fgGqp79Nj2k=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -6413,232 +6413,232 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:24 GMT
+ - Fri, 25 Sep 2026 00:05:33 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list
response:
body:
string: "\uFEFFapple/file_0Thu,
- 18 Sep 2025 09:04:20 GMTThu, 18 Sep 2025 09:05:45
- GMT0x8DDF6928D32D70B133application/octet-stream463PUGutVKR3lenQoi0GnQ==BlockBlobunlockedavailabletrueapple/file_1Thu, 18
- Sep 2025 09:04:21 GMTThu, 18 Sep 2025 09:05:46
- GMT0x8DDF6928DCBABD6133application/octet-streamlIufFEDWG6WiNe7Vy5LCzw==BlockBlobunlockedavailabletrueapple/file_2Thu, 18
- Sep 2025 09:04:22 GMTThu, 18 Sep 2025 09:05:47
- GMT0x8DDF6928E639742133application/octet-streamXr/A/PPBjAvfBnZM6eDygw==BlockBlobunlockedavailabletrueapple/file_3Thu, 18
- Sep 2025 09:04:23 GMTThu, 18 Sep 2025 09:05:48
- GMT0x8DDF6928EFB82B1133application/octet-streamQijJ1Y0HkLHaWhK6JWu6Yg==BlockBlobunlockedavailabletrueapple/file_4Thu, 18
- Sep 2025 09:04:24 GMTThu, 18 Sep 2025 09:05:49
- GMT0x8DDF6928F9B7B7D133application/octet-streamvbz+Yk+D6XrKvX4okS2Gag==BlockBlobunlockedavailabletrueapple/file_5Thu, 18
- Sep 2025 09:04:25 GMTThu, 18 Sep 2025 09:05:50
- GMT0x8DDF692903622F3133application/octet-streamqyjPb9RRf+qh1mpxe/Zaxw==BlockBlobunlockedavailabletrueapple/file_6Thu, 18
- Sep 2025 09:04:26 GMTThu, 18 Sep 2025 09:05:51
- GMT0x8DDF69290CCFE23133application/octet-streamwXEJFzIgI33TKjbAlix3iw==BlockBlobunlockedavailabletrueapple/file_7Thu, 18
- Sep 2025 09:04:27 GMTThu, 18 Sep 2025 09:05:52
- GMT0x8DDF692917000B0133application/octet-streamNzN/gbDos0zQ+5NCHOgUcg==BlockBlobunlockedavailabletrueapple/file_8Thu, 18
- Sep 2025 09:04:28 GMTThu, 18 Sep 2025 09:05:53
- GMT0x8DDF692920702D0133application/octet-stream7GVacxDUKYkMT8VjT+tTgQ==BlockBlobunlockedavailabletrueapple/file_9Thu, 18
- Sep 2025 09:04:29 GMTThu, 18 Sep 2025 09:05:54
- GMT0x8DDF69292A135A6133application/octet-streamo8CI3RsPcRLdlmTyY8+r6g==BlockBlobunlockedavailabletruebutter/charlie/file_0Thu,
- 18 Sep 2025 09:04:40 GMTThu, 18 Sep 2025 09:06:05
- GMT0x8DDF692994A3486142application/octet-stream12k9IzPedeb+H+LE+BwTOA==BlockBlobunlockedavailabletruebutter/charlie/file_1Thu,
- 18 Sep 2025 09:04:41 GMTThu, 18 Sep 2025 09:06:06
- GMT0x8DDF69299E991B0142application/octet-streamsUqNOb1eQlwHIMNckVPXPg==BlockBlobunlockedavailabletruebutter/charlie/file_2Thu,
- 18 Sep 2025 09:04:42 GMTThu, 18 Sep 2025 09:06:07
- GMT0x8DDF6929A882C57142application/octet-stream+YjkzJyA0LKFHmtciQvWFQ==BlockBlobunlockedavailabletruebutter/charlie/file_3Thu,
- 18 Sep 2025 09:04:43 GMTThu, 18 Sep 2025 09:06:08
- GMT0x8DDF6929B1F7C43142application/octet-streamW8HiNitS2lkGz6qjH7CrZQ==BlockBlobunlockedavailabletruebutter/charlie/file_4Thu,
- 18 Sep 2025 09:04:45 GMTThu, 18 Sep 2025 09:06:09
- GMT0x8DDF6929BBB81CF142application/octet-stream4WhpVWYJewUiPB/Y/me8Dw==BlockBlobunlockedavailabletruebutter/charlie/file_5Thu,
- 18 Sep 2025 09:04:46 GMTThu, 18 Sep 2025 09:06:10
- GMT0x8DDF6929C50B13B142application/octet-streamZATCeWkPFprrI77nB4jlog==BlockBlobunlockedavailabletruebutter/charlie/file_6Thu,
- 18 Sep 2025 09:04:47 GMTThu, 18 Sep 2025 09:06:11
- GMT0x8DDF6929CEA2196142application/octet-streamj+DrkJK59KnMzrIuQL6f/A==BlockBlobunlockedavailabletruebutter/charlie/file_7Thu,
- 18 Sep 2025 09:04:48 GMTThu, 18 Sep 2025 09:06:12
- GMT0x8DDF6929D8AB5D9142application/octet-streamwwDWQLvZbZoN0I3o6XBEpA==BlockBlobunlockedavailabletruebutter/charlie/file_8Thu,
- 18 Sep 2025 09:04:49 GMTThu, 18 Sep 2025 09:06:13
- GMT0x8DDF6929E1FE545142application/octet-streamNPMm4IvOROmjNzvELlJ7bw==BlockBlobunlockedavailabletruebutter/charlie/file_9Thu,
- 18 Sep 2025 09:04:50 GMTThu, 18 Sep 2025 09:06:14
- GMT0x8DDF6929EB7D0B4142application/octet-streamNMybN+t/RJ+B3CVzAMzBaQ==BlockBlobunlockedavailabletruebutter/file_0Thu, 18
- Sep 2025 09:04:30 GMTThu, 18 Sep 2025 09:05:55
- GMT0x8DDF692933BB64B134application/octet-stream9b/sO4zifnv0UaZvaocIvw==BlockBlobunlockedavailabletruebutter/file_1Thu, 18
- Sep 2025 09:04:31 GMTThu, 18 Sep 2025 09:05:56
- GMT0x8DDF69293D30632134application/octet-streamn0rDSbIqToxjMieFptvIGQ==BlockBlobunlockedavailabletruebutter/file_2Thu, 18
- Sep 2025 09:04:32 GMTThu, 18 Sep 2025 09:05:57
- GMT0x8DDF6929466FE78134application/octet-streamDYolaEf0RsVC992imxxZRw==BlockBlobunlockedavailabletruebutter/file_3Thu, 18
- Sep 2025 09:04:33 GMTThu, 18 Sep 2025 09:05:58
- GMT0x8DDF69295002108134application/octet-streami+ji99hYpAoJqdy08+A6Wg==BlockBlobunlockedavailabletruebutter/file_4Thu, 18
- Sep 2025 09:04:34 GMTThu, 18 Sep 2025 09:05:59
- GMT0x8DDF692959F5750134application/octet-streammF4KjAXjgSo1MW7Yp6kyFA==BlockBlobunlockedavailabletruebutter/file_5Thu, 18
- Sep 2025 09:04:35 GMTThu, 18 Sep 2025 09:06:00
- GMT0x8DDF69296363283134application/octet-streamJxT6YyZzPZCJhVE6ZQkQaA==BlockBlobunlockedavailabletruebutter/file_6Thu, 18
- Sep 2025 09:04:36 GMTThu, 18 Sep 2025 09:06:01
- GMT0x8DDF69296D2ACBA134application/octet-streampynwCV43Rcrth0ZFpJjl8A==BlockBlobunlockedavailabletruebutter/file_7Thu, 18
- Sep 2025 09:04:37 GMTThu, 18 Sep 2025 09:06:02
- GMT0x8DDF692976DA204134application/octet-streamfrgRHx8gFlDTsguZeuIKDQ==BlockBlobunlockedavailabletruebutter/file_8Thu, 18
- Sep 2025 09:04:38 GMTThu, 18 Sep 2025 09:06:03
- GMT0x8DDF6929807871A134application/octet-streamMkCfTLxExqfymIm9fRRP+g==BlockBlobunlockedavailabletruebutter/file_9Thu, 18
- Sep 2025 09:04:39 GMTThu, 18 Sep 2025 09:06:04
- GMT0x8DDF69298AECA95134application/octet-streamYvHfoHTcH+y2539JPKMHRw==BlockBlobunlockedavailabletrueduff/edward/file_0Thu,
- 18 Sep 2025 09:04:51 GMTThu, 18 Sep 2025 09:06:15
- GMT0x8DDF6929F4CB25A139application/octet-streamHZ5VvkfcPrB30qCGJtpzHA==BlockBlobunlockedavailabletrueduff/edward/file_1Thu,
- 18 Sep 2025 09:04:52 GMTThu, 18 Sep 2025 09:06:16
- GMT0x8DDF6929FE3B472139application/octet-streambv/3aBCYrXw59a/qg5U1mw==BlockBlobunlockedavailabletrueduff/edward/file_2Thu,
- 18 Sep 2025 09:04:53 GMTThu, 18 Sep 2025 09:06:17
- GMT0x8DDF692A08007D7139application/octet-streamR3KoM2kfOoD/NkAFRjFuqA==BlockBlobunlockedavailabletrueduff/edward/file_3Thu,
- 18 Sep 2025 09:04:54 GMTThu, 18 Sep 2025 09:06:18
- GMT0x8DDF692A1151057139application/octet-streammorBADnfqCkwBXXZU3hA6A==BlockBlobunlockedavailabletrueduff/edward/file_4Thu,
- 18 Sep 2025 09:04:55 GMTThu, 18 Sep 2025 09:06:19
- GMT0x8DDF692A1C2676C139application/octet-streamjMy7yZooIbu+xco5y0PnWA==BlockBlobunlockedavailabletrueduff/edward/file_5Thu,
- 18 Sep 2025 09:04:56 GMTThu, 18 Sep 2025 09:06:20
- GMT0x8DDF692A26B56BE139application/octet-streamWWxxctNl0WEZ3Fkt0xSjXw==BlockBlobunlockedavailabletrueduff/edward/file_6Thu,
- 18 Sep 2025 09:04:57 GMTThu, 18 Sep 2025 09:06:21
- GMT0x8DDF692A30258DD139application/octet-stream7SYtr6WWjvfHwEWZlFicyA==BlockBlobunlockedavailabletrueduff/edward/file_7Thu,
- 18 Sep 2025 09:04:58 GMTThu, 18 Sep 2025 09:06:22
- GMT0x8DDF692A399A8C5139application/octet-streama0gskKctLUTyJ98stcb+zw==BlockBlobunlockedavailabletrueduff/edward/file_8Thu,
- 18 Sep 2025 09:04:59 GMTThu, 18 Sep 2025 09:06:23
- GMT0x8DDF692A42E8A5E139application/octet-streamWsaYffpQ9TM4slY4craDlw==BlockBlobunlockedavailabletrueduff/edward/file_9Thu,
- 18 Sep 2025 09:05:00 GMTThu, 18 Sep 2025 09:06:24
- GMT0x8DDF692A4C64EF9139application/octet-streamsOOZ8v6f8otceBtL552N9g==BlockBlobunlockedavailabletruereadmeThu, 18 Sep 2025
- 09:04:19 GMTThu, 18 Sep 2025 09:05:44 GMT0x8DDF6928C9CBE3B87application/octet-streamapple/file_0Fri,
+ 25 Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B49F95F4101application/octet-streamIttzcHmb0E6yCZslpuPw1A==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 00:04:28 GMTFri, 25 Sep 2026 00:05:31
+ GMT0x8DF1A98B6C8F884101application/octet-streamKy86k6/sL9E/AduD5Dvghg==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 00:04:26 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B5F56BE6101application/octet-streamVFct9Mc6MBwDbT88fXarRA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 00:04:23 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B4363D8B101application/octet-streamphwTrnZMY9i06YYgrOQnig==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:28
+ GMT0x8DF1A98B50AF273101application/octet-stream/HuiF61YVAUfVdKz18uP8Q==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:33
+ GMT0x8DF1A98B80E1BE9101application/octet-streamCvWiulprfZhTPzyafnVFlQ==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 00:04:25 GMTFri, 25 Sep 2026 00:05:29
+ GMT0x8DF1A98B58AF9B4101application/octet-stream486OkvW8vp9u/9aEK8KnSw==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B79ABD46101application/octet-streamQtsIKJZ1l9DJfk8UuCAH9w==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 00:04:27 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B65E933F101application/octet-stream13BG86AuGtf3vrzFRULiDA==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 00:04:29 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B7319622101application/octet-streamgonIw6Mm9y6Lwl0mS9zqyA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
+ 25 Sep 2026 00:04:14 GMTFri, 25 Sep 2026 00:05:20
+ GMT0x8DF1A98B0652647110application/octet-streamXbtDGjFHEIZZx793eGZPsA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
+ 25 Sep 2026 00:04:19 GMTFri, 25 Sep 2026 00:05:24
+ GMT0x8DF1A98B29125E7110application/octet-streamcN1XKD1FzfAQDdREtSw/7w==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B1A6CC8B110application/octet-streamx6YzJb9YrpMLY+4pP0INPA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
+ 25 Sep 2026 00:04:13 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AFFA78F3110application/octet-streamFqmYxqi+B9UUgUkk/DMOiw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
+ 25 Sep 2026 00:04:15 GMTFri, 25 Sep 2026 00:05:21
+ GMT0x8DF1A98B0D199D5110application/octet-streamY+qUsq9BoUPXQX9kldKOVQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
+ 25 Sep 2026 00:04:22 GMTFri, 25 Sep 2026 00:05:26
+ GMT0x8DF1A98B3CCDC9B110application/octet-streamHpWc8xctKhZr8Ui60QuGjg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
+ 25 Sep 2026 00:04:17 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B13C0C21110application/octet-streamvrzicRbCAIuEGm8/8nN7dA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
+ 25 Sep 2026 00:04:21 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B3637FD0110application/octet-streamNOXHACzIcvk8kcldttK/MQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:23
+ GMT0x8DF1A98B210A2B7110application/octet-stream2/OZGEBlGHRrQo1E/WuQpw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_9Fri,
+ 25 Sep 2026 00:04:20 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B2FA9421110application/octet-streamnDNirqTlng3V44RFowp5PA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:13
+ GMT0x8DF1A98AC0B4D18102application/octet-streamUkUA0/FHbUXIe+47c6Dj9Q==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 00:04:10 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AE3A835B102application/octet-streameRVeHTq6T6dxb0zP9rq+fw==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 00:04:08 GMTFri, 25 Sep 2026 00:05:15
+ GMT0x8DF1A98AD644FAA102application/octet-stream9nT2gYpljB8wufj8Np3SCg==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 00:04:05 GMTFri, 25 Sep 2026 00:05:12
+ GMT0x8DF1A98ABA176AA102application/octet-stream8A3Po3vddYDGBGfja7/XQw==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98AC8CC667102application/octet-stream9zWE7vtoJnOJHv6tUmqfwQ==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 00:04:12 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AF8F9187102application/octet-stream8VIxMUtGyMBSRHL/4f1dgA==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 00:04:07 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98ACFB3CC7102application/octet-streamNkl8ajHVjxKl9UmKy7TaZA==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:18
+ GMT0x8DF1A98AF0F532C102application/octet-streamfpY5g8HejIN8pEh2a+nPvg==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 00:04:09 GMTFri, 25 Sep 2026 00:05:16
+ GMT0x8DF1A98ADCDC775102application/octet-streameRydkbCQ5SJKqFIWYL7VqA==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AEA58BF5102application/octet-streambJ+4nl0DQc5Lvg891+rFxw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
+ 25 Sep 2026 00:03:57 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A7CA7A9D107application/octet-stream71w8dBoGUSSVbamKcO1lFw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
+ 25 Sep 2026 00:04:01 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A9F3622D107application/octet-streamDnLBQRNtFnclTyJXfyKqnA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:08
+ GMT0x8DF1A98A9089CDC107application/octet-streamsd0gDAybdZBuWZ2am5ULCQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
+ 25 Sep 2026 00:03:56 GMTFri, 25 Sep 2026 00:05:05
+ GMT0x8DF1A98A7602F3A107application/octet-streamzGQZoDWt8Y5dJESc8TB0Mg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
+ 25 Sep 2026 00:03:58 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A835172A107application/octet-streampGxnukS6Fz7NjCuHvHJSOQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
+ 25 Sep 2026 00:04:04 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AB35EC64107application/octet-stream09mN8BZH+J3xKBIdhMTn2A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
+ 25 Sep 2026 00:03:59 GMTFri, 25 Sep 2026 00:05:07
+ GMT0x8DF1A98A89EC6C8107application/octet-streamwxdWezoDBTifLE6AYPV4fw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
+ 25 Sep 2026 00:04:03 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AACADDF8107application/octet-streampmShc94YBcMpNtkfJ6TS6A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A988B6BE107application/octet-streamQe2yDZak0qtkDUBcxAFmLQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_9Fri,
+ 25 Sep 2026 00:04:02 GMTFri, 25 Sep 2026 00:05:10
+ GMT0x8DF1A98AA601E2F107application/octet-streamLZvKP6Iz3MAPrql/iSMbxw==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 00:03:55 GMTFri, 25 Sep 2026 00:05:04 GMT0x8DF1A98A6F513E487application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:06:25 GMT
+ - Fri, 25 Sep 2026 00:05:34 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -6656,41 +6656,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:26 GMT
+ - Fri, 25 Sep 2026 00:05:34 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:26 GMT
+ - Fri, 25 Sep 2026 00:05:35 GMT
etag:
- - '"0x8DDF6928D32D70B"'
+ - '"0x8DF1A98B49F95F4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - IttzcHmb0E6yCZslpuPw1A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6698,7 +6702,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6716,41 +6720,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:27 GMT
+ - Fri, 25 Sep 2026 00:05:35 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:27 GMT
+ - Fri, 25 Sep 2026 00:05:35 GMT
etag:
- - '"0x8DDF6928DCBABD6"'
+ - '"0x8DF1A98B6C8F884"'
last-modified:
- - Thu, 18 Sep 2025 09:05:46 GMT
+ - Fri, 25 Sep 2026 00:05:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - lIufFEDWG6WiNe7Vy5LCzw==
+ - Ky86k6/sL9E/AduD5Dvghg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:21 GMT
+ - Fri, 25 Sep 2026 00:04:28 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6758,7 +6766,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6776,41 +6784,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:28 GMT
+ - Fri, 25 Sep 2026 00:05:36 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:28 GMT
+ - Fri, 25 Sep 2026 00:05:36 GMT
etag:
- - '"0x8DDF6928E639742"'
+ - '"0x8DF1A98B5F56BE6"'
last-modified:
- - Thu, 18 Sep 2025 09:05:47 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Xr/A/PPBjAvfBnZM6eDygw==
+ - VFct9Mc6MBwDbT88fXarRA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:22 GMT
+ - Fri, 25 Sep 2026 00:04:26 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6818,7 +6830,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6836,41 +6848,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:29 GMT
+ - Fri, 25 Sep 2026 00:05:36 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:29 GMT
+ - Fri, 25 Sep 2026 00:05:36 GMT
etag:
- - '"0x8DDF6928EFB82B1"'
+ - '"0x8DF1A98B4363D8B"'
last-modified:
- - Thu, 18 Sep 2025 09:05:48 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - QijJ1Y0HkLHaWhK6JWu6Yg==
+ - phwTrnZMY9i06YYgrOQnig==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:23 GMT
+ - Fri, 25 Sep 2026 00:04:23 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6878,7 +6894,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6896,41 +6912,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:30 GMT
+ - Fri, 25 Sep 2026 00:05:37 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:30 GMT
+ - Fri, 25 Sep 2026 00:05:37 GMT
etag:
- - '"0x8DDF6928F9B7B7D"'
+ - '"0x8DF1A98B50AF273"'
last-modified:
- - Thu, 18 Sep 2025 09:05:49 GMT
+ - Fri, 25 Sep 2026 00:05:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - vbz+Yk+D6XrKvX4okS2Gag==
+ - /HuiF61YVAUfVdKz18uP8Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:24 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6938,7 +6958,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6956,41 +6976,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:31 GMT
+ - Fri, 25 Sep 2026 00:05:38 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:32 GMT
+ - Fri, 25 Sep 2026 00:05:38 GMT
etag:
- - '"0x8DDF692903622F3"'
+ - '"0x8DF1A98B80E1BE9"'
last-modified:
- - Thu, 18 Sep 2025 09:05:50 GMT
+ - Fri, 25 Sep 2026 00:05:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - qyjPb9RRf+qh1mpxe/Zaxw==
+ - CvWiulprfZhTPzyafnVFlQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:25 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6998,7 +7022,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7016,41 +7040,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:32 GMT
+ - Fri, 25 Sep 2026 00:05:39 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:32 GMT
+ - Fri, 25 Sep 2026 00:05:38 GMT
etag:
- - '"0x8DDF69290CCFE23"'
+ - '"0x8DF1A98B58AF9B4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:51 GMT
+ - Fri, 25 Sep 2026 00:05:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - wXEJFzIgI33TKjbAlix3iw==
+ - 486OkvW8vp9u/9aEK8KnSw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:26 GMT
+ - Fri, 25 Sep 2026 00:04:25 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7058,7 +7086,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7076,41 +7104,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:33 GMT
+ - Fri, 25 Sep 2026 00:05:39 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:34 GMT
+ - Fri, 25 Sep 2026 00:05:40 GMT
etag:
- - '"0x8DDF692917000B0"'
+ - '"0x8DF1A98B79ABD46"'
last-modified:
- - Thu, 18 Sep 2025 09:05:52 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NzN/gbDos0zQ+5NCHOgUcg==
+ - QtsIKJZ1l9DJfk8UuCAH9w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:27 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7118,7 +7150,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7136,41 +7168,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:34 GMT
+ - Fri, 25 Sep 2026 00:05:40 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:35 GMT
+ - Fri, 25 Sep 2026 00:05:40 GMT
etag:
- - '"0x8DDF692920702D0"'
+ - '"0x8DF1A98B65E933F"'
last-modified:
- - Thu, 18 Sep 2025 09:05:53 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 7GVacxDUKYkMT8VjT+tTgQ==
+ - 13BG86AuGtf3vrzFRULiDA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:28 GMT
+ - Fri, 25 Sep 2026 00:04:27 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7178,7 +7214,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7196,41 +7232,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:35 GMT
+ - Fri, 25 Sep 2026 00:05:41 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:36 GMT
+ - Fri, 25 Sep 2026 00:05:41 GMT
etag:
- - '"0x8DDF69292A135A6"'
+ - '"0x8DF1A98B7319622"'
last-modified:
- - Thu, 18 Sep 2025 09:05:54 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - o8CI3RsPcRLdlmTyY8+r6g==
+ - gonIw6Mm9y6Lwl0mS9zqyA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:29 GMT
+ - Fri, 25 Sep 2026 00:04:29 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7238,7 +7278,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7256,41 +7296,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:36 GMT
+ - Fri, 25 Sep 2026 00:05:42 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:36 GMT
+ - Fri, 25 Sep 2026 00:05:41 GMT
etag:
- - '"0x8DDF692994A3486"'
+ - '"0x8DF1A98B0652647"'
last-modified:
- - Thu, 18 Sep 2025 09:06:05 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 12k9IzPedeb+H+LE+BwTOA==
+ - XbtDGjFHEIZZx793eGZPsA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:40 GMT
+ - Fri, 25 Sep 2026 00:04:14 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7298,7 +7342,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7316,41 +7360,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:37 GMT
+ - Fri, 25 Sep 2026 00:05:42 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:38 GMT
+ - Fri, 25 Sep 2026 00:05:43 GMT
etag:
- - '"0x8DDF69299E991B0"'
+ - '"0x8DF1A98B29125E7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:06 GMT
+ - Fri, 25 Sep 2026 00:05:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - sUqNOb1eQlwHIMNckVPXPg==
+ - cN1XKD1FzfAQDdREtSw/7w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:41 GMT
+ - Fri, 25 Sep 2026 00:04:19 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7358,7 +7406,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7376,41 +7424,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:38 GMT
+ - Fri, 25 Sep 2026 00:05:43 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:38 GMT
+ - Fri, 25 Sep 2026 00:05:43 GMT
etag:
- - '"0x8DDF6929A882C57"'
+ - '"0x8DF1A98B1A6CC8B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:07 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - +YjkzJyA0LKFHmtciQvWFQ==
+ - x6YzJb9YrpMLY+4pP0INPA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:42 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7418,7 +7470,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7436,41 +7488,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:39 GMT
+ - Fri, 25 Sep 2026 00:05:44 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:39 GMT
+ - Fri, 25 Sep 2026 00:05:44 GMT
etag:
- - '"0x8DDF6929B1F7C43"'
+ - '"0x8DF1A98AFFA78F3"'
last-modified:
- - Thu, 18 Sep 2025 09:06:08 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - W8HiNitS2lkGz6qjH7CrZQ==
+ - FqmYxqi+B9UUgUkk/DMOiw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:43 GMT
+ - Fri, 25 Sep 2026 00:04:13 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7478,7 +7534,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7496,41 +7552,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:40 GMT
+ - Fri, 25 Sep 2026 00:05:44 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:40 GMT
+ - Fri, 25 Sep 2026 00:05:44 GMT
etag:
- - '"0x8DDF6929BBB81CF"'
+ - '"0x8DF1A98B0D199D5"'
last-modified:
- - Thu, 18 Sep 2025 09:06:09 GMT
+ - Fri, 25 Sep 2026 00:05:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 4WhpVWYJewUiPB/Y/me8Dw==
+ - Y+qUsq9BoUPXQX9kldKOVQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:45 GMT
+ - Fri, 25 Sep 2026 00:04:15 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7538,7 +7598,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7556,41 +7616,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:41 GMT
+ - Fri, 25 Sep 2026 00:05:45 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:42 GMT
+ - Fri, 25 Sep 2026 00:05:45 GMT
etag:
- - '"0x8DDF6929C50B13B"'
+ - '"0x8DF1A98B3CCDC9B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:10 GMT
+ - Fri, 25 Sep 2026 00:05:26 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - ZATCeWkPFprrI77nB4jlog==
+ - HpWc8xctKhZr8Ui60QuGjg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:46 GMT
+ - Fri, 25 Sep 2026 00:04:22 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7598,7 +7662,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7616,41 +7680,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:42 GMT
+ - Fri, 25 Sep 2026 00:05:46 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:43 GMT
+ - Fri, 25 Sep 2026 00:05:46 GMT
etag:
- - '"0x8DDF6929CEA2196"'
+ - '"0x8DF1A98B13C0C21"'
last-modified:
- - Thu, 18 Sep 2025 09:06:11 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - j+DrkJK59KnMzrIuQL6f/A==
+ - vrzicRbCAIuEGm8/8nN7dA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:47 GMT
+ - Fri, 25 Sep 2026 00:04:17 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7658,7 +7726,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7676,41 +7744,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:43 GMT
+ - Fri, 25 Sep 2026 00:05:47 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:44 GMT
+ - Fri, 25 Sep 2026 00:05:47 GMT
etag:
- - '"0x8DDF6929D8AB5D9"'
+ - '"0x8DF1A98B3637FD0"'
last-modified:
- - Thu, 18 Sep 2025 09:06:12 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - wwDWQLvZbZoN0I3o6XBEpA==
+ - NOXHACzIcvk8kcldttK/MQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:48 GMT
+ - Fri, 25 Sep 2026 00:04:21 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7718,7 +7790,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7736,41 +7808,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:44 GMT
+ - Fri, 25 Sep 2026 00:05:47 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:45 GMT
+ - Fri, 25 Sep 2026 00:05:47 GMT
etag:
- - '"0x8DDF6929E1FE545"'
+ - '"0x8DF1A98B210A2B7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:13 GMT
+ - Fri, 25 Sep 2026 00:05:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NPMm4IvOROmjNzvELlJ7bw==
+ - 2/OZGEBlGHRrQo1E/WuQpw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:49 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7778,7 +7854,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7796,41 +7872,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:45 GMT
+ - Fri, 25 Sep 2026 00:05:48 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:46 GMT
+ - Fri, 25 Sep 2026 00:05:49 GMT
etag:
- - '"0x8DDF6929EB7D0B4"'
+ - '"0x8DF1A98B2FA9421"'
last-modified:
- - Thu, 18 Sep 2025 09:06:14 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NMybN+t/RJ+B3CVzAMzBaQ==
+ - nDNirqTlng3V44RFowp5PA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:50 GMT
+ - Fri, 25 Sep 2026 00:04:20 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7838,7 +7918,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7856,41 +7936,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:46 GMT
+ - Fri, 25 Sep 2026 00:05:49 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:47 GMT
+ - Fri, 25 Sep 2026 00:05:49 GMT
etag:
- - '"0x8DDF692933BB64B"'
+ - '"0x8DF1A98AC0B4D18"'
last-modified:
- - Thu, 18 Sep 2025 09:05:55 GMT
+ - Fri, 25 Sep 2026 00:05:13 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 9b/sO4zifnv0UaZvaocIvw==
+ - UkUA0/FHbUXIe+47c6Dj9Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:30 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7898,7 +7982,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7916,41 +8000,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:47 GMT
+ - Fri, 25 Sep 2026 00:05:49 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:47 GMT
+ - Fri, 25 Sep 2026 00:05:50 GMT
etag:
- - '"0x8DDF69293D30632"'
+ - '"0x8DF1A98AE3A835B"'
last-modified:
- - Thu, 18 Sep 2025 09:05:56 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - n0rDSbIqToxjMieFptvIGQ==
+ - eRVeHTq6T6dxb0zP9rq+fw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:31 GMT
+ - Fri, 25 Sep 2026 00:04:10 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7958,7 +8046,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7976,41 +8064,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:48 GMT
+ - Fri, 25 Sep 2026 00:05:50 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:49 GMT
+ - Fri, 25 Sep 2026 00:05:51 GMT
etag:
- - '"0x8DDF6929466FE78"'
+ - '"0x8DF1A98AD644FAA"'
last-modified:
- - Thu, 18 Sep 2025 09:05:57 GMT
+ - Fri, 25 Sep 2026 00:05:15 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - DYolaEf0RsVC992imxxZRw==
+ - 9nT2gYpljB8wufj8Np3SCg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:32 GMT
+ - Fri, 25 Sep 2026 00:04:08 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8018,7 +8110,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8036,41 +8128,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:49 GMT
+ - Fri, 25 Sep 2026 00:05:51 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:50 GMT
+ - Fri, 25 Sep 2026 00:05:51 GMT
etag:
- - '"0x8DDF69295002108"'
+ - '"0x8DF1A98ABA176AA"'
last-modified:
- - Thu, 18 Sep 2025 09:05:58 GMT
+ - Fri, 25 Sep 2026 00:05:12 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - i+ji99hYpAoJqdy08+A6Wg==
+ - 8A3Po3vddYDGBGfja7/XQw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:33 GMT
+ - Fri, 25 Sep 2026 00:04:05 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8078,7 +8174,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8096,41 +8192,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:50 GMT
+ - Fri, 25 Sep 2026 00:05:52 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:51 GMT
+ - Fri, 25 Sep 2026 00:05:51 GMT
etag:
- - '"0x8DDF692959F5750"'
+ - '"0x8DF1A98AC8CC667"'
last-modified:
- - Thu, 18 Sep 2025 09:05:59 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - mF4KjAXjgSo1MW7Yp6kyFA==
+ - 9zWE7vtoJnOJHv6tUmqfwQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:34 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8138,7 +8238,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8156,41 +8256,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:51 GMT
+ - Fri, 25 Sep 2026 00:05:52 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:51 GMT
+ - Fri, 25 Sep 2026 00:05:52 GMT
etag:
- - '"0x8DDF69296363283"'
+ - '"0x8DF1A98AF8F9187"'
last-modified:
- - Thu, 18 Sep 2025 09:06:00 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - JxT6YyZzPZCJhVE6ZQkQaA==
+ - 8VIxMUtGyMBSRHL/4f1dgA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:35 GMT
+ - Fri, 25 Sep 2026 00:04:12 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8198,7 +8302,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8216,41 +8320,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:52 GMT
+ - Fri, 25 Sep 2026 00:05:53 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:53 GMT
+ - Fri, 25 Sep 2026 00:05:54 GMT
etag:
- - '"0x8DDF69296D2ACBA"'
+ - '"0x8DF1A98ACFB3CC7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:01 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - pynwCV43Rcrth0ZFpJjl8A==
+ - Nkl8ajHVjxKl9UmKy7TaZA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:36 GMT
+ - Fri, 25 Sep 2026 00:04:07 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8258,7 +8366,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8276,41 +8384,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:53 GMT
+ - Fri, 25 Sep 2026 00:05:54 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:54 GMT
+ - Fri, 25 Sep 2026 00:05:54 GMT
etag:
- - '"0x8DDF692976DA204"'
+ - '"0x8DF1A98AF0F532C"'
last-modified:
- - Thu, 18 Sep 2025 09:06:02 GMT
+ - Fri, 25 Sep 2026 00:05:18 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - frgRHx8gFlDTsguZeuIKDQ==
+ - fpY5g8HejIN8pEh2a+nPvg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:37 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8318,7 +8430,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8336,41 +8448,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:54 GMT
+ - Fri, 25 Sep 2026 00:05:55 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:55 GMT
+ - Fri, 25 Sep 2026 00:05:54 GMT
etag:
- - '"0x8DDF6929807871A"'
+ - '"0x8DF1A98ADCDC775"'
last-modified:
- - Thu, 18 Sep 2025 09:06:03 GMT
+ - Fri, 25 Sep 2026 00:05:16 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - MkCfTLxExqfymIm9fRRP+g==
+ - eRydkbCQ5SJKqFIWYL7VqA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:38 GMT
+ - Fri, 25 Sep 2026 00:04:09 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8378,7 +8494,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8396,41 +8512,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:56 GMT
+ - Fri, 25 Sep 2026 00:05:55 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:56 GMT
+ - Fri, 25 Sep 2026 00:05:55 GMT
etag:
- - '"0x8DDF69298AECA95"'
+ - '"0x8DF1A98AEA58BF5"'
last-modified:
- - Thu, 18 Sep 2025 09:06:04 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - YvHfoHTcH+y2539JPKMHRw==
+ - bJ+4nl0DQc5Lvg891+rFxw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:39 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8438,7 +8558,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8456,41 +8576,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:57 GMT
+ - Fri, 25 Sep 2026 00:05:56 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:57 GMT
+ - Fri, 25 Sep 2026 00:05:57 GMT
etag:
- - '"0x8DDF6929F4CB25A"'
+ - '"0x8DF1A98A7CA7A9D"'
last-modified:
- - Thu, 18 Sep 2025 09:06:15 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - HZ5VvkfcPrB30qCGJtpzHA==
+ - 71w8dBoGUSSVbamKcO1lFw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:51 GMT
+ - Fri, 25 Sep 2026 00:03:57 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8498,7 +8622,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8516,41 +8640,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:58 GMT
+ - Fri, 25 Sep 2026 00:05:57 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:58 GMT
+ - Fri, 25 Sep 2026 00:05:57 GMT
etag:
- - '"0x8DDF6929FE3B472"'
+ - '"0x8DF1A98A9F3622D"'
last-modified:
- - Thu, 18 Sep 2025 09:06:16 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - bv/3aBCYrXw59a/qg5U1mw==
+ - DnLBQRNtFnclTyJXfyKqnA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:52 GMT
+ - Fri, 25 Sep 2026 00:04:01 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8558,7 +8686,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8576,41 +8704,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:06:59 GMT
+ - Fri, 25 Sep 2026 00:05:57 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:06:59 GMT
+ - Fri, 25 Sep 2026 00:05:57 GMT
etag:
- - '"0x8DDF692A08007D7"'
+ - '"0x8DF1A98A9089CDC"'
last-modified:
- - Thu, 18 Sep 2025 09:06:17 GMT
+ - Fri, 25 Sep 2026 00:05:08 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - R3KoM2kfOoD/NkAFRjFuqA==
+ - sd0gDAybdZBuWZ2am5ULCQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:53 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8618,7 +8750,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8636,41 +8768,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:00 GMT
+ - Fri, 25 Sep 2026 00:05:58 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:00 GMT
+ - Fri, 25 Sep 2026 00:05:58 GMT
etag:
- - '"0x8DDF692A1151057"'
+ - '"0x8DF1A98A7602F3A"'
last-modified:
- - Thu, 18 Sep 2025 09:06:18 GMT
+ - Fri, 25 Sep 2026 00:05:05 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - morBADnfqCkwBXXZU3hA6A==
+ - zGQZoDWt8Y5dJESc8TB0Mg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:54 GMT
+ - Fri, 25 Sep 2026 00:03:56 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8678,7 +8814,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8696,41 +8832,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:01 GMT
+ - Fri, 25 Sep 2026 00:05:59 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:00 GMT
+ - Fri, 25 Sep 2026 00:05:59 GMT
etag:
- - '"0x8DDF692A1C2676C"'
+ - '"0x8DF1A98A835172A"'
last-modified:
- - Thu, 18 Sep 2025 09:06:19 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - jMy7yZooIbu+xco5y0PnWA==
+ - pGxnukS6Fz7NjCuHvHJSOQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:55 GMT
+ - Fri, 25 Sep 2026 00:03:58 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8738,7 +8878,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8756,41 +8896,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:02 GMT
+ - Fri, 25 Sep 2026 00:06:00 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:02 GMT
+ - Fri, 25 Sep 2026 00:06:00 GMT
etag:
- - '"0x8DDF692A26B56BE"'
+ - '"0x8DF1A98AB35EC64"'
last-modified:
- - Thu, 18 Sep 2025 09:06:20 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - WWxxctNl0WEZ3Fkt0xSjXw==
+ - 09mN8BZH+J3xKBIdhMTn2A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:56 GMT
+ - Fri, 25 Sep 2026 00:04:04 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8798,7 +8942,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8816,41 +8960,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:03 GMT
+ - Fri, 25 Sep 2026 00:06:00 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:03 GMT
+ - Fri, 25 Sep 2026 00:06:00 GMT
etag:
- - '"0x8DDF692A30258DD"'
+ - '"0x8DF1A98A89EC6C8"'
last-modified:
- - Thu, 18 Sep 2025 09:06:21 GMT
+ - Fri, 25 Sep 2026 00:05:07 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 7SYtr6WWjvfHwEWZlFicyA==
+ - wxdWezoDBTifLE6AYPV4fw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:57 GMT
+ - Fri, 25 Sep 2026 00:03:59 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8858,7 +9006,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8876,41 +9024,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:04 GMT
+ - Fri, 25 Sep 2026 00:06:01 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:04 GMT
+ - Fri, 25 Sep 2026 00:06:01 GMT
etag:
- - '"0x8DDF692A399A8C5"'
+ - '"0x8DF1A98AACADDF8"'
last-modified:
- - Thu, 18 Sep 2025 09:06:22 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - a0gskKctLUTyJ98stcb+zw==
+ - pmShc94YBcMpNtkfJ6TS6A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:58 GMT
+ - Fri, 25 Sep 2026 00:04:03 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8918,7 +9070,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8936,41 +9088,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:05 GMT
+ - Fri, 25 Sep 2026 00:06:02 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:05 GMT
+ - Fri, 25 Sep 2026 00:06:02 GMT
etag:
- - '"0x8DDF692A42E8A5E"'
+ - '"0x8DF1A98A988B6BE"'
last-modified:
- - Thu, 18 Sep 2025 09:06:23 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - WsaYffpQ9TM4slY4craDlw==
+ - Qe2yDZak0qtkDUBcxAFmLQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:59 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -8978,7 +9134,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -8996,41 +9152,45 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:06 GMT
+ - Fri, 25 Sep 2026 00:06:03 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:06 GMT
+ - Fri, 25 Sep 2026 00:06:03 GMT
etag:
- - '"0x8DDF692A4C64EF9"'
+ - '"0x8DF1A98AA601E2F"'
last-modified:
- - Thu, 18 Sep 2025 09:06:24 GMT
+ - Fri, 25 Sep 2026 00:05:10 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - sOOZ8v6f8otceBtL552N9g==
+ - LZvKP6Iz3MAPrql/iSMbxw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:05:00 GMT
+ - Fri, 25 Sep 2026 00:04:02 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -9038,7 +9198,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -9056,13 +9216,13 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:07 GMT
+ - Fri, 25 Sep 2026 00:06:03 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/readme
response:
@@ -9079,19 +9239,23 @@ interactions:
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:07 GMT
+ - Fri, 25 Sep 2026 00:06:04 GMT
etag:
- - '"0x8DDF6928C9CBE3B"'
+ - '"0x8DF1A98A6F513E4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:44 GMT
+ - Fri, 25 Sep 2026 00:05:04 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- sYGKK8OX+WLKH+2bAe4tSQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:19 GMT
+ - Fri, 25 Sep 2026 00:03:55 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -9099,7 +9263,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -9117,232 +9281,232 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:08 GMT
+ - Fri, 25 Sep 2026 00:06:04 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list
response:
body:
string: "\uFEFFapple/file_0Thu,
- 18 Sep 2025 09:04:20 GMTThu, 18 Sep 2025 09:05:45
- GMT0x8DDF6928D32D70B133application/octet-stream463PUGutVKR3lenQoi0GnQ==BlockBlobunlockedavailabletrueapple/file_1Thu, 18
- Sep 2025 09:04:21 GMTThu, 18 Sep 2025 09:05:46
- GMT0x8DDF6928DCBABD6133application/octet-streamlIufFEDWG6WiNe7Vy5LCzw==BlockBlobunlockedavailabletrueapple/file_2Thu, 18
- Sep 2025 09:04:22 GMTThu, 18 Sep 2025 09:05:47
- GMT0x8DDF6928E639742133application/octet-streamXr/A/PPBjAvfBnZM6eDygw==BlockBlobunlockedavailabletrueapple/file_3Thu, 18
- Sep 2025 09:04:23 GMTThu, 18 Sep 2025 09:05:48
- GMT0x8DDF6928EFB82B1133application/octet-streamQijJ1Y0HkLHaWhK6JWu6Yg==BlockBlobunlockedavailabletrueapple/file_4Thu, 18
- Sep 2025 09:04:24 GMTThu, 18 Sep 2025 09:05:49
- GMT0x8DDF6928F9B7B7D133application/octet-streamvbz+Yk+D6XrKvX4okS2Gag==BlockBlobunlockedavailabletrueapple/file_5Thu, 18
- Sep 2025 09:04:25 GMTThu, 18 Sep 2025 09:05:50
- GMT0x8DDF692903622F3133application/octet-streamqyjPb9RRf+qh1mpxe/Zaxw==BlockBlobunlockedavailabletrueapple/file_6Thu, 18
- Sep 2025 09:04:26 GMTThu, 18 Sep 2025 09:05:51
- GMT0x8DDF69290CCFE23133application/octet-streamwXEJFzIgI33TKjbAlix3iw==BlockBlobunlockedavailabletrueapple/file_7Thu, 18
- Sep 2025 09:04:27 GMTThu, 18 Sep 2025 09:05:52
- GMT0x8DDF692917000B0133application/octet-streamNzN/gbDos0zQ+5NCHOgUcg==BlockBlobunlockedavailabletrueapple/file_8Thu, 18
- Sep 2025 09:04:28 GMTThu, 18 Sep 2025 09:05:53
- GMT0x8DDF692920702D0133application/octet-stream7GVacxDUKYkMT8VjT+tTgQ==BlockBlobunlockedavailabletrueapple/file_9Thu, 18
- Sep 2025 09:04:29 GMTThu, 18 Sep 2025 09:05:54
- GMT0x8DDF69292A135A6133application/octet-streamo8CI3RsPcRLdlmTyY8+r6g==BlockBlobunlockedavailabletruebutter/charlie/file_0Thu,
- 18 Sep 2025 09:04:40 GMTThu, 18 Sep 2025 09:06:05
- GMT0x8DDF692994A3486142application/octet-stream12k9IzPedeb+H+LE+BwTOA==BlockBlobunlockedavailabletruebutter/charlie/file_1Thu,
- 18 Sep 2025 09:04:41 GMTThu, 18 Sep 2025 09:06:06
- GMT0x8DDF69299E991B0142application/octet-streamsUqNOb1eQlwHIMNckVPXPg==BlockBlobunlockedavailabletruebutter/charlie/file_2Thu,
- 18 Sep 2025 09:04:42 GMTThu, 18 Sep 2025 09:06:07
- GMT0x8DDF6929A882C57142application/octet-stream+YjkzJyA0LKFHmtciQvWFQ==BlockBlobunlockedavailabletruebutter/charlie/file_3Thu,
- 18 Sep 2025 09:04:43 GMTThu, 18 Sep 2025 09:06:08
- GMT0x8DDF6929B1F7C43142application/octet-streamW8HiNitS2lkGz6qjH7CrZQ==BlockBlobunlockedavailabletruebutter/charlie/file_4Thu,
- 18 Sep 2025 09:04:45 GMTThu, 18 Sep 2025 09:06:09
- GMT0x8DDF6929BBB81CF142application/octet-stream4WhpVWYJewUiPB/Y/me8Dw==BlockBlobunlockedavailabletruebutter/charlie/file_5Thu,
- 18 Sep 2025 09:04:46 GMTThu, 18 Sep 2025 09:06:10
- GMT0x8DDF6929C50B13B142application/octet-streamZATCeWkPFprrI77nB4jlog==BlockBlobunlockedavailabletruebutter/charlie/file_6Thu,
- 18 Sep 2025 09:04:47 GMTThu, 18 Sep 2025 09:06:11
- GMT0x8DDF6929CEA2196142application/octet-streamj+DrkJK59KnMzrIuQL6f/A==BlockBlobunlockedavailabletruebutter/charlie/file_7Thu,
- 18 Sep 2025 09:04:48 GMTThu, 18 Sep 2025 09:06:12
- GMT0x8DDF6929D8AB5D9142application/octet-streamwwDWQLvZbZoN0I3o6XBEpA==BlockBlobunlockedavailabletruebutter/charlie/file_8Thu,
- 18 Sep 2025 09:04:49 GMTThu, 18 Sep 2025 09:06:13
- GMT0x8DDF6929E1FE545142application/octet-streamNPMm4IvOROmjNzvELlJ7bw==BlockBlobunlockedavailabletruebutter/charlie/file_9Thu,
- 18 Sep 2025 09:04:50 GMTThu, 18 Sep 2025 09:06:14
- GMT0x8DDF6929EB7D0B4142application/octet-streamNMybN+t/RJ+B3CVzAMzBaQ==BlockBlobunlockedavailabletruebutter/file_0Thu, 18
- Sep 2025 09:04:30 GMTThu, 18 Sep 2025 09:05:55
- GMT0x8DDF692933BB64B134application/octet-stream9b/sO4zifnv0UaZvaocIvw==BlockBlobunlockedavailabletruebutter/file_1Thu, 18
- Sep 2025 09:04:31 GMTThu, 18 Sep 2025 09:05:56
- GMT0x8DDF69293D30632134application/octet-streamn0rDSbIqToxjMieFptvIGQ==BlockBlobunlockedavailabletruebutter/file_2Thu, 18
- Sep 2025 09:04:32 GMTThu, 18 Sep 2025 09:05:57
- GMT0x8DDF6929466FE78134application/octet-streamDYolaEf0RsVC992imxxZRw==BlockBlobunlockedavailabletruebutter/file_3Thu, 18
- Sep 2025 09:04:33 GMTThu, 18 Sep 2025 09:05:58
- GMT0x8DDF69295002108134application/octet-streami+ji99hYpAoJqdy08+A6Wg==BlockBlobunlockedavailabletruebutter/file_4Thu, 18
- Sep 2025 09:04:34 GMTThu, 18 Sep 2025 09:05:59
- GMT0x8DDF692959F5750134application/octet-streammF4KjAXjgSo1MW7Yp6kyFA==BlockBlobunlockedavailabletruebutter/file_5Thu, 18
- Sep 2025 09:04:35 GMTThu, 18 Sep 2025 09:06:00
- GMT0x8DDF69296363283134application/octet-streamJxT6YyZzPZCJhVE6ZQkQaA==BlockBlobunlockedavailabletruebutter/file_6Thu, 18
- Sep 2025 09:04:36 GMTThu, 18 Sep 2025 09:06:01
- GMT0x8DDF69296D2ACBA134application/octet-streampynwCV43Rcrth0ZFpJjl8A==BlockBlobunlockedavailabletruebutter/file_7Thu, 18
- Sep 2025 09:04:37 GMTThu, 18 Sep 2025 09:06:02
- GMT0x8DDF692976DA204134application/octet-streamfrgRHx8gFlDTsguZeuIKDQ==BlockBlobunlockedavailabletruebutter/file_8Thu, 18
- Sep 2025 09:04:38 GMTThu, 18 Sep 2025 09:06:03
- GMT0x8DDF6929807871A134application/octet-streamMkCfTLxExqfymIm9fRRP+g==BlockBlobunlockedavailabletruebutter/file_9Thu, 18
- Sep 2025 09:04:39 GMTThu, 18 Sep 2025 09:06:04
- GMT0x8DDF69298AECA95134application/octet-streamYvHfoHTcH+y2539JPKMHRw==BlockBlobunlockedavailabletrueduff/edward/file_0Thu,
- 18 Sep 2025 09:04:51 GMTThu, 18 Sep 2025 09:06:15
- GMT0x8DDF6929F4CB25A139application/octet-streamHZ5VvkfcPrB30qCGJtpzHA==BlockBlobunlockedavailabletrueduff/edward/file_1Thu,
- 18 Sep 2025 09:04:52 GMTThu, 18 Sep 2025 09:06:16
- GMT0x8DDF6929FE3B472139application/octet-streambv/3aBCYrXw59a/qg5U1mw==BlockBlobunlockedavailabletrueduff/edward/file_2Thu,
- 18 Sep 2025 09:04:53 GMTThu, 18 Sep 2025 09:06:17
- GMT0x8DDF692A08007D7139application/octet-streamR3KoM2kfOoD/NkAFRjFuqA==BlockBlobunlockedavailabletrueduff/edward/file_3Thu,
- 18 Sep 2025 09:04:54 GMTThu, 18 Sep 2025 09:06:18
- GMT0x8DDF692A1151057139application/octet-streammorBADnfqCkwBXXZU3hA6A==BlockBlobunlockedavailabletrueduff/edward/file_4Thu,
- 18 Sep 2025 09:04:55 GMTThu, 18 Sep 2025 09:06:19
- GMT0x8DDF692A1C2676C139application/octet-streamjMy7yZooIbu+xco5y0PnWA==BlockBlobunlockedavailabletrueduff/edward/file_5Thu,
- 18 Sep 2025 09:04:56 GMTThu, 18 Sep 2025 09:06:20
- GMT0x8DDF692A26B56BE139application/octet-streamWWxxctNl0WEZ3Fkt0xSjXw==BlockBlobunlockedavailabletrueduff/edward/file_6Thu,
- 18 Sep 2025 09:04:57 GMTThu, 18 Sep 2025 09:06:21
- GMT0x8DDF692A30258DD139application/octet-stream7SYtr6WWjvfHwEWZlFicyA==BlockBlobunlockedavailabletrueduff/edward/file_7Thu,
- 18 Sep 2025 09:04:58 GMTThu, 18 Sep 2025 09:06:22
- GMT0x8DDF692A399A8C5139application/octet-streama0gskKctLUTyJ98stcb+zw==BlockBlobunlockedavailabletrueduff/edward/file_8Thu,
- 18 Sep 2025 09:04:59 GMTThu, 18 Sep 2025 09:06:23
- GMT0x8DDF692A42E8A5E139application/octet-streamWsaYffpQ9TM4slY4craDlw==BlockBlobunlockedavailabletrueduff/edward/file_9Thu,
- 18 Sep 2025 09:05:00 GMTThu, 18 Sep 2025 09:06:24
- GMT0x8DDF692A4C64EF9139application/octet-streamsOOZ8v6f8otceBtL552N9g==BlockBlobunlockedavailabletruereadmeThu, 18 Sep 2025
- 09:04:19 GMTThu, 18 Sep 2025 09:05:44 GMT0x8DDF6928C9CBE3B87application/octet-streamapple/file_0Fri,
+ 25 Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B49F95F4101application/octet-streamIttzcHmb0E6yCZslpuPw1A==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 00:04:28 GMTFri, 25 Sep 2026 00:05:31
+ GMT0x8DF1A98B6C8F884101application/octet-streamKy86k6/sL9E/AduD5Dvghg==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 00:04:26 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B5F56BE6101application/octet-streamVFct9Mc6MBwDbT88fXarRA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 00:04:23 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B4363D8B101application/octet-streamphwTrnZMY9i06YYgrOQnig==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:28
+ GMT0x8DF1A98B50AF273101application/octet-stream/HuiF61YVAUfVdKz18uP8Q==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:33
+ GMT0x8DF1A98B80E1BE9101application/octet-streamCvWiulprfZhTPzyafnVFlQ==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 00:04:25 GMTFri, 25 Sep 2026 00:05:29
+ GMT0x8DF1A98B58AF9B4101application/octet-stream486OkvW8vp9u/9aEK8KnSw==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B79ABD46101application/octet-streamQtsIKJZ1l9DJfk8UuCAH9w==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 00:04:27 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B65E933F101application/octet-stream13BG86AuGtf3vrzFRULiDA==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 00:04:29 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B7319622101application/octet-streamgonIw6Mm9y6Lwl0mS9zqyA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
+ 25 Sep 2026 00:04:14 GMTFri, 25 Sep 2026 00:05:20
+ GMT0x8DF1A98B0652647110application/octet-streamXbtDGjFHEIZZx793eGZPsA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
+ 25 Sep 2026 00:04:19 GMTFri, 25 Sep 2026 00:05:24
+ GMT0x8DF1A98B29125E7110application/octet-streamcN1XKD1FzfAQDdREtSw/7w==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B1A6CC8B110application/octet-streamx6YzJb9YrpMLY+4pP0INPA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
+ 25 Sep 2026 00:04:13 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AFFA78F3110application/octet-streamFqmYxqi+B9UUgUkk/DMOiw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
+ 25 Sep 2026 00:04:15 GMTFri, 25 Sep 2026 00:05:21
+ GMT0x8DF1A98B0D199D5110application/octet-streamY+qUsq9BoUPXQX9kldKOVQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
+ 25 Sep 2026 00:04:22 GMTFri, 25 Sep 2026 00:05:26
+ GMT0x8DF1A98B3CCDC9B110application/octet-streamHpWc8xctKhZr8Ui60QuGjg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
+ 25 Sep 2026 00:04:17 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B13C0C21110application/octet-streamvrzicRbCAIuEGm8/8nN7dA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
+ 25 Sep 2026 00:04:21 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B3637FD0110application/octet-streamNOXHACzIcvk8kcldttK/MQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:23
+ GMT0x8DF1A98B210A2B7110application/octet-stream2/OZGEBlGHRrQo1E/WuQpw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_9Fri,
+ 25 Sep 2026 00:04:20 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B2FA9421110application/octet-streamnDNirqTlng3V44RFowp5PA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:13
+ GMT0x8DF1A98AC0B4D18102application/octet-streamUkUA0/FHbUXIe+47c6Dj9Q==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 00:04:10 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AE3A835B102application/octet-streameRVeHTq6T6dxb0zP9rq+fw==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 00:04:08 GMTFri, 25 Sep 2026 00:05:15
+ GMT0x8DF1A98AD644FAA102application/octet-stream9nT2gYpljB8wufj8Np3SCg==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 00:04:05 GMTFri, 25 Sep 2026 00:05:12
+ GMT0x8DF1A98ABA176AA102application/octet-stream8A3Po3vddYDGBGfja7/XQw==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98AC8CC667102application/octet-stream9zWE7vtoJnOJHv6tUmqfwQ==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 00:04:12 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AF8F9187102application/octet-stream8VIxMUtGyMBSRHL/4f1dgA==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 00:04:07 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98ACFB3CC7102application/octet-streamNkl8ajHVjxKl9UmKy7TaZA==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:18
+ GMT0x8DF1A98AF0F532C102application/octet-streamfpY5g8HejIN8pEh2a+nPvg==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 00:04:09 GMTFri, 25 Sep 2026 00:05:16
+ GMT0x8DF1A98ADCDC775102application/octet-streameRydkbCQ5SJKqFIWYL7VqA==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AEA58BF5102application/octet-streambJ+4nl0DQc5Lvg891+rFxw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
+ 25 Sep 2026 00:03:57 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A7CA7A9D107application/octet-stream71w8dBoGUSSVbamKcO1lFw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
+ 25 Sep 2026 00:04:01 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A9F3622D107application/octet-streamDnLBQRNtFnclTyJXfyKqnA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:08
+ GMT0x8DF1A98A9089CDC107application/octet-streamsd0gDAybdZBuWZ2am5ULCQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
+ 25 Sep 2026 00:03:56 GMTFri, 25 Sep 2026 00:05:05
+ GMT0x8DF1A98A7602F3A107application/octet-streamzGQZoDWt8Y5dJESc8TB0Mg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
+ 25 Sep 2026 00:03:58 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A835172A107application/octet-streampGxnukS6Fz7NjCuHvHJSOQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
+ 25 Sep 2026 00:04:04 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AB35EC64107application/octet-stream09mN8BZH+J3xKBIdhMTn2A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
+ 25 Sep 2026 00:03:59 GMTFri, 25 Sep 2026 00:05:07
+ GMT0x8DF1A98A89EC6C8107application/octet-streamwxdWezoDBTifLE6AYPV4fw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
+ 25 Sep 2026 00:04:03 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AACADDF8107application/octet-streampmShc94YBcMpNtkfJ6TS6A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A988B6BE107application/octet-streamQe2yDZak0qtkDUBcxAFmLQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_9Fri,
+ 25 Sep 2026 00:04:02 GMTFri, 25 Sep 2026 00:05:10
+ GMT0x8DF1A98AA601E2F107application/octet-streamLZvKP6Iz3MAPrql/iSMbxw==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 00:03:55 GMTFri, 25 Sep 2026 00:05:04 GMT0x8DF1A98A6F513E487application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:07:08 GMT
+ - Fri, 25 Sep 2026 00:06:04 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -9360,232 +9524,232 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:09 GMT
+ - Fri, 25 Sep 2026 00:06:05 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list
response:
body:
string: "\uFEFFapple/file_0Thu,
- 18 Sep 2025 09:04:20 GMTThu, 18 Sep 2025 09:05:45
- GMT0x8DDF6928D32D70B133application/octet-stream463PUGutVKR3lenQoi0GnQ==BlockBlobunlockedavailabletrueapple/file_1Thu, 18
- Sep 2025 09:04:21 GMTThu, 18 Sep 2025 09:05:46
- GMT0x8DDF6928DCBABD6133application/octet-streamlIufFEDWG6WiNe7Vy5LCzw==BlockBlobunlockedavailabletrueapple/file_2Thu, 18
- Sep 2025 09:04:22 GMTThu, 18 Sep 2025 09:05:47
- GMT0x8DDF6928E639742133application/octet-streamXr/A/PPBjAvfBnZM6eDygw==BlockBlobunlockedavailabletrueapple/file_3Thu, 18
- Sep 2025 09:04:23 GMTThu, 18 Sep 2025 09:05:48
- GMT0x8DDF6928EFB82B1133application/octet-streamQijJ1Y0HkLHaWhK6JWu6Yg==BlockBlobunlockedavailabletrueapple/file_4Thu, 18
- Sep 2025 09:04:24 GMTThu, 18 Sep 2025 09:05:49
- GMT0x8DDF6928F9B7B7D133application/octet-streamvbz+Yk+D6XrKvX4okS2Gag==BlockBlobunlockedavailabletrueapple/file_5Thu, 18
- Sep 2025 09:04:25 GMTThu, 18 Sep 2025 09:05:50
- GMT0x8DDF692903622F3133application/octet-streamqyjPb9RRf+qh1mpxe/Zaxw==BlockBlobunlockedavailabletrueapple/file_6Thu, 18
- Sep 2025 09:04:26 GMTThu, 18 Sep 2025 09:05:51
- GMT0x8DDF69290CCFE23133application/octet-streamwXEJFzIgI33TKjbAlix3iw==BlockBlobunlockedavailabletrueapple/file_7Thu, 18
- Sep 2025 09:04:27 GMTThu, 18 Sep 2025 09:05:52
- GMT0x8DDF692917000B0133application/octet-streamNzN/gbDos0zQ+5NCHOgUcg==BlockBlobunlockedavailabletrueapple/file_8Thu, 18
- Sep 2025 09:04:28 GMTThu, 18 Sep 2025 09:05:53
- GMT0x8DDF692920702D0133application/octet-stream7GVacxDUKYkMT8VjT+tTgQ==BlockBlobunlockedavailabletrueapple/file_9Thu, 18
- Sep 2025 09:04:29 GMTThu, 18 Sep 2025 09:05:54
- GMT0x8DDF69292A135A6133application/octet-streamo8CI3RsPcRLdlmTyY8+r6g==BlockBlobunlockedavailabletruebutter/charlie/file_0Thu,
- 18 Sep 2025 09:04:40 GMTThu, 18 Sep 2025 09:06:05
- GMT0x8DDF692994A3486142application/octet-stream12k9IzPedeb+H+LE+BwTOA==BlockBlobunlockedavailabletruebutter/charlie/file_1Thu,
- 18 Sep 2025 09:04:41 GMTThu, 18 Sep 2025 09:06:06
- GMT0x8DDF69299E991B0142application/octet-streamsUqNOb1eQlwHIMNckVPXPg==BlockBlobunlockedavailabletruebutter/charlie/file_2Thu,
- 18 Sep 2025 09:04:42 GMTThu, 18 Sep 2025 09:06:07
- GMT0x8DDF6929A882C57142application/octet-stream+YjkzJyA0LKFHmtciQvWFQ==BlockBlobunlockedavailabletruebutter/charlie/file_3Thu,
- 18 Sep 2025 09:04:43 GMTThu, 18 Sep 2025 09:06:08
- GMT0x8DDF6929B1F7C43142application/octet-streamW8HiNitS2lkGz6qjH7CrZQ==BlockBlobunlockedavailabletruebutter/charlie/file_4Thu,
- 18 Sep 2025 09:04:45 GMTThu, 18 Sep 2025 09:06:09
- GMT0x8DDF6929BBB81CF142application/octet-stream4WhpVWYJewUiPB/Y/me8Dw==BlockBlobunlockedavailabletruebutter/charlie/file_5Thu,
- 18 Sep 2025 09:04:46 GMTThu, 18 Sep 2025 09:06:10
- GMT0x8DDF6929C50B13B142application/octet-streamZATCeWkPFprrI77nB4jlog==BlockBlobunlockedavailabletruebutter/charlie/file_6Thu,
- 18 Sep 2025 09:04:47 GMTThu, 18 Sep 2025 09:06:11
- GMT0x8DDF6929CEA2196142application/octet-streamj+DrkJK59KnMzrIuQL6f/A==BlockBlobunlockedavailabletruebutter/charlie/file_7Thu,
- 18 Sep 2025 09:04:48 GMTThu, 18 Sep 2025 09:06:12
- GMT0x8DDF6929D8AB5D9142application/octet-streamwwDWQLvZbZoN0I3o6XBEpA==BlockBlobunlockedavailabletruebutter/charlie/file_8Thu,
- 18 Sep 2025 09:04:49 GMTThu, 18 Sep 2025 09:06:13
- GMT0x8DDF6929E1FE545142application/octet-streamNPMm4IvOROmjNzvELlJ7bw==BlockBlobunlockedavailabletruebutter/charlie/file_9Thu,
- 18 Sep 2025 09:04:50 GMTThu, 18 Sep 2025 09:06:14
- GMT0x8DDF6929EB7D0B4142application/octet-streamNMybN+t/RJ+B3CVzAMzBaQ==BlockBlobunlockedavailabletruebutter/file_0Thu, 18
- Sep 2025 09:04:30 GMTThu, 18 Sep 2025 09:05:55
- GMT0x8DDF692933BB64B134application/octet-stream9b/sO4zifnv0UaZvaocIvw==BlockBlobunlockedavailabletruebutter/file_1Thu, 18
- Sep 2025 09:04:31 GMTThu, 18 Sep 2025 09:05:56
- GMT0x8DDF69293D30632134application/octet-streamn0rDSbIqToxjMieFptvIGQ==BlockBlobunlockedavailabletruebutter/file_2Thu, 18
- Sep 2025 09:04:32 GMTThu, 18 Sep 2025 09:05:57
- GMT0x8DDF6929466FE78134application/octet-streamDYolaEf0RsVC992imxxZRw==BlockBlobunlockedavailabletruebutter/file_3Thu, 18
- Sep 2025 09:04:33 GMTThu, 18 Sep 2025 09:05:58
- GMT0x8DDF69295002108134application/octet-streami+ji99hYpAoJqdy08+A6Wg==BlockBlobunlockedavailabletruebutter/file_4Thu, 18
- Sep 2025 09:04:34 GMTThu, 18 Sep 2025 09:05:59
- GMT0x8DDF692959F5750134application/octet-streammF4KjAXjgSo1MW7Yp6kyFA==BlockBlobunlockedavailabletruebutter/file_5Thu, 18
- Sep 2025 09:04:35 GMTThu, 18 Sep 2025 09:06:00
- GMT0x8DDF69296363283134application/octet-streamJxT6YyZzPZCJhVE6ZQkQaA==BlockBlobunlockedavailabletruebutter/file_6Thu, 18
- Sep 2025 09:04:36 GMTThu, 18 Sep 2025 09:06:01
- GMT0x8DDF69296D2ACBA134application/octet-streampynwCV43Rcrth0ZFpJjl8A==BlockBlobunlockedavailabletruebutter/file_7Thu, 18
- Sep 2025 09:04:37 GMTThu, 18 Sep 2025 09:06:02
- GMT0x8DDF692976DA204134application/octet-streamfrgRHx8gFlDTsguZeuIKDQ==BlockBlobunlockedavailabletruebutter/file_8Thu, 18
- Sep 2025 09:04:38 GMTThu, 18 Sep 2025 09:06:03
- GMT0x8DDF6929807871A134application/octet-streamMkCfTLxExqfymIm9fRRP+g==BlockBlobunlockedavailabletruebutter/file_9Thu, 18
- Sep 2025 09:04:39 GMTThu, 18 Sep 2025 09:06:04
- GMT0x8DDF69298AECA95134application/octet-streamYvHfoHTcH+y2539JPKMHRw==BlockBlobunlockedavailabletrueduff/edward/file_0Thu,
- 18 Sep 2025 09:04:51 GMTThu, 18 Sep 2025 09:06:15
- GMT0x8DDF6929F4CB25A139application/octet-streamHZ5VvkfcPrB30qCGJtpzHA==BlockBlobunlockedavailabletrueduff/edward/file_1Thu,
- 18 Sep 2025 09:04:52 GMTThu, 18 Sep 2025 09:06:16
- GMT0x8DDF6929FE3B472139application/octet-streambv/3aBCYrXw59a/qg5U1mw==BlockBlobunlockedavailabletrueduff/edward/file_2Thu,
- 18 Sep 2025 09:04:53 GMTThu, 18 Sep 2025 09:06:17
- GMT0x8DDF692A08007D7139application/octet-streamR3KoM2kfOoD/NkAFRjFuqA==BlockBlobunlockedavailabletrueduff/edward/file_3Thu,
- 18 Sep 2025 09:04:54 GMTThu, 18 Sep 2025 09:06:18
- GMT0x8DDF692A1151057139application/octet-streammorBADnfqCkwBXXZU3hA6A==BlockBlobunlockedavailabletrueduff/edward/file_4Thu,
- 18 Sep 2025 09:04:55 GMTThu, 18 Sep 2025 09:06:19
- GMT0x8DDF692A1C2676C139application/octet-streamjMy7yZooIbu+xco5y0PnWA==BlockBlobunlockedavailabletrueduff/edward/file_5Thu,
- 18 Sep 2025 09:04:56 GMTThu, 18 Sep 2025 09:06:20
- GMT0x8DDF692A26B56BE139application/octet-streamWWxxctNl0WEZ3Fkt0xSjXw==BlockBlobunlockedavailabletrueduff/edward/file_6Thu,
- 18 Sep 2025 09:04:57 GMTThu, 18 Sep 2025 09:06:21
- GMT0x8DDF692A30258DD139application/octet-stream7SYtr6WWjvfHwEWZlFicyA==BlockBlobunlockedavailabletrueduff/edward/file_7Thu,
- 18 Sep 2025 09:04:58 GMTThu, 18 Sep 2025 09:06:22
- GMT0x8DDF692A399A8C5139application/octet-streama0gskKctLUTyJ98stcb+zw==BlockBlobunlockedavailabletrueduff/edward/file_8Thu,
- 18 Sep 2025 09:04:59 GMTThu, 18 Sep 2025 09:06:23
- GMT0x8DDF692A42E8A5E139application/octet-streamWsaYffpQ9TM4slY4craDlw==BlockBlobunlockedavailabletrueduff/edward/file_9Thu,
- 18 Sep 2025 09:05:00 GMTThu, 18 Sep 2025 09:06:24
- GMT0x8DDF692A4C64EF9139application/octet-streamsOOZ8v6f8otceBtL552N9g==BlockBlobunlockedavailabletruereadmeThu, 18 Sep 2025
- 09:04:19 GMTThu, 18 Sep 2025 09:05:44 GMT0x8DDF6928C9CBE3B87application/octet-streamapple/file_0Fri,
+ 25 Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B49F95F4101application/octet-streamIttzcHmb0E6yCZslpuPw1A==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 00:04:28 GMTFri, 25 Sep 2026 00:05:31
+ GMT0x8DF1A98B6C8F884101application/octet-streamKy86k6/sL9E/AduD5Dvghg==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 00:04:26 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B5F56BE6101application/octet-streamVFct9Mc6MBwDbT88fXarRA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 00:04:23 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B4363D8B101application/octet-streamphwTrnZMY9i06YYgrOQnig==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:28
+ GMT0x8DF1A98B50AF273101application/octet-stream/HuiF61YVAUfVdKz18uP8Q==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:33
+ GMT0x8DF1A98B80E1BE9101application/octet-streamCvWiulprfZhTPzyafnVFlQ==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 00:04:25 GMTFri, 25 Sep 2026 00:05:29
+ GMT0x8DF1A98B58AF9B4101application/octet-stream486OkvW8vp9u/9aEK8KnSw==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B79ABD46101application/octet-streamQtsIKJZ1l9DJfk8UuCAH9w==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 00:04:27 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B65E933F101application/octet-stream13BG86AuGtf3vrzFRULiDA==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 00:04:29 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B7319622101application/octet-streamgonIw6Mm9y6Lwl0mS9zqyA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
+ 25 Sep 2026 00:04:14 GMTFri, 25 Sep 2026 00:05:20
+ GMT0x8DF1A98B0652647110application/octet-streamXbtDGjFHEIZZx793eGZPsA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
+ 25 Sep 2026 00:04:19 GMTFri, 25 Sep 2026 00:05:24
+ GMT0x8DF1A98B29125E7110application/octet-streamcN1XKD1FzfAQDdREtSw/7w==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B1A6CC8B110application/octet-streamx6YzJb9YrpMLY+4pP0INPA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
+ 25 Sep 2026 00:04:13 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AFFA78F3110application/octet-streamFqmYxqi+B9UUgUkk/DMOiw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
+ 25 Sep 2026 00:04:15 GMTFri, 25 Sep 2026 00:05:21
+ GMT0x8DF1A98B0D199D5110application/octet-streamY+qUsq9BoUPXQX9kldKOVQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
+ 25 Sep 2026 00:04:22 GMTFri, 25 Sep 2026 00:05:26
+ GMT0x8DF1A98B3CCDC9B110application/octet-streamHpWc8xctKhZr8Ui60QuGjg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
+ 25 Sep 2026 00:04:17 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B13C0C21110application/octet-streamvrzicRbCAIuEGm8/8nN7dA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
+ 25 Sep 2026 00:04:21 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B3637FD0110application/octet-streamNOXHACzIcvk8kcldttK/MQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:23
+ GMT0x8DF1A98B210A2B7110application/octet-stream2/OZGEBlGHRrQo1E/WuQpw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_9Fri,
+ 25 Sep 2026 00:04:20 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B2FA9421110application/octet-streamnDNirqTlng3V44RFowp5PA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:13
+ GMT0x8DF1A98AC0B4D18102application/octet-streamUkUA0/FHbUXIe+47c6Dj9Q==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 00:04:10 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AE3A835B102application/octet-streameRVeHTq6T6dxb0zP9rq+fw==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 00:04:08 GMTFri, 25 Sep 2026 00:05:15
+ GMT0x8DF1A98AD644FAA102application/octet-stream9nT2gYpljB8wufj8Np3SCg==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 00:04:05 GMTFri, 25 Sep 2026 00:05:12
+ GMT0x8DF1A98ABA176AA102application/octet-stream8A3Po3vddYDGBGfja7/XQw==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98AC8CC667102application/octet-stream9zWE7vtoJnOJHv6tUmqfwQ==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 00:04:12 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AF8F9187102application/octet-stream8VIxMUtGyMBSRHL/4f1dgA==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 00:04:07 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98ACFB3CC7102application/octet-streamNkl8ajHVjxKl9UmKy7TaZA==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:18
+ GMT0x8DF1A98AF0F532C102application/octet-streamfpY5g8HejIN8pEh2a+nPvg==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 00:04:09 GMTFri, 25 Sep 2026 00:05:16
+ GMT0x8DF1A98ADCDC775102application/octet-streameRydkbCQ5SJKqFIWYL7VqA==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AEA58BF5102application/octet-streambJ+4nl0DQc5Lvg891+rFxw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
+ 25 Sep 2026 00:03:57 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A7CA7A9D107application/octet-stream71w8dBoGUSSVbamKcO1lFw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
+ 25 Sep 2026 00:04:01 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A9F3622D107application/octet-streamDnLBQRNtFnclTyJXfyKqnA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:08
+ GMT0x8DF1A98A9089CDC107application/octet-streamsd0gDAybdZBuWZ2am5ULCQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
+ 25 Sep 2026 00:03:56 GMTFri, 25 Sep 2026 00:05:05
+ GMT0x8DF1A98A7602F3A107application/octet-streamzGQZoDWt8Y5dJESc8TB0Mg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
+ 25 Sep 2026 00:03:58 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A835172A107application/octet-streampGxnukS6Fz7NjCuHvHJSOQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
+ 25 Sep 2026 00:04:04 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AB35EC64107application/octet-stream09mN8BZH+J3xKBIdhMTn2A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
+ 25 Sep 2026 00:03:59 GMTFri, 25 Sep 2026 00:05:07
+ GMT0x8DF1A98A89EC6C8107application/octet-streamwxdWezoDBTifLE6AYPV4fw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
+ 25 Sep 2026 00:04:03 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AACADDF8107application/octet-streampmShc94YBcMpNtkfJ6TS6A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A988B6BE107application/octet-streamQe2yDZak0qtkDUBcxAFmLQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_9Fri,
+ 25 Sep 2026 00:04:02 GMTFri, 25 Sep 2026 00:05:10
+ GMT0x8DF1A98AA601E2F107application/octet-streamLZvKP6Iz3MAPrql/iSMbxw==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 00:03:55 GMTFri, 25 Sep 2026 00:05:04 GMT0x8DF1A98A6F513E487application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:07:10 GMT
+ - Fri, 25 Sep 2026 00:06:05 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -9603,41 +9767,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:11 GMT
+ - Fri, 25 Sep 2026 00:06:06 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:11 GMT
+ - Fri, 25 Sep 2026 00:06:07 GMT
etag:
- - '"0x8DDF6928D32D70B"'
+ - '"0x8DF1A98B49F95F4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - IttzcHmb0E6yCZslpuPw1A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -9645,7 +9813,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -9663,41 +9831,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:12 GMT
+ - Fri, 25 Sep 2026 00:06:07 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:12 GMT
+ - Fri, 25 Sep 2026 00:06:07 GMT
etag:
- - '"0x8DDF6928DCBABD6"'
+ - '"0x8DF1A98B6C8F884"'
last-modified:
- - Thu, 18 Sep 2025 09:05:46 GMT
+ - Fri, 25 Sep 2026 00:05:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - lIufFEDWG6WiNe7Vy5LCzw==
+ - Ky86k6/sL9E/AduD5Dvghg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:21 GMT
+ - Fri, 25 Sep 2026 00:04:28 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -9705,7 +9877,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -9723,41 +9895,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:13 GMT
+ - Fri, 25 Sep 2026 00:06:08 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:13 GMT
+ - Fri, 25 Sep 2026 00:06:07 GMT
etag:
- - '"0x8DDF6928E639742"'
+ - '"0x8DF1A98B5F56BE6"'
last-modified:
- - Thu, 18 Sep 2025 09:05:47 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Xr/A/PPBjAvfBnZM6eDygw==
+ - VFct9Mc6MBwDbT88fXarRA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:22 GMT
+ - Fri, 25 Sep 2026 00:04:26 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -9765,7 +9941,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -9783,41 +9959,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:14 GMT
+ - Fri, 25 Sep 2026 00:06:08 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:14 GMT
+ - Fri, 25 Sep 2026 00:06:09 GMT
etag:
- - '"0x8DDF6928EFB82B1"'
+ - '"0x8DF1A98B4363D8B"'
last-modified:
- - Thu, 18 Sep 2025 09:05:48 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - QijJ1Y0HkLHaWhK6JWu6Yg==
+ - phwTrnZMY9i06YYgrOQnig==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:23 GMT
+ - Fri, 25 Sep 2026 00:04:23 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -9825,7 +10005,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -9843,41 +10023,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:15 GMT
+ - Fri, 25 Sep 2026 00:06:09 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:16 GMT
+ - Fri, 25 Sep 2026 00:06:09 GMT
etag:
- - '"0x8DDF6928F9B7B7D"'
+ - '"0x8DF1A98B50AF273"'
last-modified:
- - Thu, 18 Sep 2025 09:05:49 GMT
+ - Fri, 25 Sep 2026 00:05:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - vbz+Yk+D6XrKvX4okS2Gag==
+ - /HuiF61YVAUfVdKz18uP8Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:24 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -9885,7 +10069,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -9903,41 +10087,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:16 GMT
+ - Fri, 25 Sep 2026 00:06:10 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:16 GMT
+ - Fri, 25 Sep 2026 00:06:10 GMT
etag:
- - '"0x8DDF692903622F3"'
+ - '"0x8DF1A98B80E1BE9"'
last-modified:
- - Thu, 18 Sep 2025 09:05:50 GMT
+ - Fri, 25 Sep 2026 00:05:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - qyjPb9RRf+qh1mpxe/Zaxw==
+ - CvWiulprfZhTPzyafnVFlQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:25 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -9945,7 +10133,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -9963,41 +10151,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:17 GMT
+ - Fri, 25 Sep 2026 00:06:11 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:17 GMT
+ - Fri, 25 Sep 2026 00:06:10 GMT
etag:
- - '"0x8DDF69290CCFE23"'
+ - '"0x8DF1A98B58AF9B4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:51 GMT
+ - Fri, 25 Sep 2026 00:05:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - wXEJFzIgI33TKjbAlix3iw==
+ - 486OkvW8vp9u/9aEK8KnSw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:26 GMT
+ - Fri, 25 Sep 2026 00:04:25 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10005,7 +10197,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10023,41 +10215,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:18 GMT
+ - Fri, 25 Sep 2026 00:06:11 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:19 GMT
+ - Fri, 25 Sep 2026 00:06:12 GMT
etag:
- - '"0x8DDF692917000B0"'
+ - '"0x8DF1A98B79ABD46"'
last-modified:
- - Thu, 18 Sep 2025 09:05:52 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NzN/gbDos0zQ+5NCHOgUcg==
+ - QtsIKJZ1l9DJfk8UuCAH9w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:27 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10065,7 +10261,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10083,41 +10279,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:19 GMT
+ - Fri, 25 Sep 2026 00:06:12 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:19 GMT
+ - Fri, 25 Sep 2026 00:06:12 GMT
etag:
- - '"0x8DDF692920702D0"'
+ - '"0x8DF1A98B65E933F"'
last-modified:
- - Thu, 18 Sep 2025 09:05:53 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 7GVacxDUKYkMT8VjT+tTgQ==
+ - 13BG86AuGtf3vrzFRULiDA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:28 GMT
+ - Fri, 25 Sep 2026 00:04:27 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10125,7 +10325,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10143,41 +10343,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:20 GMT
+ - Fri, 25 Sep 2026 00:06:13 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:20 GMT
+ - Fri, 25 Sep 2026 00:06:13 GMT
etag:
- - '"0x8DDF69292A135A6"'
+ - '"0x8DF1A98B7319622"'
last-modified:
- - Thu, 18 Sep 2025 09:05:54 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - o8CI3RsPcRLdlmTyY8+r6g==
+ - gonIw6Mm9y6Lwl0mS9zqyA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:29 GMT
+ - Fri, 25 Sep 2026 00:04:29 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10185,7 +10389,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10203,41 +10407,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:21 GMT
+ - Fri, 25 Sep 2026 00:06:13 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:22 GMT
+ - Fri, 25 Sep 2026 00:06:14 GMT
etag:
- - '"0x8DDF692994A3486"'
+ - '"0x8DF1A98B0652647"'
last-modified:
- - Thu, 18 Sep 2025 09:06:05 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 12k9IzPedeb+H+LE+BwTOA==
+ - XbtDGjFHEIZZx793eGZPsA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:40 GMT
+ - Fri, 25 Sep 2026 00:04:14 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10245,7 +10453,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10263,41 +10471,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:22 GMT
+ - Fri, 25 Sep 2026 00:06:14 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:22 GMT
+ - Fri, 25 Sep 2026 00:06:14 GMT
etag:
- - '"0x8DDF69299E991B0"'
+ - '"0x8DF1A98B29125E7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:06 GMT
+ - Fri, 25 Sep 2026 00:05:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - sUqNOb1eQlwHIMNckVPXPg==
+ - cN1XKD1FzfAQDdREtSw/7w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:41 GMT
+ - Fri, 25 Sep 2026 00:04:19 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10305,7 +10517,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10323,41 +10535,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:23 GMT
+ - Fri, 25 Sep 2026 00:06:15 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:24 GMT
+ - Fri, 25 Sep 2026 00:06:15 GMT
etag:
- - '"0x8DDF6929A882C57"'
+ - '"0x8DF1A98B1A6CC8B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:07 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - +YjkzJyA0LKFHmtciQvWFQ==
+ - x6YzJb9YrpMLY+4pP0INPA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:42 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10365,7 +10581,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10383,41 +10599,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:24 GMT
+ - Fri, 25 Sep 2026 00:06:16 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:24 GMT
+ - Fri, 25 Sep 2026 00:06:16 GMT
etag:
- - '"0x8DDF6929B1F7C43"'
+ - '"0x8DF1A98AFFA78F3"'
last-modified:
- - Thu, 18 Sep 2025 09:06:08 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - W8HiNitS2lkGz6qjH7CrZQ==
+ - FqmYxqi+B9UUgUkk/DMOiw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:43 GMT
+ - Fri, 25 Sep 2026 00:04:13 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10425,7 +10645,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10443,41 +10663,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:25 GMT
+ - Fri, 25 Sep 2026 00:06:16 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:25 GMT
+ - Fri, 25 Sep 2026 00:06:16 GMT
etag:
- - '"0x8DDF6929BBB81CF"'
+ - '"0x8DF1A98B0D199D5"'
last-modified:
- - Thu, 18 Sep 2025 09:06:09 GMT
+ - Fri, 25 Sep 2026 00:05:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 4WhpVWYJewUiPB/Y/me8Dw==
+ - Y+qUsq9BoUPXQX9kldKOVQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:45 GMT
+ - Fri, 25 Sep 2026 00:04:15 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10485,7 +10709,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10503,41 +10727,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:26 GMT
+ - Fri, 25 Sep 2026 00:06:17 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:26 GMT
+ - Fri, 25 Sep 2026 00:06:17 GMT
etag:
- - '"0x8DDF6929C50B13B"'
+ - '"0x8DF1A98B3CCDC9B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:10 GMT
+ - Fri, 25 Sep 2026 00:05:26 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - ZATCeWkPFprrI77nB4jlog==
+ - HpWc8xctKhZr8Ui60QuGjg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:46 GMT
+ - Fri, 25 Sep 2026 00:04:22 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10545,7 +10773,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10563,41 +10791,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:27 GMT
+ - Fri, 25 Sep 2026 00:06:18 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:28 GMT
+ - Fri, 25 Sep 2026 00:06:18 GMT
etag:
- - '"0x8DDF6929CEA2196"'
+ - '"0x8DF1A98B13C0C21"'
last-modified:
- - Thu, 18 Sep 2025 09:06:11 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - j+DrkJK59KnMzrIuQL6f/A==
+ - vrzicRbCAIuEGm8/8nN7dA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:47 GMT
+ - Fri, 25 Sep 2026 00:04:17 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10605,7 +10837,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10623,41 +10855,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:28 GMT
+ - Fri, 25 Sep 2026 00:06:18 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:29 GMT
+ - Fri, 25 Sep 2026 00:06:19 GMT
etag:
- - '"0x8DDF6929D8AB5D9"'
+ - '"0x8DF1A98B3637FD0"'
last-modified:
- - Thu, 18 Sep 2025 09:06:12 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - wwDWQLvZbZoN0I3o6XBEpA==
+ - NOXHACzIcvk8kcldttK/MQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:48 GMT
+ - Fri, 25 Sep 2026 00:04:21 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10665,7 +10901,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10683,41 +10919,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:29 GMT
+ - Fri, 25 Sep 2026 00:06:19 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:29 GMT
+ - Fri, 25 Sep 2026 00:06:19 GMT
etag:
- - '"0x8DDF6929E1FE545"'
+ - '"0x8DF1A98B210A2B7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:13 GMT
+ - Fri, 25 Sep 2026 00:05:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NPMm4IvOROmjNzvELlJ7bw==
+ - 2/OZGEBlGHRrQo1E/WuQpw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:49 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10725,7 +10965,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10743,41 +10983,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:30 GMT
+ - Fri, 25 Sep 2026 00:06:20 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:30 GMT
+ - Fri, 25 Sep 2026 00:06:20 GMT
etag:
- - '"0x8DDF6929EB7D0B4"'
+ - '"0x8DF1A98B2FA9421"'
last-modified:
- - Thu, 18 Sep 2025 09:06:14 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NMybN+t/RJ+B3CVzAMzBaQ==
+ - nDNirqTlng3V44RFowp5PA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:50 GMT
+ - Fri, 25 Sep 2026 00:04:20 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10785,7 +11029,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10803,41 +11047,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:31 GMT
+ - Fri, 25 Sep 2026 00:06:21 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:32 GMT
+ - Fri, 25 Sep 2026 00:06:20 GMT
etag:
- - '"0x8DDF692933BB64B"'
+ - '"0x8DF1A98AC0B4D18"'
last-modified:
- - Thu, 18 Sep 2025 09:05:55 GMT
+ - Fri, 25 Sep 2026 00:05:13 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 9b/sO4zifnv0UaZvaocIvw==
+ - UkUA0/FHbUXIe+47c6Dj9Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:30 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10845,7 +11093,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10863,41 +11111,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:32 GMT
+ - Fri, 25 Sep 2026 00:06:21 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:33 GMT
+ - Fri, 25 Sep 2026 00:06:21 GMT
etag:
- - '"0x8DDF69293D30632"'
+ - '"0x8DF1A98AE3A835B"'
last-modified:
- - Thu, 18 Sep 2025 09:05:56 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - n0rDSbIqToxjMieFptvIGQ==
+ - eRVeHTq6T6dxb0zP9rq+fw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:31 GMT
+ - Fri, 25 Sep 2026 00:04:10 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10905,7 +11157,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10923,41 +11175,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:33 GMT
+ - Fri, 25 Sep 2026 00:06:22 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:33 GMT
+ - Fri, 25 Sep 2026 00:06:22 GMT
etag:
- - '"0x8DDF6929466FE78"'
+ - '"0x8DF1A98AD644FAA"'
last-modified:
- - Thu, 18 Sep 2025 09:05:57 GMT
+ - Fri, 25 Sep 2026 00:05:15 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - DYolaEf0RsVC992imxxZRw==
+ - 9nT2gYpljB8wufj8Np3SCg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:32 GMT
+ - Fri, 25 Sep 2026 00:04:08 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -10965,7 +11221,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -10983,41 +11239,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:34 GMT
+ - Fri, 25 Sep 2026 00:06:23 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:35 GMT
+ - Fri, 25 Sep 2026 00:06:23 GMT
etag:
- - '"0x8DDF69295002108"'
+ - '"0x8DF1A98ABA176AA"'
last-modified:
- - Thu, 18 Sep 2025 09:05:58 GMT
+ - Fri, 25 Sep 2026 00:05:12 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - i+ji99hYpAoJqdy08+A6Wg==
+ - 8A3Po3vddYDGBGfja7/XQw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:33 GMT
+ - Fri, 25 Sep 2026 00:04:05 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11025,7 +11285,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11043,41 +11303,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:35 GMT
+ - Fri, 25 Sep 2026 00:06:23 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:35 GMT
+ - Fri, 25 Sep 2026 00:06:24 GMT
etag:
- - '"0x8DDF692959F5750"'
+ - '"0x8DF1A98AC8CC667"'
last-modified:
- - Thu, 18 Sep 2025 09:05:59 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - mF4KjAXjgSo1MW7Yp6kyFA==
+ - 9zWE7vtoJnOJHv6tUmqfwQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:34 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11085,7 +11349,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11103,41 +11367,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:36 GMT
+ - Fri, 25 Sep 2026 00:06:24 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:37 GMT
+ - Fri, 25 Sep 2026 00:06:24 GMT
etag:
- - '"0x8DDF69296363283"'
+ - '"0x8DF1A98AF8F9187"'
last-modified:
- - Thu, 18 Sep 2025 09:06:00 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - JxT6YyZzPZCJhVE6ZQkQaA==
+ - 8VIxMUtGyMBSRHL/4f1dgA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:35 GMT
+ - Fri, 25 Sep 2026 00:04:12 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11145,7 +11413,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11163,41 +11431,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:37 GMT
+ - Fri, 25 Sep 2026 00:06:25 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:38 GMT
+ - Fri, 25 Sep 2026 00:06:25 GMT
etag:
- - '"0x8DDF69296D2ACBA"'
+ - '"0x8DF1A98ACFB3CC7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:01 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - pynwCV43Rcrth0ZFpJjl8A==
+ - Nkl8ajHVjxKl9UmKy7TaZA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:36 GMT
+ - Fri, 25 Sep 2026 00:04:07 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11205,7 +11477,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11223,41 +11495,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:38 GMT
+ - Fri, 25 Sep 2026 00:06:26 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:38 GMT
+ - Fri, 25 Sep 2026 00:06:25 GMT
etag:
- - '"0x8DDF692976DA204"'
+ - '"0x8DF1A98AF0F532C"'
last-modified:
- - Thu, 18 Sep 2025 09:06:02 GMT
+ - Fri, 25 Sep 2026 00:05:18 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - frgRHx8gFlDTsguZeuIKDQ==
+ - fpY5g8HejIN8pEh2a+nPvg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:37 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11265,7 +11541,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11283,41 +11559,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:39 GMT
+ - Fri, 25 Sep 2026 00:06:26 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:39 GMT
+ - Fri, 25 Sep 2026 00:06:26 GMT
etag:
- - '"0x8DDF6929807871A"'
+ - '"0x8DF1A98ADCDC775"'
last-modified:
- - Thu, 18 Sep 2025 09:06:03 GMT
+ - Fri, 25 Sep 2026 00:05:16 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - MkCfTLxExqfymIm9fRRP+g==
+ - eRydkbCQ5SJKqFIWYL7VqA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:38 GMT
+ - Fri, 25 Sep 2026 00:04:09 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11325,7 +11605,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11343,41 +11623,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:40 GMT
+ - Fri, 25 Sep 2026 00:06:27 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:41 GMT
+ - Fri, 25 Sep 2026 00:06:27 GMT
etag:
- - '"0x8DDF69298AECA95"'
+ - '"0x8DF1A98AEA58BF5"'
last-modified:
- - Thu, 18 Sep 2025 09:06:04 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - YvHfoHTcH+y2539JPKMHRw==
+ - bJ+4nl0DQc5Lvg891+rFxw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:39 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11385,7 +11669,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11403,41 +11687,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:41 GMT
+ - Fri, 25 Sep 2026 00:06:28 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:42 GMT
+ - Fri, 25 Sep 2026 00:06:28 GMT
etag:
- - '"0x8DDF6929F4CB25A"'
+ - '"0x8DF1A98A7CA7A9D"'
last-modified:
- - Thu, 18 Sep 2025 09:06:15 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - HZ5VvkfcPrB30qCGJtpzHA==
+ - 71w8dBoGUSSVbamKcO1lFw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:51 GMT
+ - Fri, 25 Sep 2026 00:03:57 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11445,7 +11733,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11463,41 +11751,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:42 GMT
+ - Fri, 25 Sep 2026 00:06:28 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:43 GMT
+ - Fri, 25 Sep 2026 00:06:29 GMT
etag:
- - '"0x8DDF6929FE3B472"'
+ - '"0x8DF1A98A9F3622D"'
last-modified:
- - Thu, 18 Sep 2025 09:06:16 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - bv/3aBCYrXw59a/qg5U1mw==
+ - DnLBQRNtFnclTyJXfyKqnA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:52 GMT
+ - Fri, 25 Sep 2026 00:04:01 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11505,7 +11797,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11523,41 +11815,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:43 GMT
+ - Fri, 25 Sep 2026 00:06:29 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:44 GMT
+ - Fri, 25 Sep 2026 00:06:30 GMT
etag:
- - '"0x8DDF692A08007D7"'
+ - '"0x8DF1A98A9089CDC"'
last-modified:
- - Thu, 18 Sep 2025 09:06:17 GMT
+ - Fri, 25 Sep 2026 00:05:08 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - R3KoM2kfOoD/NkAFRjFuqA==
+ - sd0gDAybdZBuWZ2am5ULCQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:53 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11565,7 +11861,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11583,41 +11879,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:44 GMT
+ - Fri, 25 Sep 2026 00:06:30 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:45 GMT
+ - Fri, 25 Sep 2026 00:06:30 GMT
etag:
- - '"0x8DDF692A1151057"'
+ - '"0x8DF1A98A7602F3A"'
last-modified:
- - Thu, 18 Sep 2025 09:06:18 GMT
+ - Fri, 25 Sep 2026 00:05:05 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - morBADnfqCkwBXXZU3hA6A==
+ - zGQZoDWt8Y5dJESc8TB0Mg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:54 GMT
+ - Fri, 25 Sep 2026 00:03:56 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11625,7 +11925,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11643,41 +11943,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:45 GMT
+ - Fri, 25 Sep 2026 00:06:31 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:46 GMT
+ - Fri, 25 Sep 2026 00:06:31 GMT
etag:
- - '"0x8DDF692A1C2676C"'
+ - '"0x8DF1A98A835172A"'
last-modified:
- - Thu, 18 Sep 2025 09:06:19 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - jMy7yZooIbu+xco5y0PnWA==
+ - pGxnukS6Fz7NjCuHvHJSOQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:55 GMT
+ - Fri, 25 Sep 2026 00:03:58 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11685,7 +11989,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11703,41 +12007,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:46 GMT
+ - Fri, 25 Sep 2026 00:06:31 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:47 GMT
+ - Fri, 25 Sep 2026 00:06:32 GMT
etag:
- - '"0x8DDF692A26B56BE"'
+ - '"0x8DF1A98AB35EC64"'
last-modified:
- - Thu, 18 Sep 2025 09:06:20 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - WWxxctNl0WEZ3Fkt0xSjXw==
+ - 09mN8BZH+J3xKBIdhMTn2A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:56 GMT
+ - Fri, 25 Sep 2026 00:04:04 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11745,7 +12053,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11763,41 +12071,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:47 GMT
+ - Fri, 25 Sep 2026 00:06:32 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:47 GMT
+ - Fri, 25 Sep 2026 00:06:33 GMT
etag:
- - '"0x8DDF692A30258DD"'
+ - '"0x8DF1A98A89EC6C8"'
last-modified:
- - Thu, 18 Sep 2025 09:06:21 GMT
+ - Fri, 25 Sep 2026 00:05:07 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 7SYtr6WWjvfHwEWZlFicyA==
+ - wxdWezoDBTifLE6AYPV4fw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:57 GMT
+ - Fri, 25 Sep 2026 00:03:59 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11805,7 +12117,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11823,41 +12135,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:48 GMT
+ - Fri, 25 Sep 2026 00:06:33 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:49 GMT
+ - Fri, 25 Sep 2026 00:06:33 GMT
etag:
- - '"0x8DDF692A399A8C5"'
+ - '"0x8DF1A98AACADDF8"'
last-modified:
- - Thu, 18 Sep 2025 09:06:22 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - a0gskKctLUTyJ98stcb+zw==
+ - pmShc94YBcMpNtkfJ6TS6A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:58 GMT
+ - Fri, 25 Sep 2026 00:04:03 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11865,7 +12181,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11883,41 +12199,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:49 GMT
+ - Fri, 25 Sep 2026 00:06:33 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:50 GMT
+ - Fri, 25 Sep 2026 00:06:34 GMT
etag:
- - '"0x8DDF692A42E8A5E"'
+ - '"0x8DF1A98A988B6BE"'
last-modified:
- - Thu, 18 Sep 2025 09:06:23 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - WsaYffpQ9TM4slY4craDlw==
+ - Qe2yDZak0qtkDUBcxAFmLQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:59 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11925,7 +12245,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -11943,41 +12263,45 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:50 GMT
+ - Fri, 25 Sep 2026 00:06:34 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:51 GMT
+ - Fri, 25 Sep 2026 00:06:34 GMT
etag:
- - '"0x8DDF692A4C64EF9"'
+ - '"0x8DF1A98AA601E2F"'
last-modified:
- - Thu, 18 Sep 2025 09:06:24 GMT
+ - Fri, 25 Sep 2026 00:05:10 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - sOOZ8v6f8otceBtL552N9g==
+ - LZvKP6Iz3MAPrql/iSMbxw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:05:00 GMT
+ - Fri, 25 Sep 2026 00:04:02 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -11985,7 +12309,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12003,13 +12327,13 @@ interactions:
ParameterSetName:
- -s -d --overwrite --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:51 GMT
+ - Fri, 25 Sep 2026 00:06:35 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/readme
response:
@@ -12026,19 +12350,23 @@ interactions:
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:52 GMT
+ - Fri, 25 Sep 2026 00:06:35 GMT
etag:
- - '"0x8DDF6928C9CBE3B"'
+ - '"0x8DF1A98A6F513E4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:44 GMT
+ - Fri, 25 Sep 2026 00:05:04 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- sYGKK8OX+WLKH+2bAe4tSQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:19 GMT
+ - Fri, 25 Sep 2026 00:03:55 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12046,7 +12374,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12064,232 +12392,232 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:53 GMT
+ - Fri, 25 Sep 2026 00:06:36 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list
response:
body:
string: "\uFEFFapple/file_0Thu,
- 18 Sep 2025 09:04:20 GMTThu, 18 Sep 2025 09:05:45
- GMT0x8DDF6928D32D70B133application/octet-stream463PUGutVKR3lenQoi0GnQ==BlockBlobunlockedavailabletrueapple/file_1Thu, 18
- Sep 2025 09:04:21 GMTThu, 18 Sep 2025 09:05:46
- GMT0x8DDF6928DCBABD6133application/octet-streamlIufFEDWG6WiNe7Vy5LCzw==BlockBlobunlockedavailabletrueapple/file_2Thu, 18
- Sep 2025 09:04:22 GMTThu, 18 Sep 2025 09:05:47
- GMT0x8DDF6928E639742133application/octet-streamXr/A/PPBjAvfBnZM6eDygw==BlockBlobunlockedavailabletrueapple/file_3Thu, 18
- Sep 2025 09:04:23 GMTThu, 18 Sep 2025 09:05:48
- GMT0x8DDF6928EFB82B1133application/octet-streamQijJ1Y0HkLHaWhK6JWu6Yg==BlockBlobunlockedavailabletrueapple/file_4Thu, 18
- Sep 2025 09:04:24 GMTThu, 18 Sep 2025 09:05:49
- GMT0x8DDF6928F9B7B7D133application/octet-streamvbz+Yk+D6XrKvX4okS2Gag==BlockBlobunlockedavailabletrueapple/file_5Thu, 18
- Sep 2025 09:04:25 GMTThu, 18 Sep 2025 09:05:50
- GMT0x8DDF692903622F3133application/octet-streamqyjPb9RRf+qh1mpxe/Zaxw==BlockBlobunlockedavailabletrueapple/file_6Thu, 18
- Sep 2025 09:04:26 GMTThu, 18 Sep 2025 09:05:51
- GMT0x8DDF69290CCFE23133application/octet-streamwXEJFzIgI33TKjbAlix3iw==BlockBlobunlockedavailabletrueapple/file_7Thu, 18
- Sep 2025 09:04:27 GMTThu, 18 Sep 2025 09:05:52
- GMT0x8DDF692917000B0133application/octet-streamNzN/gbDos0zQ+5NCHOgUcg==BlockBlobunlockedavailabletrueapple/file_8Thu, 18
- Sep 2025 09:04:28 GMTThu, 18 Sep 2025 09:05:53
- GMT0x8DDF692920702D0133application/octet-stream7GVacxDUKYkMT8VjT+tTgQ==BlockBlobunlockedavailabletrueapple/file_9Thu, 18
- Sep 2025 09:04:29 GMTThu, 18 Sep 2025 09:05:54
- GMT0x8DDF69292A135A6133application/octet-streamo8CI3RsPcRLdlmTyY8+r6g==BlockBlobunlockedavailabletruebutter/charlie/file_0Thu,
- 18 Sep 2025 09:04:40 GMTThu, 18 Sep 2025 09:06:05
- GMT0x8DDF692994A3486142application/octet-stream12k9IzPedeb+H+LE+BwTOA==BlockBlobunlockedavailabletruebutter/charlie/file_1Thu,
- 18 Sep 2025 09:04:41 GMTThu, 18 Sep 2025 09:06:06
- GMT0x8DDF69299E991B0142application/octet-streamsUqNOb1eQlwHIMNckVPXPg==BlockBlobunlockedavailabletruebutter/charlie/file_2Thu,
- 18 Sep 2025 09:04:42 GMTThu, 18 Sep 2025 09:06:07
- GMT0x8DDF6929A882C57142application/octet-stream+YjkzJyA0LKFHmtciQvWFQ==BlockBlobunlockedavailabletruebutter/charlie/file_3Thu,
- 18 Sep 2025 09:04:43 GMTThu, 18 Sep 2025 09:06:08
- GMT0x8DDF6929B1F7C43142application/octet-streamW8HiNitS2lkGz6qjH7CrZQ==BlockBlobunlockedavailabletruebutter/charlie/file_4Thu,
- 18 Sep 2025 09:04:45 GMTThu, 18 Sep 2025 09:06:09
- GMT0x8DDF6929BBB81CF142application/octet-stream4WhpVWYJewUiPB/Y/me8Dw==BlockBlobunlockedavailabletruebutter/charlie/file_5Thu,
- 18 Sep 2025 09:04:46 GMTThu, 18 Sep 2025 09:06:10
- GMT0x8DDF6929C50B13B142application/octet-streamZATCeWkPFprrI77nB4jlog==BlockBlobunlockedavailabletruebutter/charlie/file_6Thu,
- 18 Sep 2025 09:04:47 GMTThu, 18 Sep 2025 09:06:11
- GMT0x8DDF6929CEA2196142application/octet-streamj+DrkJK59KnMzrIuQL6f/A==BlockBlobunlockedavailabletruebutter/charlie/file_7Thu,
- 18 Sep 2025 09:04:48 GMTThu, 18 Sep 2025 09:06:12
- GMT0x8DDF6929D8AB5D9142application/octet-streamwwDWQLvZbZoN0I3o6XBEpA==BlockBlobunlockedavailabletruebutter/charlie/file_8Thu,
- 18 Sep 2025 09:04:49 GMTThu, 18 Sep 2025 09:06:13
- GMT0x8DDF6929E1FE545142application/octet-streamNPMm4IvOROmjNzvELlJ7bw==BlockBlobunlockedavailabletruebutter/charlie/file_9Thu,
- 18 Sep 2025 09:04:50 GMTThu, 18 Sep 2025 09:06:14
- GMT0x8DDF6929EB7D0B4142application/octet-streamNMybN+t/RJ+B3CVzAMzBaQ==BlockBlobunlockedavailabletruebutter/file_0Thu, 18
- Sep 2025 09:04:30 GMTThu, 18 Sep 2025 09:05:55
- GMT0x8DDF692933BB64B134application/octet-stream9b/sO4zifnv0UaZvaocIvw==BlockBlobunlockedavailabletruebutter/file_1Thu, 18
- Sep 2025 09:04:31 GMTThu, 18 Sep 2025 09:05:56
- GMT0x8DDF69293D30632134application/octet-streamn0rDSbIqToxjMieFptvIGQ==BlockBlobunlockedavailabletruebutter/file_2Thu, 18
- Sep 2025 09:04:32 GMTThu, 18 Sep 2025 09:05:57
- GMT0x8DDF6929466FE78134application/octet-streamDYolaEf0RsVC992imxxZRw==BlockBlobunlockedavailabletruebutter/file_3Thu, 18
- Sep 2025 09:04:33 GMTThu, 18 Sep 2025 09:05:58
- GMT0x8DDF69295002108134application/octet-streami+ji99hYpAoJqdy08+A6Wg==BlockBlobunlockedavailabletruebutter/file_4Thu, 18
- Sep 2025 09:04:34 GMTThu, 18 Sep 2025 09:05:59
- GMT0x8DDF692959F5750134application/octet-streammF4KjAXjgSo1MW7Yp6kyFA==BlockBlobunlockedavailabletruebutter/file_5Thu, 18
- Sep 2025 09:04:35 GMTThu, 18 Sep 2025 09:06:00
- GMT0x8DDF69296363283134application/octet-streamJxT6YyZzPZCJhVE6ZQkQaA==BlockBlobunlockedavailabletruebutter/file_6Thu, 18
- Sep 2025 09:04:36 GMTThu, 18 Sep 2025 09:06:01
- GMT0x8DDF69296D2ACBA134application/octet-streampynwCV43Rcrth0ZFpJjl8A==BlockBlobunlockedavailabletruebutter/file_7Thu, 18
- Sep 2025 09:04:37 GMTThu, 18 Sep 2025 09:06:02
- GMT0x8DDF692976DA204134application/octet-streamfrgRHx8gFlDTsguZeuIKDQ==BlockBlobunlockedavailabletruebutter/file_8Thu, 18
- Sep 2025 09:04:38 GMTThu, 18 Sep 2025 09:06:03
- GMT0x8DDF6929807871A134application/octet-streamMkCfTLxExqfymIm9fRRP+g==BlockBlobunlockedavailabletruebutter/file_9Thu, 18
- Sep 2025 09:04:39 GMTThu, 18 Sep 2025 09:06:04
- GMT0x8DDF69298AECA95134application/octet-streamYvHfoHTcH+y2539JPKMHRw==BlockBlobunlockedavailabletrueduff/edward/file_0Thu,
- 18 Sep 2025 09:04:51 GMTThu, 18 Sep 2025 09:06:15
- GMT0x8DDF6929F4CB25A139application/octet-streamHZ5VvkfcPrB30qCGJtpzHA==BlockBlobunlockedavailabletrueduff/edward/file_1Thu,
- 18 Sep 2025 09:04:52 GMTThu, 18 Sep 2025 09:06:16
- GMT0x8DDF6929FE3B472139application/octet-streambv/3aBCYrXw59a/qg5U1mw==BlockBlobunlockedavailabletrueduff/edward/file_2Thu,
- 18 Sep 2025 09:04:53 GMTThu, 18 Sep 2025 09:06:17
- GMT0x8DDF692A08007D7139application/octet-streamR3KoM2kfOoD/NkAFRjFuqA==BlockBlobunlockedavailabletrueduff/edward/file_3Thu,
- 18 Sep 2025 09:04:54 GMTThu, 18 Sep 2025 09:06:18
- GMT0x8DDF692A1151057139application/octet-streammorBADnfqCkwBXXZU3hA6A==BlockBlobunlockedavailabletrueduff/edward/file_4Thu,
- 18 Sep 2025 09:04:55 GMTThu, 18 Sep 2025 09:06:19
- GMT0x8DDF692A1C2676C139application/octet-streamjMy7yZooIbu+xco5y0PnWA==BlockBlobunlockedavailabletrueduff/edward/file_5Thu,
- 18 Sep 2025 09:04:56 GMTThu, 18 Sep 2025 09:06:20
- GMT0x8DDF692A26B56BE139application/octet-streamWWxxctNl0WEZ3Fkt0xSjXw==BlockBlobunlockedavailabletrueduff/edward/file_6Thu,
- 18 Sep 2025 09:04:57 GMTThu, 18 Sep 2025 09:06:21
- GMT0x8DDF692A30258DD139application/octet-stream7SYtr6WWjvfHwEWZlFicyA==BlockBlobunlockedavailabletrueduff/edward/file_7Thu,
- 18 Sep 2025 09:04:58 GMTThu, 18 Sep 2025 09:06:22
- GMT0x8DDF692A399A8C5139application/octet-streama0gskKctLUTyJ98stcb+zw==BlockBlobunlockedavailabletrueduff/edward/file_8Thu,
- 18 Sep 2025 09:04:59 GMTThu, 18 Sep 2025 09:06:23
- GMT0x8DDF692A42E8A5E139application/octet-streamWsaYffpQ9TM4slY4craDlw==BlockBlobunlockedavailabletrueduff/edward/file_9Thu,
- 18 Sep 2025 09:05:00 GMTThu, 18 Sep 2025 09:06:24
- GMT0x8DDF692A4C64EF9139application/octet-streamsOOZ8v6f8otceBtL552N9g==BlockBlobunlockedavailabletruereadmeThu, 18 Sep 2025
- 09:04:19 GMTThu, 18 Sep 2025 09:05:44 GMT0x8DDF6928C9CBE3B87application/octet-streamapple/file_0Fri,
+ 25 Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B49F95F4101application/octet-streamIttzcHmb0E6yCZslpuPw1A==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 00:04:28 GMTFri, 25 Sep 2026 00:05:31
+ GMT0x8DF1A98B6C8F884101application/octet-streamKy86k6/sL9E/AduD5Dvghg==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 00:04:26 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B5F56BE6101application/octet-streamVFct9Mc6MBwDbT88fXarRA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 00:04:23 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B4363D8B101application/octet-streamphwTrnZMY9i06YYgrOQnig==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:28
+ GMT0x8DF1A98B50AF273101application/octet-stream/HuiF61YVAUfVdKz18uP8Q==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:33
+ GMT0x8DF1A98B80E1BE9101application/octet-streamCvWiulprfZhTPzyafnVFlQ==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 00:04:25 GMTFri, 25 Sep 2026 00:05:29
+ GMT0x8DF1A98B58AF9B4101application/octet-stream486OkvW8vp9u/9aEK8KnSw==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B79ABD46101application/octet-streamQtsIKJZ1l9DJfk8UuCAH9w==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 00:04:27 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B65E933F101application/octet-stream13BG86AuGtf3vrzFRULiDA==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 00:04:29 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B7319622101application/octet-streamgonIw6Mm9y6Lwl0mS9zqyA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
+ 25 Sep 2026 00:04:14 GMTFri, 25 Sep 2026 00:05:20
+ GMT0x8DF1A98B0652647110application/octet-streamXbtDGjFHEIZZx793eGZPsA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
+ 25 Sep 2026 00:04:19 GMTFri, 25 Sep 2026 00:05:24
+ GMT0x8DF1A98B29125E7110application/octet-streamcN1XKD1FzfAQDdREtSw/7w==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B1A6CC8B110application/octet-streamx6YzJb9YrpMLY+4pP0INPA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
+ 25 Sep 2026 00:04:13 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AFFA78F3110application/octet-streamFqmYxqi+B9UUgUkk/DMOiw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
+ 25 Sep 2026 00:04:15 GMTFri, 25 Sep 2026 00:05:21
+ GMT0x8DF1A98B0D199D5110application/octet-streamY+qUsq9BoUPXQX9kldKOVQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
+ 25 Sep 2026 00:04:22 GMTFri, 25 Sep 2026 00:05:26
+ GMT0x8DF1A98B3CCDC9B110application/octet-streamHpWc8xctKhZr8Ui60QuGjg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
+ 25 Sep 2026 00:04:17 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B13C0C21110application/octet-streamvrzicRbCAIuEGm8/8nN7dA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
+ 25 Sep 2026 00:04:21 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B3637FD0110application/octet-streamNOXHACzIcvk8kcldttK/MQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:23
+ GMT0x8DF1A98B210A2B7110application/octet-stream2/OZGEBlGHRrQo1E/WuQpw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_9Fri,
+ 25 Sep 2026 00:04:20 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B2FA9421110application/octet-streamnDNirqTlng3V44RFowp5PA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:13
+ GMT0x8DF1A98AC0B4D18102application/octet-streamUkUA0/FHbUXIe+47c6Dj9Q==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 00:04:10 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AE3A835B102application/octet-streameRVeHTq6T6dxb0zP9rq+fw==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 00:04:08 GMTFri, 25 Sep 2026 00:05:15
+ GMT0x8DF1A98AD644FAA102application/octet-stream9nT2gYpljB8wufj8Np3SCg==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 00:04:05 GMTFri, 25 Sep 2026 00:05:12
+ GMT0x8DF1A98ABA176AA102application/octet-stream8A3Po3vddYDGBGfja7/XQw==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98AC8CC667102application/octet-stream9zWE7vtoJnOJHv6tUmqfwQ==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 00:04:12 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AF8F9187102application/octet-stream8VIxMUtGyMBSRHL/4f1dgA==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 00:04:07 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98ACFB3CC7102application/octet-streamNkl8ajHVjxKl9UmKy7TaZA==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:18
+ GMT0x8DF1A98AF0F532C102application/octet-streamfpY5g8HejIN8pEh2a+nPvg==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 00:04:09 GMTFri, 25 Sep 2026 00:05:16
+ GMT0x8DF1A98ADCDC775102application/octet-streameRydkbCQ5SJKqFIWYL7VqA==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AEA58BF5102application/octet-streambJ+4nl0DQc5Lvg891+rFxw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
+ 25 Sep 2026 00:03:57 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A7CA7A9D107application/octet-stream71w8dBoGUSSVbamKcO1lFw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
+ 25 Sep 2026 00:04:01 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A9F3622D107application/octet-streamDnLBQRNtFnclTyJXfyKqnA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:08
+ GMT0x8DF1A98A9089CDC107application/octet-streamsd0gDAybdZBuWZ2am5ULCQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
+ 25 Sep 2026 00:03:56 GMTFri, 25 Sep 2026 00:05:05
+ GMT0x8DF1A98A7602F3A107application/octet-streamzGQZoDWt8Y5dJESc8TB0Mg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
+ 25 Sep 2026 00:03:58 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A835172A107application/octet-streampGxnukS6Fz7NjCuHvHJSOQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
+ 25 Sep 2026 00:04:04 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AB35EC64107application/octet-stream09mN8BZH+J3xKBIdhMTn2A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
+ 25 Sep 2026 00:03:59 GMTFri, 25 Sep 2026 00:05:07
+ GMT0x8DF1A98A89EC6C8107application/octet-streamwxdWezoDBTifLE6AYPV4fw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
+ 25 Sep 2026 00:04:03 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AACADDF8107application/octet-streampmShc94YBcMpNtkfJ6TS6A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A988B6BE107application/octet-streamQe2yDZak0qtkDUBcxAFmLQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_9Fri,
+ 25 Sep 2026 00:04:02 GMTFri, 25 Sep 2026 00:05:10
+ GMT0x8DF1A98AA601E2F107application/octet-streamLZvKP6Iz3MAPrql/iSMbxw==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 00:03:55 GMTFri, 25 Sep 2026 00:05:04 GMT0x8DF1A98A6F513E487application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:07:53 GMT
+ - Fri, 25 Sep 2026 00:06:36 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -12307,41 +12635,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:54 GMT
+ - Fri, 25 Sep 2026 00:06:37 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:55 GMT
+ - Fri, 25 Sep 2026 00:06:36 GMT
etag:
- - '"0x8DDF6928D32D70B"'
+ - '"0x8DF1A98B49F95F4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - IttzcHmb0E6yCZslpuPw1A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12349,7 +12681,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12367,41 +12699,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:55 GMT
+ - Fri, 25 Sep 2026 00:06:38 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:56 GMT
+ - Fri, 25 Sep 2026 00:06:37 GMT
etag:
- - '"0x8DDF6928DCBABD6"'
+ - '"0x8DF1A98B6C8F884"'
last-modified:
- - Thu, 18 Sep 2025 09:05:46 GMT
+ - Fri, 25 Sep 2026 00:05:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - lIufFEDWG6WiNe7Vy5LCzw==
+ - Ky86k6/sL9E/AduD5Dvghg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:21 GMT
+ - Fri, 25 Sep 2026 00:04:28 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12409,7 +12745,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12427,41 +12763,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:56 GMT
+ - Fri, 25 Sep 2026 00:06:38 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:56 GMT
+ - Fri, 25 Sep 2026 00:06:38 GMT
etag:
- - '"0x8DDF6928E639742"'
+ - '"0x8DF1A98B5F56BE6"'
last-modified:
- - Thu, 18 Sep 2025 09:05:47 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Xr/A/PPBjAvfBnZM6eDygw==
+ - VFct9Mc6MBwDbT88fXarRA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:22 GMT
+ - Fri, 25 Sep 2026 00:04:26 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12469,7 +12809,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12487,41 +12827,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:57 GMT
+ - Fri, 25 Sep 2026 00:06:39 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:58 GMT
+ - Fri, 25 Sep 2026 00:06:39 GMT
etag:
- - '"0x8DDF6928EFB82B1"'
+ - '"0x8DF1A98B4363D8B"'
last-modified:
- - Thu, 18 Sep 2025 09:05:48 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - QijJ1Y0HkLHaWhK6JWu6Yg==
+ - phwTrnZMY9i06YYgrOQnig==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:23 GMT
+ - Fri, 25 Sep 2026 00:04:23 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12529,7 +12873,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12547,41 +12891,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:58 GMT
+ - Fri, 25 Sep 2026 00:06:40 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:59 GMT
+ - Fri, 25 Sep 2026 00:06:40 GMT
etag:
- - '"0x8DDF6928F9B7B7D"'
+ - '"0x8DF1A98B50AF273"'
last-modified:
- - Thu, 18 Sep 2025 09:05:49 GMT
+ - Fri, 25 Sep 2026 00:05:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - vbz+Yk+D6XrKvX4okS2Gag==
+ - /HuiF61YVAUfVdKz18uP8Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:24 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12589,7 +12937,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12607,41 +12955,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:07:59 GMT
+ - Fri, 25 Sep 2026 00:06:40 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:07:59 GMT
+ - Fri, 25 Sep 2026 00:06:40 GMT
etag:
- - '"0x8DDF692903622F3"'
+ - '"0x8DF1A98B80E1BE9"'
last-modified:
- - Thu, 18 Sep 2025 09:05:50 GMT
+ - Fri, 25 Sep 2026 00:05:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - qyjPb9RRf+qh1mpxe/Zaxw==
+ - CvWiulprfZhTPzyafnVFlQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:25 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12649,7 +13001,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12667,41 +13019,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:00 GMT
+ - Fri, 25 Sep 2026 00:06:41 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:00 GMT
+ - Fri, 25 Sep 2026 00:06:41 GMT
etag:
- - '"0x8DDF69290CCFE23"'
+ - '"0x8DF1A98B58AF9B4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:51 GMT
+ - Fri, 25 Sep 2026 00:05:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - wXEJFzIgI33TKjbAlix3iw==
+ - 486OkvW8vp9u/9aEK8KnSw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:26 GMT
+ - Fri, 25 Sep 2026 00:04:25 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12709,7 +13065,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12727,41 +13083,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:01 GMT
+ - Fri, 25 Sep 2026 00:06:42 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:01 GMT
+ - Fri, 25 Sep 2026 00:06:42 GMT
etag:
- - '"0x8DDF692917000B0"'
+ - '"0x8DF1A98B79ABD46"'
last-modified:
- - Thu, 18 Sep 2025 09:05:52 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NzN/gbDos0zQ+5NCHOgUcg==
+ - QtsIKJZ1l9DJfk8UuCAH9w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:27 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12769,7 +13129,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12787,41 +13147,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:02 GMT
+ - Fri, 25 Sep 2026 00:06:43 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:02 GMT
+ - Fri, 25 Sep 2026 00:06:43 GMT
etag:
- - '"0x8DDF692920702D0"'
+ - '"0x8DF1A98B65E933F"'
last-modified:
- - Thu, 18 Sep 2025 09:05:53 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 7GVacxDUKYkMT8VjT+tTgQ==
+ - 13BG86AuGtf3vrzFRULiDA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:28 GMT
+ - Fri, 25 Sep 2026 00:04:27 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12829,7 +13193,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12847,41 +13211,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:03 GMT
+ - Fri, 25 Sep 2026 00:06:43 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:04 GMT
+ - Fri, 25 Sep 2026 00:06:43 GMT
etag:
- - '"0x8DDF69292A135A6"'
+ - '"0x8DF1A98B7319622"'
last-modified:
- - Thu, 18 Sep 2025 09:05:54 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - o8CI3RsPcRLdlmTyY8+r6g==
+ - gonIw6Mm9y6Lwl0mS9zqyA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:29 GMT
+ - Fri, 25 Sep 2026 00:04:29 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12889,7 +13257,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12907,41 +13275,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:04 GMT
+ - Fri, 25 Sep 2026 00:06:44 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:05 GMT
+ - Fri, 25 Sep 2026 00:06:45 GMT
etag:
- - '"0x8DDF692994A3486"'
+ - '"0x8DF1A98B0652647"'
last-modified:
- - Thu, 18 Sep 2025 09:06:05 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 12k9IzPedeb+H+LE+BwTOA==
+ - XbtDGjFHEIZZx793eGZPsA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:40 GMT
+ - Fri, 25 Sep 2026 00:04:14 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -12949,7 +13321,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -12967,41 +13339,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:05 GMT
+ - Fri, 25 Sep 2026 00:06:45 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:06 GMT
+ - Fri, 25 Sep 2026 00:06:45 GMT
etag:
- - '"0x8DDF69299E991B0"'
+ - '"0x8DF1A98B29125E7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:06 GMT
+ - Fri, 25 Sep 2026 00:05:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - sUqNOb1eQlwHIMNckVPXPg==
+ - cN1XKD1FzfAQDdREtSw/7w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:41 GMT
+ - Fri, 25 Sep 2026 00:04:19 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13009,7 +13385,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13027,41 +13403,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:06 GMT
+ - Fri, 25 Sep 2026 00:06:46 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:07 GMT
+ - Fri, 25 Sep 2026 00:06:46 GMT
etag:
- - '"0x8DDF6929A882C57"'
+ - '"0x8DF1A98B1A6CC8B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:07 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - +YjkzJyA0LKFHmtciQvWFQ==
+ - x6YzJb9YrpMLY+4pP0INPA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:42 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13069,7 +13449,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13087,41 +13467,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:07 GMT
+ - Fri, 25 Sep 2026 00:06:46 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:08 GMT
+ - Fri, 25 Sep 2026 00:06:46 GMT
etag:
- - '"0x8DDF6929B1F7C43"'
+ - '"0x8DF1A98AFFA78F3"'
last-modified:
- - Thu, 18 Sep 2025 09:06:08 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - W8HiNitS2lkGz6qjH7CrZQ==
+ - FqmYxqi+B9UUgUkk/DMOiw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:43 GMT
+ - Fri, 25 Sep 2026 00:04:13 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13129,7 +13513,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13147,41 +13531,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:08 GMT
+ - Fri, 25 Sep 2026 00:06:47 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:09 GMT
+ - Fri, 25 Sep 2026 00:06:47 GMT
etag:
- - '"0x8DDF6929BBB81CF"'
+ - '"0x8DF1A98B0D199D5"'
last-modified:
- - Thu, 18 Sep 2025 09:06:09 GMT
+ - Fri, 25 Sep 2026 00:05:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 4WhpVWYJewUiPB/Y/me8Dw==
+ - Y+qUsq9BoUPXQX9kldKOVQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:45 GMT
+ - Fri, 25 Sep 2026 00:04:15 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13189,7 +13577,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13207,41 +13595,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:09 GMT
+ - Fri, 25 Sep 2026 00:06:48 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:10 GMT
+ - Fri, 25 Sep 2026 00:06:48 GMT
etag:
- - '"0x8DDF6929C50B13B"'
+ - '"0x8DF1A98B3CCDC9B"'
last-modified:
- - Thu, 18 Sep 2025 09:06:10 GMT
+ - Fri, 25 Sep 2026 00:05:26 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - ZATCeWkPFprrI77nB4jlog==
+ - HpWc8xctKhZr8Ui60QuGjg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:46 GMT
+ - Fri, 25 Sep 2026 00:04:22 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13249,7 +13641,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13267,41 +13659,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:10 GMT
+ - Fri, 25 Sep 2026 00:06:48 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:10 GMT
+ - Fri, 25 Sep 2026 00:06:49 GMT
etag:
- - '"0x8DDF6929CEA2196"'
+ - '"0x8DF1A98B13C0C21"'
last-modified:
- - Thu, 18 Sep 2025 09:06:11 GMT
+ - Fri, 25 Sep 2026 00:05:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - j+DrkJK59KnMzrIuQL6f/A==
+ - vrzicRbCAIuEGm8/8nN7dA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:47 GMT
+ - Fri, 25 Sep 2026 00:04:17 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13309,7 +13705,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13327,41 +13723,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:11 GMT
+ - Fri, 25 Sep 2026 00:06:49 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:11 GMT
+ - Fri, 25 Sep 2026 00:06:50 GMT
etag:
- - '"0x8DDF6929D8AB5D9"'
+ - '"0x8DF1A98B3637FD0"'
last-modified:
- - Thu, 18 Sep 2025 09:06:12 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - wwDWQLvZbZoN0I3o6XBEpA==
+ - NOXHACzIcvk8kcldttK/MQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:48 GMT
+ - Fri, 25 Sep 2026 00:04:21 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13369,7 +13769,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13387,41 +13787,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:12 GMT
+ - Fri, 25 Sep 2026 00:06:50 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:13 GMT
+ - Fri, 25 Sep 2026 00:06:50 GMT
etag:
- - '"0x8DDF6929E1FE545"'
+ - '"0x8DF1A98B210A2B7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:13 GMT
+ - Fri, 25 Sep 2026 00:05:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NPMm4IvOROmjNzvELlJ7bw==
+ - 2/OZGEBlGHRrQo1E/WuQpw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:49 GMT
+ - Fri, 25 Sep 2026 00:04:18 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13429,7 +13833,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13447,41 +13851,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:13 GMT
+ - Fri, 25 Sep 2026 00:06:51 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:13 GMT
+ - Fri, 25 Sep 2026 00:06:51 GMT
etag:
- - '"0x8DDF6929EB7D0B4"'
+ - '"0x8DF1A98B2FA9421"'
last-modified:
- - Thu, 18 Sep 2025 09:06:14 GMT
+ - Fri, 25 Sep 2026 00:05:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NMybN+t/RJ+B3CVzAMzBaQ==
+ - nDNirqTlng3V44RFowp5PA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:50 GMT
+ - Fri, 25 Sep 2026 00:04:20 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13489,7 +13897,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13507,41 +13915,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:14 GMT
+ - Fri, 25 Sep 2026 00:06:51 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:14 GMT
+ - Fri, 25 Sep 2026 00:06:51 GMT
etag:
- - '"0x8DDF692933BB64B"'
+ - '"0x8DF1A98AC0B4D18"'
last-modified:
- - Thu, 18 Sep 2025 09:05:55 GMT
+ - Fri, 25 Sep 2026 00:05:13 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 9b/sO4zifnv0UaZvaocIvw==
+ - UkUA0/FHbUXIe+47c6Dj9Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:30 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13549,7 +13961,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13567,41 +13979,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:15 GMT
+ - Fri, 25 Sep 2026 00:06:52 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:16 GMT
+ - Fri, 25 Sep 2026 00:06:52 GMT
etag:
- - '"0x8DDF69293D30632"'
+ - '"0x8DF1A98AE3A835B"'
last-modified:
- - Thu, 18 Sep 2025 09:05:56 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - n0rDSbIqToxjMieFptvIGQ==
+ - eRVeHTq6T6dxb0zP9rq+fw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:31 GMT
+ - Fri, 25 Sep 2026 00:04:10 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13609,7 +14025,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13627,41 +14043,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:16 GMT
+ - Fri, 25 Sep 2026 00:06:53 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:17 GMT
+ - Fri, 25 Sep 2026 00:06:53 GMT
etag:
- - '"0x8DDF6929466FE78"'
+ - '"0x8DF1A98AD644FAA"'
last-modified:
- - Thu, 18 Sep 2025 09:05:57 GMT
+ - Fri, 25 Sep 2026 00:05:15 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - DYolaEf0RsVC992imxxZRw==
+ - 9nT2gYpljB8wufj8Np3SCg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:32 GMT
+ - Fri, 25 Sep 2026 00:04:08 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13669,7 +14089,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13687,41 +14107,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:17 GMT
+ - Fri, 25 Sep 2026 00:06:53 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:17 GMT
+ - Fri, 25 Sep 2026 00:06:53 GMT
etag:
- - '"0x8DDF69295002108"'
+ - '"0x8DF1A98ABA176AA"'
last-modified:
- - Thu, 18 Sep 2025 09:05:58 GMT
+ - Fri, 25 Sep 2026 00:05:12 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - i+ji99hYpAoJqdy08+A6Wg==
+ - 8A3Po3vddYDGBGfja7/XQw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:33 GMT
+ - Fri, 25 Sep 2026 00:04:05 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13729,7 +14153,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13747,41 +14171,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:18 GMT
+ - Fri, 25 Sep 2026 00:06:54 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:19 GMT
+ - Fri, 25 Sep 2026 00:06:54 GMT
etag:
- - '"0x8DDF692959F5750"'
+ - '"0x8DF1A98AC8CC667"'
last-modified:
- - Thu, 18 Sep 2025 09:05:59 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - mF4KjAXjgSo1MW7Yp6kyFA==
+ - 9zWE7vtoJnOJHv6tUmqfwQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:34 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13789,7 +14217,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13807,41 +14235,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:19 GMT
+ - Fri, 25 Sep 2026 00:06:55 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:19 GMT
+ - Fri, 25 Sep 2026 00:06:56 GMT
etag:
- - '"0x8DDF69296363283"'
+ - '"0x8DF1A98AF8F9187"'
last-modified:
- - Thu, 18 Sep 2025 09:06:00 GMT
+ - Fri, 25 Sep 2026 00:05:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - JxT6YyZzPZCJhVE6ZQkQaA==
+ - 8VIxMUtGyMBSRHL/4f1dgA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:35 GMT
+ - Fri, 25 Sep 2026 00:04:12 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13849,7 +14281,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13867,41 +14299,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:20 GMT
+ - Fri, 25 Sep 2026 00:06:56 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:21 GMT
+ - Fri, 25 Sep 2026 00:06:56 GMT
etag:
- - '"0x8DDF69296D2ACBA"'
+ - '"0x8DF1A98ACFB3CC7"'
last-modified:
- - Thu, 18 Sep 2025 09:06:01 GMT
+ - Fri, 25 Sep 2026 00:05:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - pynwCV43Rcrth0ZFpJjl8A==
+ - Nkl8ajHVjxKl9UmKy7TaZA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:36 GMT
+ - Fri, 25 Sep 2026 00:04:07 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13909,7 +14345,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13927,41 +14363,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:21 GMT
+ - Fri, 25 Sep 2026 00:06:57 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:21 GMT
+ - Fri, 25 Sep 2026 00:06:57 GMT
etag:
- - '"0x8DDF692976DA204"'
+ - '"0x8DF1A98AF0F532C"'
last-modified:
- - Thu, 18 Sep 2025 09:06:02 GMT
+ - Fri, 25 Sep 2026 00:05:18 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - frgRHx8gFlDTsguZeuIKDQ==
+ - fpY5g8HejIN8pEh2a+nPvg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:37 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -13969,7 +14409,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -13987,41 +14427,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:22 GMT
+ - Fri, 25 Sep 2026 00:06:57 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:23 GMT
+ - Fri, 25 Sep 2026 00:06:57 GMT
etag:
- - '"0x8DDF6929807871A"'
+ - '"0x8DF1A98ADCDC775"'
last-modified:
- - Thu, 18 Sep 2025 09:06:03 GMT
+ - Fri, 25 Sep 2026 00:05:16 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - MkCfTLxExqfymIm9fRRP+g==
+ - eRydkbCQ5SJKqFIWYL7VqA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:38 GMT
+ - Fri, 25 Sep 2026 00:04:09 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14029,7 +14473,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14047,41 +14491,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:24 GMT
+ - Fri, 25 Sep 2026 00:06:58 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:24 GMT
+ - Fri, 25 Sep 2026 00:06:58 GMT
etag:
- - '"0x8DDF69298AECA95"'
+ - '"0x8DF1A98AEA58BF5"'
last-modified:
- - Thu, 18 Sep 2025 09:06:04 GMT
+ - Fri, 25 Sep 2026 00:05:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - YvHfoHTcH+y2539JPKMHRw==
+ - bJ+4nl0DQc5Lvg891+rFxw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:39 GMT
+ - Fri, 25 Sep 2026 00:04:11 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14089,7 +14537,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14107,41 +14555,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:25 GMT
+ - Fri, 25 Sep 2026 00:06:59 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:25 GMT
+ - Fri, 25 Sep 2026 00:06:59 GMT
etag:
- - '"0x8DDF6929F4CB25A"'
+ - '"0x8DF1A98A7CA7A9D"'
last-modified:
- - Thu, 18 Sep 2025 09:06:15 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - HZ5VvkfcPrB30qCGJtpzHA==
+ - 71w8dBoGUSSVbamKcO1lFw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:51 GMT
+ - Fri, 25 Sep 2026 00:03:57 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14149,7 +14601,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14167,41 +14619,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:26 GMT
+ - Fri, 25 Sep 2026 00:06:59 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:26 GMT
+ - Fri, 25 Sep 2026 00:07:00 GMT
etag:
- - '"0x8DDF6929FE3B472"'
+ - '"0x8DF1A98A9F3622D"'
last-modified:
- - Thu, 18 Sep 2025 09:06:16 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - bv/3aBCYrXw59a/qg5U1mw==
+ - DnLBQRNtFnclTyJXfyKqnA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:52 GMT
+ - Fri, 25 Sep 2026 00:04:01 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14209,7 +14665,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14227,41 +14683,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:27 GMT
+ - Fri, 25 Sep 2026 00:07:00 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:27 GMT
+ - Fri, 25 Sep 2026 00:07:00 GMT
etag:
- - '"0x8DDF692A08007D7"'
+ - '"0x8DF1A98A9089CDC"'
last-modified:
- - Thu, 18 Sep 2025 09:06:17 GMT
+ - Fri, 25 Sep 2026 00:05:08 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - R3KoM2kfOoD/NkAFRjFuqA==
+ - sd0gDAybdZBuWZ2am5ULCQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:53 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14269,7 +14729,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14287,41 +14747,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:28 GMT
+ - Fri, 25 Sep 2026 00:07:01 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:28 GMT
+ - Fri, 25 Sep 2026 00:07:01 GMT
etag:
- - '"0x8DDF692A1151057"'
+ - '"0x8DF1A98A7602F3A"'
last-modified:
- - Thu, 18 Sep 2025 09:06:18 GMT
+ - Fri, 25 Sep 2026 00:05:05 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - morBADnfqCkwBXXZU3hA6A==
+ - zGQZoDWt8Y5dJESc8TB0Mg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:54 GMT
+ - Fri, 25 Sep 2026 00:03:56 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14329,7 +14793,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14347,41 +14811,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:29 GMT
+ - Fri, 25 Sep 2026 00:07:02 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:30 GMT
+ - Fri, 25 Sep 2026 00:07:02 GMT
etag:
- - '"0x8DDF692A1C2676C"'
+ - '"0x8DF1A98A835172A"'
last-modified:
- - Thu, 18 Sep 2025 09:06:19 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - jMy7yZooIbu+xco5y0PnWA==
+ - pGxnukS6Fz7NjCuHvHJSOQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:55 GMT
+ - Fri, 25 Sep 2026 00:03:58 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14389,7 +14857,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14407,41 +14875,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:30 GMT
+ - Fri, 25 Sep 2026 00:07:02 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:30 GMT
+ - Fri, 25 Sep 2026 00:07:02 GMT
etag:
- - '"0x8DDF692A26B56BE"'
+ - '"0x8DF1A98AB35EC64"'
last-modified:
- - Thu, 18 Sep 2025 09:06:20 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - WWxxctNl0WEZ3Fkt0xSjXw==
+ - 09mN8BZH+J3xKBIdhMTn2A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:56 GMT
+ - Fri, 25 Sep 2026 00:04:04 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14449,7 +14921,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14467,41 +14939,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:31 GMT
+ - Fri, 25 Sep 2026 00:07:03 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:31 GMT
+ - Fri, 25 Sep 2026 00:07:03 GMT
etag:
- - '"0x8DDF692A30258DD"'
+ - '"0x8DF1A98A89EC6C8"'
last-modified:
- - Thu, 18 Sep 2025 09:06:21 GMT
+ - Fri, 25 Sep 2026 00:05:07 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 7SYtr6WWjvfHwEWZlFicyA==
+ - wxdWezoDBTifLE6AYPV4fw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:57 GMT
+ - Fri, 25 Sep 2026 00:03:59 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14509,7 +14985,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14527,41 +15003,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:32 GMT
+ - Fri, 25 Sep 2026 00:07:04 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:32 GMT
+ - Fri, 25 Sep 2026 00:07:04 GMT
etag:
- - '"0x8DDF692A399A8C5"'
+ - '"0x8DF1A98AACADDF8"'
last-modified:
- - Thu, 18 Sep 2025 09:06:22 GMT
+ - Fri, 25 Sep 2026 00:05:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - a0gskKctLUTyJ98stcb+zw==
+ - pmShc94YBcMpNtkfJ6TS6A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:58 GMT
+ - Fri, 25 Sep 2026 00:04:03 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14569,7 +15049,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14587,41 +15067,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:33 GMT
+ - Fri, 25 Sep 2026 00:07:04 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:33 GMT
+ - Fri, 25 Sep 2026 00:07:05 GMT
etag:
- - '"0x8DDF692A42E8A5E"'
+ - '"0x8DF1A98A988B6BE"'
last-modified:
- - Thu, 18 Sep 2025 09:06:23 GMT
+ - Fri, 25 Sep 2026 00:05:09 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - WsaYffpQ9TM4slY4craDlw==
+ - Qe2yDZak0qtkDUBcxAFmLQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:59 GMT
+ - Fri, 25 Sep 2026 00:04:00 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14629,7 +15113,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14647,41 +15131,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:34 GMT
+ - Fri, 25 Sep 2026 00:07:05 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:34 GMT
+ - Fri, 25 Sep 2026 00:07:06 GMT
etag:
- - '"0x8DDF692A4C64EF9"'
+ - '"0x8DF1A98AA601E2F"'
last-modified:
- - Thu, 18 Sep 2025 09:06:24 GMT
+ - Fri, 25 Sep 2026 00:05:10 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - sOOZ8v6f8otceBtL552N9g==
+ - LZvKP6Iz3MAPrql/iSMbxw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:05:00 GMT
+ - Fri, 25 Sep 2026 00:04:02 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14689,7 +15177,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14707,13 +15195,13 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:35 GMT
+ - Fri, 25 Sep 2026 00:07:06 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/readme
response:
@@ -14730,19 +15218,23 @@ interactions:
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:35 GMT
+ - Fri, 25 Sep 2026 00:07:06 GMT
etag:
- - '"0x8DDF6928C9CBE3B"'
+ - '"0x8DF1A98A6F513E4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:44 GMT
+ - Fri, 25 Sep 2026 00:05:04 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- sYGKK8OX+WLKH+2bAe4tSQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:19 GMT
+ - Fri, 25 Sep 2026 00:03:55 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14750,7 +15242,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14768,78 +15260,78 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:36 GMT
+ - Fri, 25 Sep 2026 00:07:07 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list&prefix=apple%2F
response:
body:
string: "\uFEFFapple/apple/file_0Thu,
- 18 Sep 2025 09:04:20 GMTThu, 18 Sep 2025 09:05:45
- GMT0x8DDF6928D32D70B133application/octet-stream463PUGutVKR3lenQoi0GnQ==BlockBlobunlockedavailabletrueapple/file_1Thu, 18
- Sep 2025 09:04:21 GMTThu, 18 Sep 2025 09:05:46
- GMT0x8DDF6928DCBABD6133application/octet-streamlIufFEDWG6WiNe7Vy5LCzw==BlockBlobunlockedavailabletrueapple/file_2Thu, 18
- Sep 2025 09:04:22 GMTThu, 18 Sep 2025 09:05:47
- GMT0x8DDF6928E639742133application/octet-streamXr/A/PPBjAvfBnZM6eDygw==BlockBlobunlockedavailabletrueapple/file_3Thu, 18
- Sep 2025 09:04:23 GMTThu, 18 Sep 2025 09:05:48
- GMT0x8DDF6928EFB82B1133application/octet-streamQijJ1Y0HkLHaWhK6JWu6Yg==BlockBlobunlockedavailabletrueapple/file_4Thu, 18
- Sep 2025 09:04:24 GMTThu, 18 Sep 2025 09:05:49
- GMT0x8DDF6928F9B7B7D133application/octet-streamvbz+Yk+D6XrKvX4okS2Gag==BlockBlobunlockedavailabletrueapple/file_5Thu, 18
- Sep 2025 09:04:25 GMTThu, 18 Sep 2025 09:05:50
- GMT0x8DDF692903622F3133application/octet-streamqyjPb9RRf+qh1mpxe/Zaxw==BlockBlobunlockedavailabletrueapple/file_6Thu, 18
- Sep 2025 09:04:26 GMTThu, 18 Sep 2025 09:05:51
- GMT0x8DDF69290CCFE23133application/octet-streamwXEJFzIgI33TKjbAlix3iw==BlockBlobunlockedavailabletrueapple/file_7Thu, 18
- Sep 2025 09:04:27 GMTThu, 18 Sep 2025 09:05:52
- GMT0x8DDF692917000B0133application/octet-streamNzN/gbDos0zQ+5NCHOgUcg==BlockBlobunlockedavailabletrueapple/file_8Thu, 18
- Sep 2025 09:04:28 GMTThu, 18 Sep 2025 09:05:53
- GMT0x8DDF692920702D0133application/octet-stream7GVacxDUKYkMT8VjT+tTgQ==BlockBlobunlockedavailabletrueapple/file_9Thu, 18
- Sep 2025 09:04:29 GMTThu, 18 Sep 2025 09:05:54
- GMT0x8DDF69292A135A6133application/octet-streamo8CI3RsPcRLdlmTyY8+r6g==BlockBlobunlockedavailabletrueapple/apple/file_0Fri,
+ 25 Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B49F95F4101application/octet-streamIttzcHmb0E6yCZslpuPw1A==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 00:04:28 GMTFri, 25 Sep 2026 00:05:31
+ GMT0x8DF1A98B6C8F884101application/octet-streamKy86k6/sL9E/AduD5Dvghg==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 00:04:26 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B5F56BE6101application/octet-streamVFct9Mc6MBwDbT88fXarRA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 00:04:23 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B4363D8B101application/octet-streamphwTrnZMY9i06YYgrOQnig==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:28
+ GMT0x8DF1A98B50AF273101application/octet-stream/HuiF61YVAUfVdKz18uP8Q==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:33
+ GMT0x8DF1A98B80E1BE9101application/octet-streamCvWiulprfZhTPzyafnVFlQ==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 00:04:25 GMTFri, 25 Sep 2026 00:05:29
+ GMT0x8DF1A98B58AF9B4101application/octet-stream486OkvW8vp9u/9aEK8KnSw==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B79ABD46101application/octet-streamQtsIKJZ1l9DJfk8UuCAH9w==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 00:04:27 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B65E933F101application/octet-stream13BG86AuGtf3vrzFRULiDA==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 00:04:29 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B7319622101application/octet-streamgonIw6Mm9y6Lwl0mS9zqyA==BlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:08:36 GMT
+ - Fri, 25 Sep 2026 00:07:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -14857,41 +15349,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:37 GMT
+ - Fri, 25 Sep 2026 00:07:08 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:38 GMT
+ - Fri, 25 Sep 2026 00:07:08 GMT
etag:
- - '"0x8DDF6928D32D70B"'
+ - '"0x8DF1A98B49F95F4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - IttzcHmb0E6yCZslpuPw1A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14899,7 +15395,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14917,41 +15413,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:38 GMT
+ - Fri, 25 Sep 2026 00:07:08 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_1'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:38 GMT
+ - Fri, 25 Sep 2026 00:07:08 GMT
etag:
- - '"0x8DDF6928DCBABD6"'
+ - '"0x8DF1A98B6C8F884"'
last-modified:
- - Thu, 18 Sep 2025 09:05:46 GMT
+ - Fri, 25 Sep 2026 00:05:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - lIufFEDWG6WiNe7Vy5LCzw==
+ - Ky86k6/sL9E/AduD5Dvghg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:21 GMT
+ - Fri, 25 Sep 2026 00:04:28 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -14959,7 +15459,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -14977,41 +15477,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:39 GMT
+ - Fri, 25 Sep 2026 00:07:09 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_2'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:39 GMT
+ - Fri, 25 Sep 2026 00:07:09 GMT
etag:
- - '"0x8DDF6928E639742"'
+ - '"0x8DF1A98B5F56BE6"'
last-modified:
- - Thu, 18 Sep 2025 09:05:47 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Xr/A/PPBjAvfBnZM6eDygw==
+ - VFct9Mc6MBwDbT88fXarRA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:22 GMT
+ - Fri, 25 Sep 2026 00:04:26 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15019,7 +15523,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15037,41 +15541,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:40 GMT
+ - Fri, 25 Sep 2026 00:07:10 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_3'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:41 GMT
+ - Fri, 25 Sep 2026 00:07:10 GMT
etag:
- - '"0x8DDF6928EFB82B1"'
+ - '"0x8DF1A98B4363D8B"'
last-modified:
- - Thu, 18 Sep 2025 09:05:48 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - QijJ1Y0HkLHaWhK6JWu6Yg==
+ - phwTrnZMY9i06YYgrOQnig==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:23 GMT
+ - Fri, 25 Sep 2026 00:04:23 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15079,7 +15587,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15097,41 +15605,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:41 GMT
+ - Fri, 25 Sep 2026 00:07:11 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_4'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:42 GMT
+ - Fri, 25 Sep 2026 00:07:11 GMT
etag:
- - '"0x8DDF6928F9B7B7D"'
+ - '"0x8DF1A98B50AF273"'
last-modified:
- - Thu, 18 Sep 2025 09:05:49 GMT
+ - Fri, 25 Sep 2026 00:05:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - vbz+Yk+D6XrKvX4okS2Gag==
+ - /HuiF61YVAUfVdKz18uP8Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:24 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15139,7 +15651,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15157,41 +15669,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:42 GMT
+ - Fri, 25 Sep 2026 00:07:11 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_5'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:43 GMT
+ - Fri, 25 Sep 2026 00:07:11 GMT
etag:
- - '"0x8DDF692903622F3"'
+ - '"0x8DF1A98B80E1BE9"'
last-modified:
- - Thu, 18 Sep 2025 09:05:50 GMT
+ - Fri, 25 Sep 2026 00:05:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - qyjPb9RRf+qh1mpxe/Zaxw==
+ - CvWiulprfZhTPzyafnVFlQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:25 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15199,7 +15715,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15217,41 +15733,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:43 GMT
+ - Fri, 25 Sep 2026 00:07:12 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_6'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:43 GMT
+ - Fri, 25 Sep 2026 00:07:12 GMT
etag:
- - '"0x8DDF69290CCFE23"'
+ - '"0x8DF1A98B58AF9B4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:51 GMT
+ - Fri, 25 Sep 2026 00:05:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - wXEJFzIgI33TKjbAlix3iw==
+ - 486OkvW8vp9u/9aEK8KnSw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:26 GMT
+ - Fri, 25 Sep 2026 00:04:25 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15259,7 +15779,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15277,41 +15797,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:44 GMT
+ - Fri, 25 Sep 2026 00:07:13 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_7'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:45 GMT
+ - Fri, 25 Sep 2026 00:07:13 GMT
etag:
- - '"0x8DDF692917000B0"'
+ - '"0x8DF1A98B79ABD46"'
last-modified:
- - Thu, 18 Sep 2025 09:05:52 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - NzN/gbDos0zQ+5NCHOgUcg==
+ - QtsIKJZ1l9DJfk8UuCAH9w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:27 GMT
+ - Fri, 25 Sep 2026 00:04:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15319,7 +15843,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15337,41 +15861,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:45 GMT
+ - Fri, 25 Sep 2026 00:07:13 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_8'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:46 GMT
+ - Fri, 25 Sep 2026 00:07:13 GMT
etag:
- - '"0x8DDF692920702D0"'
+ - '"0x8DF1A98B65E933F"'
last-modified:
- - Thu, 18 Sep 2025 09:05:53 GMT
+ - Fri, 25 Sep 2026 00:05:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 7GVacxDUKYkMT8VjT+tTgQ==
+ - 13BG86AuGtf3vrzFRULiDA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:28 GMT
+ - Fri, 25 Sep 2026 00:04:27 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15379,7 +15907,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15397,41 +15925,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:46 GMT
+ - Fri, 25 Sep 2026 00:07:14 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_9'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:47 GMT
+ - Fri, 25 Sep 2026 00:07:15 GMT
etag:
- - '"0x8DDF69292A135A6"'
+ - '"0x8DF1A98B7319622"'
last-modified:
- - Thu, 18 Sep 2025 09:05:54 GMT
+ - Fri, 25 Sep 2026 00:05:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - o8CI3RsPcRLdlmTyY8+r6g==
+ - gonIw6Mm9y6Lwl0mS9zqyA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:29 GMT
+ - Fri, 25 Sep 2026 00:04:29 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15439,7 +15971,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15457,232 +15989,232 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:48 GMT
+ - Fri, 25 Sep 2026 00:07:15 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list
response:
body:
string: "\uFEFFapple/file_0Thu,
- 18 Sep 2025 09:04:20 GMTThu, 18 Sep 2025 09:05:45
- GMT0x8DDF6928D32D70B133application/octet-stream463PUGutVKR3lenQoi0GnQ==BlockBlobunlockedavailabletrueapple/file_1Thu, 18
- Sep 2025 09:04:21 GMTThu, 18 Sep 2025 09:05:46
- GMT0x8DDF6928DCBABD6133application/octet-streamlIufFEDWG6WiNe7Vy5LCzw==BlockBlobunlockedavailabletrueapple/file_2Thu, 18
- Sep 2025 09:04:22 GMTThu, 18 Sep 2025 09:05:47
- GMT0x8DDF6928E639742133application/octet-streamXr/A/PPBjAvfBnZM6eDygw==BlockBlobunlockedavailabletrueapple/file_3Thu, 18
- Sep 2025 09:04:23 GMTThu, 18 Sep 2025 09:05:48
- GMT0x8DDF6928EFB82B1133application/octet-streamQijJ1Y0HkLHaWhK6JWu6Yg==BlockBlobunlockedavailabletrueapple/file_4Thu, 18
- Sep 2025 09:04:24 GMTThu, 18 Sep 2025 09:05:49
- GMT0x8DDF6928F9B7B7D133application/octet-streamvbz+Yk+D6XrKvX4okS2Gag==BlockBlobunlockedavailabletrueapple/file_5Thu, 18
- Sep 2025 09:04:25 GMTThu, 18 Sep 2025 09:05:50
- GMT0x8DDF692903622F3133application/octet-streamqyjPb9RRf+qh1mpxe/Zaxw==BlockBlobunlockedavailabletrueapple/file_6Thu, 18
- Sep 2025 09:04:26 GMTThu, 18 Sep 2025 09:05:51
- GMT0x8DDF69290CCFE23133application/octet-streamwXEJFzIgI33TKjbAlix3iw==BlockBlobunlockedavailabletrueapple/file_7Thu, 18
- Sep 2025 09:04:27 GMTThu, 18 Sep 2025 09:05:52
- GMT0x8DDF692917000B0133application/octet-streamNzN/gbDos0zQ+5NCHOgUcg==BlockBlobunlockedavailabletrueapple/file_8Thu, 18
- Sep 2025 09:04:28 GMTThu, 18 Sep 2025 09:05:53
- GMT0x8DDF692920702D0133application/octet-stream7GVacxDUKYkMT8VjT+tTgQ==BlockBlobunlockedavailabletrueapple/file_9Thu, 18
- Sep 2025 09:04:29 GMTThu, 18 Sep 2025 09:05:54
- GMT0x8DDF69292A135A6133application/octet-streamo8CI3RsPcRLdlmTyY8+r6g==BlockBlobunlockedavailabletruebutter/charlie/file_0Thu,
- 18 Sep 2025 09:04:40 GMTThu, 18 Sep 2025 09:06:05
- GMT0x8DDF692994A3486142application/octet-stream12k9IzPedeb+H+LE+BwTOA==BlockBlobunlockedavailabletruebutter/charlie/file_1Thu,
- 18 Sep 2025 09:04:41 GMTThu, 18 Sep 2025 09:06:06
- GMT0x8DDF69299E991B0142application/octet-streamsUqNOb1eQlwHIMNckVPXPg==BlockBlobunlockedavailabletruebutter/charlie/file_2Thu,
- 18 Sep 2025 09:04:42 GMTThu, 18 Sep 2025 09:06:07
- GMT0x8DDF6929A882C57142application/octet-stream+YjkzJyA0LKFHmtciQvWFQ==BlockBlobunlockedavailabletruebutter/charlie/file_3Thu,
- 18 Sep 2025 09:04:43 GMTThu, 18 Sep 2025 09:06:08
- GMT0x8DDF6929B1F7C43142application/octet-streamW8HiNitS2lkGz6qjH7CrZQ==BlockBlobunlockedavailabletruebutter/charlie/file_4Thu,
- 18 Sep 2025 09:04:45 GMTThu, 18 Sep 2025 09:06:09
- GMT0x8DDF6929BBB81CF142application/octet-stream4WhpVWYJewUiPB/Y/me8Dw==BlockBlobunlockedavailabletruebutter/charlie/file_5Thu,
- 18 Sep 2025 09:04:46 GMTThu, 18 Sep 2025 09:06:10
- GMT0x8DDF6929C50B13B142application/octet-streamZATCeWkPFprrI77nB4jlog==BlockBlobunlockedavailabletruebutter/charlie/file_6Thu,
- 18 Sep 2025 09:04:47 GMTThu, 18 Sep 2025 09:06:11
- GMT0x8DDF6929CEA2196142application/octet-streamj+DrkJK59KnMzrIuQL6f/A==BlockBlobunlockedavailabletruebutter/charlie/file_7Thu,
- 18 Sep 2025 09:04:48 GMTThu, 18 Sep 2025 09:06:12
- GMT0x8DDF6929D8AB5D9142application/octet-streamwwDWQLvZbZoN0I3o6XBEpA==BlockBlobunlockedavailabletruebutter/charlie/file_8Thu,
- 18 Sep 2025 09:04:49 GMTThu, 18 Sep 2025 09:06:13
- GMT0x8DDF6929E1FE545142application/octet-streamNPMm4IvOROmjNzvELlJ7bw==BlockBlobunlockedavailabletruebutter/charlie/file_9Thu,
- 18 Sep 2025 09:04:50 GMTThu, 18 Sep 2025 09:06:14
- GMT0x8DDF6929EB7D0B4142application/octet-streamNMybN+t/RJ+B3CVzAMzBaQ==BlockBlobunlockedavailabletruebutter/file_0Thu, 18
- Sep 2025 09:04:30 GMTThu, 18 Sep 2025 09:05:55
- GMT0x8DDF692933BB64B134application/octet-stream9b/sO4zifnv0UaZvaocIvw==BlockBlobunlockedavailabletruebutter/file_1Thu, 18
- Sep 2025 09:04:31 GMTThu, 18 Sep 2025 09:05:56
- GMT0x8DDF69293D30632134application/octet-streamn0rDSbIqToxjMieFptvIGQ==BlockBlobunlockedavailabletruebutter/file_2Thu, 18
- Sep 2025 09:04:32 GMTThu, 18 Sep 2025 09:05:57
- GMT0x8DDF6929466FE78134application/octet-streamDYolaEf0RsVC992imxxZRw==BlockBlobunlockedavailabletruebutter/file_3Thu, 18
- Sep 2025 09:04:33 GMTThu, 18 Sep 2025 09:05:58
- GMT0x8DDF69295002108134application/octet-streami+ji99hYpAoJqdy08+A6Wg==BlockBlobunlockedavailabletruebutter/file_4Thu, 18
- Sep 2025 09:04:34 GMTThu, 18 Sep 2025 09:05:59
- GMT0x8DDF692959F5750134application/octet-streammF4KjAXjgSo1MW7Yp6kyFA==BlockBlobunlockedavailabletruebutter/file_5Thu, 18
- Sep 2025 09:04:35 GMTThu, 18 Sep 2025 09:06:00
- GMT0x8DDF69296363283134application/octet-streamJxT6YyZzPZCJhVE6ZQkQaA==BlockBlobunlockedavailabletruebutter/file_6Thu, 18
- Sep 2025 09:04:36 GMTThu, 18 Sep 2025 09:06:01
- GMT0x8DDF69296D2ACBA134application/octet-streampynwCV43Rcrth0ZFpJjl8A==BlockBlobunlockedavailabletruebutter/file_7Thu, 18
- Sep 2025 09:04:37 GMTThu, 18 Sep 2025 09:06:02
- GMT0x8DDF692976DA204134application/octet-streamfrgRHx8gFlDTsguZeuIKDQ==BlockBlobunlockedavailabletruebutter/file_8Thu, 18
- Sep 2025 09:04:38 GMTThu, 18 Sep 2025 09:06:03
- GMT0x8DDF6929807871A134application/octet-streamMkCfTLxExqfymIm9fRRP+g==BlockBlobunlockedavailabletruebutter/file_9Thu, 18
- Sep 2025 09:04:39 GMTThu, 18 Sep 2025 09:06:04
- GMT0x8DDF69298AECA95134application/octet-streamYvHfoHTcH+y2539JPKMHRw==BlockBlobunlockedavailabletrueduff/edward/file_0Thu,
- 18 Sep 2025 09:04:51 GMTThu, 18 Sep 2025 09:06:15
- GMT0x8DDF6929F4CB25A139application/octet-streamHZ5VvkfcPrB30qCGJtpzHA==BlockBlobunlockedavailabletrueduff/edward/file_1Thu,
- 18 Sep 2025 09:04:52 GMTThu, 18 Sep 2025 09:06:16
- GMT0x8DDF6929FE3B472139application/octet-streambv/3aBCYrXw59a/qg5U1mw==BlockBlobunlockedavailabletrueduff/edward/file_2Thu,
- 18 Sep 2025 09:04:53 GMTThu, 18 Sep 2025 09:06:17
- GMT0x8DDF692A08007D7139application/octet-streamR3KoM2kfOoD/NkAFRjFuqA==BlockBlobunlockedavailabletrueduff/edward/file_3Thu,
- 18 Sep 2025 09:04:54 GMTThu, 18 Sep 2025 09:06:18
- GMT0x8DDF692A1151057139application/octet-streammorBADnfqCkwBXXZU3hA6A==BlockBlobunlockedavailabletrueduff/edward/file_4Thu,
- 18 Sep 2025 09:04:55 GMTThu, 18 Sep 2025 09:06:19
- GMT0x8DDF692A1C2676C139application/octet-streamjMy7yZooIbu+xco5y0PnWA==BlockBlobunlockedavailabletrueduff/edward/file_5Thu,
- 18 Sep 2025 09:04:56 GMTThu, 18 Sep 2025 09:06:20
- GMT0x8DDF692A26B56BE139application/octet-streamWWxxctNl0WEZ3Fkt0xSjXw==BlockBlobunlockedavailabletrueduff/edward/file_6Thu,
- 18 Sep 2025 09:04:57 GMTThu, 18 Sep 2025 09:06:21
- GMT0x8DDF692A30258DD139application/octet-stream7SYtr6WWjvfHwEWZlFicyA==BlockBlobunlockedavailabletrueduff/edward/file_7Thu,
- 18 Sep 2025 09:04:58 GMTThu, 18 Sep 2025 09:06:22
- GMT0x8DDF692A399A8C5139application/octet-streama0gskKctLUTyJ98stcb+zw==BlockBlobunlockedavailabletrueduff/edward/file_8Thu,
- 18 Sep 2025 09:04:59 GMTThu, 18 Sep 2025 09:06:23
- GMT0x8DDF692A42E8A5E139application/octet-streamWsaYffpQ9TM4slY4craDlw==BlockBlobunlockedavailabletrueduff/edward/file_9Thu,
- 18 Sep 2025 09:05:00 GMTThu, 18 Sep 2025 09:06:24
- GMT0x8DDF692A4C64EF9139application/octet-streamsOOZ8v6f8otceBtL552N9g==BlockBlobunlockedavailabletruereadmeThu, 18 Sep 2025
- 09:04:19 GMTThu, 18 Sep 2025 09:05:44 GMT0x8DDF6928C9CBE3B87application/octet-streamapple/file_0Fri,
+ 25 Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B49F95F4101application/octet-streamIttzcHmb0E6yCZslpuPw1A==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 00:04:28 GMTFri, 25 Sep 2026 00:05:31
+ GMT0x8DF1A98B6C8F884101application/octet-streamKy86k6/sL9E/AduD5Dvghg==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 00:04:26 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B5F56BE6101application/octet-streamVFct9Mc6MBwDbT88fXarRA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 00:04:23 GMTFri, 25 Sep 2026 00:05:27
+ GMT0x8DF1A98B4363D8B101application/octet-streamphwTrnZMY9i06YYgrOQnig==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 00:04:24 GMTFri, 25 Sep 2026 00:05:28
+ GMT0x8DF1A98B50AF273101application/octet-stream/HuiF61YVAUfVdKz18uP8Q==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:33
+ GMT0x8DF1A98B80E1BE9101application/octet-streamCvWiulprfZhTPzyafnVFlQ==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 00:04:25 GMTFri, 25 Sep 2026 00:05:29
+ GMT0x8DF1A98B58AF9B4101application/octet-stream486OkvW8vp9u/9aEK8KnSw==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 00:04:30 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B79ABD46101application/octet-streamQtsIKJZ1l9DJfk8UuCAH9w==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 00:04:27 GMTFri, 25 Sep 2026 00:05:30
+ GMT0x8DF1A98B65E933F101application/octet-stream13BG86AuGtf3vrzFRULiDA==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 00:04:29 GMTFri, 25 Sep 2026 00:05:32
+ GMT0x8DF1A98B7319622101application/octet-streamgonIw6Mm9y6Lwl0mS9zqyA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
+ 25 Sep 2026 00:04:14 GMTFri, 25 Sep 2026 00:05:20
+ GMT0x8DF1A98B0652647110application/octet-streamXbtDGjFHEIZZx793eGZPsA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
+ 25 Sep 2026 00:04:19 GMTFri, 25 Sep 2026 00:05:24
+ GMT0x8DF1A98B29125E7110application/octet-streamcN1XKD1FzfAQDdREtSw/7w==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B1A6CC8B110application/octet-streamx6YzJb9YrpMLY+4pP0INPA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
+ 25 Sep 2026 00:04:13 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AFFA78F3110application/octet-streamFqmYxqi+B9UUgUkk/DMOiw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
+ 25 Sep 2026 00:04:15 GMTFri, 25 Sep 2026 00:05:21
+ GMT0x8DF1A98B0D199D5110application/octet-streamY+qUsq9BoUPXQX9kldKOVQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
+ 25 Sep 2026 00:04:22 GMTFri, 25 Sep 2026 00:05:26
+ GMT0x8DF1A98B3CCDC9B110application/octet-streamHpWc8xctKhZr8Ui60QuGjg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
+ 25 Sep 2026 00:04:17 GMTFri, 25 Sep 2026 00:05:22
+ GMT0x8DF1A98B13C0C21110application/octet-streamvrzicRbCAIuEGm8/8nN7dA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
+ 25 Sep 2026 00:04:21 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B3637FD0110application/octet-streamNOXHACzIcvk8kcldttK/MQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
+ 25 Sep 2026 00:04:18 GMTFri, 25 Sep 2026 00:05:23
+ GMT0x8DF1A98B210A2B7110application/octet-stream2/OZGEBlGHRrQo1E/WuQpw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_9Fri,
+ 25 Sep 2026 00:04:20 GMTFri, 25 Sep 2026 00:05:25
+ GMT0x8DF1A98B2FA9421110application/octet-streamnDNirqTlng3V44RFowp5PA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:13
+ GMT0x8DF1A98AC0B4D18102application/octet-streamUkUA0/FHbUXIe+47c6Dj9Q==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 00:04:10 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AE3A835B102application/octet-streameRVeHTq6T6dxb0zP9rq+fw==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 00:04:08 GMTFri, 25 Sep 2026 00:05:15
+ GMT0x8DF1A98AD644FAA102application/octet-stream9nT2gYpljB8wufj8Np3SCg==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 00:04:05 GMTFri, 25 Sep 2026 00:05:12
+ GMT0x8DF1A98ABA176AA102application/octet-stream8A3Po3vddYDGBGfja7/XQw==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 00:04:06 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98AC8CC667102application/octet-stream9zWE7vtoJnOJHv6tUmqfwQ==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 00:04:12 GMTFri, 25 Sep 2026 00:05:19
+ GMT0x8DF1A98AF8F9187102application/octet-stream8VIxMUtGyMBSRHL/4f1dgA==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 00:04:07 GMTFri, 25 Sep 2026 00:05:14
+ GMT0x8DF1A98ACFB3CC7102application/octet-streamNkl8ajHVjxKl9UmKy7TaZA==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:18
+ GMT0x8DF1A98AF0F532C102application/octet-streamfpY5g8HejIN8pEh2a+nPvg==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 00:04:09 GMTFri, 25 Sep 2026 00:05:16
+ GMT0x8DF1A98ADCDC775102application/octet-streameRydkbCQ5SJKqFIWYL7VqA==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 00:04:11 GMTFri, 25 Sep 2026 00:05:17
+ GMT0x8DF1A98AEA58BF5102application/octet-streambJ+4nl0DQc5Lvg891+rFxw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
+ 25 Sep 2026 00:03:57 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A7CA7A9D107application/octet-stream71w8dBoGUSSVbamKcO1lFw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
+ 25 Sep 2026 00:04:01 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A9F3622D107application/octet-streamDnLBQRNtFnclTyJXfyKqnA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:08
+ GMT0x8DF1A98A9089CDC107application/octet-streamsd0gDAybdZBuWZ2am5ULCQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
+ 25 Sep 2026 00:03:56 GMTFri, 25 Sep 2026 00:05:05
+ GMT0x8DF1A98A7602F3A107application/octet-streamzGQZoDWt8Y5dJESc8TB0Mg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
+ 25 Sep 2026 00:03:58 GMTFri, 25 Sep 2026 00:05:06
+ GMT0x8DF1A98A835172A107application/octet-streampGxnukS6Fz7NjCuHvHJSOQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
+ 25 Sep 2026 00:04:04 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AB35EC64107application/octet-stream09mN8BZH+J3xKBIdhMTn2A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
+ 25 Sep 2026 00:03:59 GMTFri, 25 Sep 2026 00:05:07
+ GMT0x8DF1A98A89EC6C8107application/octet-streamwxdWezoDBTifLE6AYPV4fw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
+ 25 Sep 2026 00:04:03 GMTFri, 25 Sep 2026 00:05:11
+ GMT0x8DF1A98AACADDF8107application/octet-streampmShc94YBcMpNtkfJ6TS6A==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
+ 25 Sep 2026 00:04:00 GMTFri, 25 Sep 2026 00:05:09
+ GMT0x8DF1A98A988B6BE107application/octet-streamQe2yDZak0qtkDUBcxAFmLQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_9Fri,
+ 25 Sep 2026 00:04:02 GMTFri, 25 Sep 2026 00:05:10
+ GMT0x8DF1A98AA601E2F107application/octet-streamLZvKP6Iz3MAPrql/iSMbxw==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 00:03:55 GMTFri, 25 Sep 2026 00:05:04 GMT0x8DF1A98A6F513E487application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:08:48 GMT
+ - Fri, 25 Sep 2026 00:07:15 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -15700,41 +16232,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:49 GMT
+ - Fri, 25 Sep 2026 00:07:16 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:50 GMT
+ - Fri, 25 Sep 2026 00:07:16 GMT
etag:
- - '"0x8DDF6928D32D70B"'
+ - '"0x8DF1A98B49F95F4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - IttzcHmb0E6yCZslpuPw1A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15742,7 +16278,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15760,41 +16296,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:50 GMT
+ - Fri, 25 Sep 2026 00:07:17 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter/charlie\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/charlie/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:51 GMT
+ - Fri, 25 Sep 2026 00:07:16 GMT
etag:
- - '"0x8DDF692994A3486"'
+ - '"0x8DF1A98B0652647"'
last-modified:
- - Thu, 18 Sep 2025 09:06:05 GMT
+ - Fri, 25 Sep 2026 00:05:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 12k9IzPedeb+H+LE+BwTOA==
+ - XbtDGjFHEIZZx793eGZPsA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:40 GMT
+ - Fri, 25 Sep 2026 00:04:14 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15802,7 +16342,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15820,41 +16360,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:51 GMT
+ - Fri, 25 Sep 2026 00:07:17 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\butter\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/butter/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:52 GMT
+ - Fri, 25 Sep 2026 00:07:17 GMT
etag:
- - '"0x8DDF692933BB64B"'
+ - '"0x8DF1A98AC0B4D18"'
last-modified:
- - Thu, 18 Sep 2025 09:05:55 GMT
+ - Fri, 25 Sep 2026 00:05:13 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 9b/sO4zifnv0UaZvaocIvw==
+ - UkUA0/FHbUXIe+47c6Dj9Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:30 GMT
+ - Fri, 25 Sep 2026 00:04:06 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15862,7 +16406,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15880,41 +16424,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:52 GMT
+ - Fri, 25 Sep 2026 00:07:18 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\duff/edward\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/duff/edward/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:52 GMT
+ - Fri, 25 Sep 2026 00:07:18 GMT
etag:
- - '"0x8DDF6929F4CB25A"'
+ - '"0x8DF1A98A7CA7A9D"'
last-modified:
- - Thu, 18 Sep 2025 09:06:15 GMT
+ - Fri, 25 Sep 2026 00:05:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - HZ5VvkfcPrB30qCGJtpzHA==
+ - 71w8dBoGUSSVbamKcO1lFw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:51 GMT
+ - Fri, 25 Sep 2026 00:03:57 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15922,7 +16470,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -15940,11 +16488,11 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:53 GMT
+ - Fri, 25 Sep 2026 00:07:19 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: HEAD
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
@@ -15954,23 +16502,27 @@ interactions:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - IttzcHmb0E6yCZslpuPw1A==
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:53 GMT
+ - Fri, 25 Sep 2026 00:07:19 GMT
etag:
- - '"0x8DDF6928D32D70B"'
+ - '"0x8DF1A98B49F95F4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -15978,7 +16530,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -15996,41 +16548,45 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:54 GMT
+ - Fri, 25 Sep 2026 00:07:19 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0
response:
body:
- string: 'Azure CLI storage command module test sample file. origin: C:\Users\ZHIYIH~1\AppData\Local\Temp\testojn5g4auz7gbgtap7rxy\apple\file_0'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testksvimvyv26gkcn5jjpdp/apple/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:08:55 GMT
+ - Fri, 25 Sep 2026 00:07:20 GMT
etag:
- - '"0x8DDF6928D32D70B"'
+ - '"0x8DF1A98B49F95F4"'
last-modified:
- - Thu, 18 Sep 2025 09:05:45 GMT
+ - Fri, 25 Sep 2026 00:05:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 463PUGutVKR3lenQoi0GnQ==
+ - IttzcHmb0E6yCZslpuPw1A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:04:20 GMT
+ - Fri, 25 Sep 2026 00:04:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -16038,7 +16594,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -16058,11 +16614,11 @@ interactions:
ParameterSetName:
- -n --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:08:55 GMT
+ - Fri, 25 Sep 2026 00:07:20 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container2?restype=container
response:
@@ -16072,15 +16628,15 @@ interactions:
content-length:
- '0'
date:
- - Thu, 18 Sep 2025 09:08:56 GMT
+ - Fri, 25 Sep 2026 00:07:20 GMT
etag:
- - '"0x8DDF692FF5A5051"'
+ - '"0x8DF1A98F8729D99"'
last-modified:
- - Thu, 18 Sep 2025 09:08:56 GMT
+ - Fri, 25 Sep 2026 00:07:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -16104,13 +16660,13 @@ interactions:
ParameterSetName:
- -c -f -n --type --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:08:56 GMT
+ - Fri, 25 Sep 2026 00:07:21 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container2/dir1/file
response:
@@ -16122,11 +16678,11 @@ interactions:
content-md5:
- DzQ7CTESaiDxM9Z8KwGKOw==
date:
- - Thu, 18 Sep 2025 09:08:57 GMT
+ - Fri, 25 Sep 2026 00:07:21 GMT
etag:
- - '"0x8DDF692FFFFDD2A"'
+ - '"0x8DF1A98F8E2C8EF"'
last-modified:
- - Thu, 18 Sep 2025 09:08:57 GMT
+ - Fri, 25 Sep 2026 00:07:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
@@ -16134,7 +16690,7 @@ interactions:
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -16158,13 +16714,13 @@ interactions:
ParameterSetName:
- -c -f -n --type --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:08:57 GMT
+ - Fri, 25 Sep 2026 00:07:22 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container2/dir1/file
response:
@@ -16176,11 +16732,11 @@ interactions:
content-md5:
- DzQ7CTESaiDxM9Z8KwGKOw==
date:
- - Thu, 18 Sep 2025 09:08:58 GMT
+ - Fri, 25 Sep 2026 00:07:22 GMT
etag:
- - '"0x8DDF69300AA5196"'
+ - '"0x8DF1A98F953F0C5"'
last-modified:
- - Thu, 18 Sep 2025 09:08:58 GMT
+ - Fri, 25 Sep 2026 00:07:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
@@ -16188,7 +16744,7 @@ interactions:
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -16212,13 +16768,13 @@ interactions:
ParameterSetName:
- -c -f -n --type --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:08:59 GMT
+ - Fri, 25 Sep 2026 00:07:23 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container2/dir2/file
response:
@@ -16230,11 +16786,11 @@ interactions:
content-md5:
- DzQ7CTESaiDxM9Z8KwGKOw==
date:
- - Thu, 18 Sep 2025 09:08:59 GMT
+ - Fri, 25 Sep 2026 00:07:23 GMT
etag:
- - '"0x8DDF693014E3D32"'
+ - '"0x8DF1A98F9D63BC1"'
last-modified:
- - Thu, 18 Sep 2025 09:08:59 GMT
+ - Fri, 25 Sep 2026 00:07:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
@@ -16242,7 +16798,7 @@ interactions:
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -16266,13 +16822,13 @@ interactions:
ParameterSetName:
- -c -f -n --type --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Thu, 18 Sep 2025 09:09:00 GMT
+ - Fri, 25 Sep 2026 00:07:24 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: PUT
uri: https://clitest000002.blob.core.windows.net/container2/dir2/file
response:
@@ -16284,11 +16840,11 @@ interactions:
content-md5:
- DzQ7CTESaiDxM9Z8KwGKOw==
date:
- - Thu, 18 Sep 2025 09:09:00 GMT
+ - Fri, 25 Sep 2026 00:07:24 GMT
etag:
- - '"0x8DDF69301FFFC33"'
+ - '"0x8DF1A98FA47641F"'
last-modified:
- - Thu, 18 Sep 2025 09:09:01 GMT
+ - Fri, 25 Sep 2026 00:07:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
@@ -16296,7 +16852,7 @@ interactions:
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -16314,38 +16870,38 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:09:01 GMT
+ - Fri, 25 Sep 2026 00:07:24 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container2?restype=container&comp=list&prefix=%2F
response:
body:
string: "\uFEFF//dir1/fileThu,
- 18 Sep 2025 09:08:57 GMTThu, 18 Sep 2025 09:08:57
- GMT0x8DDF692FFFFDD2A1024application/octet-stream//dir1/fileFri,
+ 25 Sep 2026 00:07:22 GMTFri, 25 Sep 2026 00:07:22
+ GMT0x8DF1A98F8E2C8EF1024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletrue/dir2//fileThu, 18
- Sep 2025 09:08:59 GMTThu, 18 Sep 2025 09:08:59
- GMT0x8DDF693014E3D321024application/octet-streamBlockBlobHottrueunlockedavailabletrue/dir2//fileFri, 25
+ Sep 2026 00:07:23 GMTFri, 25 Sep 2026 00:07:23
+ GMT0x8DF1A98F9D63BC11024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:09:01 GMT
+ - Fri, 25 Sep 2026 00:07:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -16363,13 +16919,13 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:09:02 GMT
+ - Fri, 25 Sep 2026 00:07:25 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container2/dir1/file
response:
@@ -16385,19 +16941,23 @@ interactions:
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:09:03 GMT
+ - Fri, 25 Sep 2026 00:07:25 GMT
etag:
- - '"0x8DDF692FFFFDD2A"'
+ - '"0x8DF1A98F8E2C8EF"'
last-modified:
- - Thu, 18 Sep 2025 09:08:57 GMT
+ - Fri, 25 Sep 2026 00:07:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- DzQ7CTESaiDxM9Z8KwGKOw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:08:57 GMT
+ - Fri, 25 Sep 2026 00:07:22 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -16405,7 +16965,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -16423,13 +16983,13 @@ interactions:
ParameterSetName:
- -s -d --pattern --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:09:03 GMT
+ - Fri, 25 Sep 2026 00:07:26 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container2/dir2/file
response:
@@ -16445,19 +17005,23 @@ interactions:
content-type:
- application/octet-stream
date:
- - Thu, 18 Sep 2025 09:09:03 GMT
+ - Fri, 25 Sep 2026 00:07:26 GMT
etag:
- - '"0x8DDF693014E3D32"'
+ - '"0x8DF1A98F9D63BC1"'
last-modified:
- - Thu, 18 Sep 2025 09:08:59 GMT
+ - Fri, 25 Sep 2026 00:07:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- DzQ7CTESaiDxM9Z8KwGKOw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Thu, 18 Sep 2025 09:08:59 GMT
+ - Fri, 25 Sep 2026 00:07:23 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -16465,7 +17029,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -16483,48 +17047,48 @@ interactions:
ParameterSetName:
- -s -d --account-name --account-key
User-Agent:
- - AZURECLI/2.77.0 azsdk-python-storage-blob/12.16.0 Python/3.12.10 (Windows-10-10.0.19045-SP0)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Thu, 18 Sep 2025 09:09:04 GMT
+ - Fri, 25 Sep 2026 00:07:27 GMT
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
method: GET
uri: https://clitest000002.blob.core.windows.net/container2?restype=container&comp=list
response:
body:
string: "\uFEFF/dir1/fileThu,
- 18 Sep 2025 09:08:57 GMTThu, 18 Sep 2025 09:08:57
- GMT0x8DDF692FFFFDD2A1024application/octet-stream/dir1/fileFri,
+ 25 Sep 2026 00:07:22 GMTFri, 25 Sep 2026 00:07:22
+ GMT0x8DF1A98F8E2C8EF1024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletrue/dir2//fileThu, 18
- Sep 2025 09:08:59 GMTThu, 18 Sep 2025 09:08:59
- GMT0x8DDF693014E3D321024application/octet-streamBlockBlobHottrueunlockedavailabletrue/dir2//fileFri, 25
+ Sep 2026 00:07:23 GMTFri, 25 Sep 2026 00:07:23
+ GMT0x8DF1A98F9D63BC11024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletruedir1/fileThu, 18 Sep
- 2025 09:08:58 GMTThu, 18 Sep 2025 09:08:58
- GMT0x8DDF69300AA51961024application/octet-streamBlockBlobHottrueunlockedavailabletruedir1/fileFri, 25 Sep
+ 2026 00:07:23 GMTFri, 25 Sep 2026 00:07:23
+ GMT0x8DF1A98F953F0C51024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletruedir2/fileThu, 18 Sep
- 2025 09:09:01 GMTThu, 18 Sep 2025 09:09:01
- GMT0x8DDF69301FFFC331024application/octet-streamBlockBlobHottrueunlockedavailabletruedir2/fileFri, 25 Sep
+ 2026 00:07:24 GMTFri, 25 Sep 2026 00:07:24
+ GMT0x8DF1A98FA47641F1024application/octet-streamDzQ7CTESaiDxM9Z8KwGKOw==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Thu, 18 Sep 2025 09:09:05 GMT
+ - Fri, 25 Sep 2026 00:07:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2022-11-02'
+ - '2026-04-06'
status:
code: 200
message: OK
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 7378ea5e63a..0a6605c0c5c 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
@@ -11,7 +11,7 @@
class StorageBatchOperationScenarios(StorageScenarioMixin, ScenarioTest):
@ResourceGroupPreparer()
- @StorageAccountPreparer()
+ @StorageAccountPreparer(kind='StorageV2')
@StorageTestFilesPreparer()
def test_storage_blob_batch_download_scenarios(self, test_dir, storage_account_info):
src_container = 'container1'
diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
index 35546143622..5bff8bec325 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
@@ -95,14 +95,20 @@ def test_download_batch_with_overwrite_does_not_replace_files_outside_destinatio
with open(outside_file, 'rb') as stream:
self.assertEqual(stream.read(), b'original')
- def test_download_batch_rejects_directory_link_escape(self):
+ def test_download_batch_follows_existing_directory_links(self):
+ # Existing symlinks/junctions under the destination are user-created layouts (e.g. routing a subtree to another
+ # disk), so they are followed as before; only the blob name itself is constrained.
outside = os.path.join(self.root, 'outside')
os.makedirs(outside)
self._make_directory_link(outside, os.path.join(self.destination, 'link'))
+ download = self._run(['link/file.txt'])
+ self.assertEqual(download.call_count, 1)
+ self.assertEqual(os.listdir(outside), ['file.txt'])
+
with self.assertRaises(FileOperationError):
- self._run(['link/evil.txt'])
- self.assertEqual(os.listdir(outside), [])
+ self._run(['link/../../evil.txt'])
+ self.assertEqual(os.listdir(outside), ['file.txt'])
def test_download_batch_rejects_windows_blob_names_with_simulated_windows_paths(self):
# Exercise Windows path semantics on any platform by swapping os.path for ntpath in the code under test
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 c630cde599e..f7f3ae997ed 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
@@ -322,7 +322,7 @@ def test_storage_container_soft_delete_oauth(self, resource_group, storage_accou
@live_only()
@ResourceGroupPreparer()
- @StorageAccountPreparer()
+ @StorageAccountPreparer(kind='StorageV2')
@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)
From d6f006095876bdb57f9b905e7eaca93e3051cb0d Mon Sep 17 00:00:00 2001
From: Sebastian Cramond <47074056+sebby37@users.noreply.github.com>
Date: Fri, 25 Sep 2026 13:56:38 +0930
Subject: [PATCH 4/5] Re-record live-only blob download-batch SAS and OAuth
scenario tests
---
...st_storage_blob_batch_oauth_scenarios.yaml | 4638 ++++++-----
...test_storage_blob_batch_sas_scenarios.yaml | 7390 +++++++++++++++++
.../latest/test_storage_batch_operations.py | 2 +-
3 files changed, 9792 insertions(+), 2238 deletions(-)
create mode 100644 src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_sas_scenarios.yaml
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
index 221906e8b20..866caa10e15 100644
--- 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
@@ -15,12 +15,12 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2024-11-01&$expand=kerb
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg.blobbatchoauth/providers/Microsoft.Storage/storageAccounts/clitestbatchoauth3274/listKeys?api-version=2025-08-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"}]}'
+ string: '{"keys":[{"creationTime":"2026-09-25T04:14:39.6377002Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2026-09-25T04:14:39.6377002Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
headers:
cache-control:
- no-cache
@@ -29,23 +29,23 @@ interactions:
content-type:
- application/json
date:
- - Fri, 07 Apr 2023 07:04:38 GMT
+ - Fri, 25 Sep 2026 04:15:37 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
+ x-cache:
+ - CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-operation-identifier:
+ - tenantId=4f00b3b6-2940-4f2c-b037-94637c180d30,objectId=079e6ce0-546e-438a-8ed7-63c2b8fb9c42/australiaeast/21598fef-bc28-4fe7-b2ee-e9bbc0a643c4
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '799'
+ x-msedge-ref:
+ - 'Ref A: 2AA4143A0B4A4C74BF37D60426646C13 Ref B: SYD281080707042 Ref C: 2026-09-25T04:15:37Z'
status:
code: 200
message: OK
@@ -65,13 +65,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:04:39 GMT
+ - Fri, 25 Sep 2026 04:15:38 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003?restype=container
response:
body:
string: ''
@@ -79,15 +79,15 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:04:39 GMT
+ - Fri, 25 Sep 2026 04:15:38 GMT
etag:
- - '"0x8DB37365B5D1AEF"'
+ - '"0x8DF1ABBA7C5CFFB"'
last-modified:
- - Fri, 07 Apr 2023 07:04:40 GMT
+ - Fri, 25 Sep 2026 04:15:38 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -105,29 +105,29 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:04:41 GMT
+ - Fri, 25 Sep 2026 04:15:38 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000
response:
body:
string: "\uFEFF50005000"
headers:
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:41 GMT
+ - Fri, 25 Sep 2026 04:15:38 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -154,37 +154,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:43 GMT
+ - Fri, 25 Sep 2026 04:15:39 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/readme
+ uri: https://clitestbatchoauth3274.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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:9222c40f-001e-000b-2ba4-4c1383000000\nTime:2026-09-25T04:15:40.3815921Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:43 GMT
+ - Fri, 25 Sep 2026 04:15:39 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_3'
headers:
Accept:
- application/xml
@@ -195,7 +195,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -205,37 +205,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:44 GMT
+ - Fri, 25 Sep 2026 04:15:40 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_3
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:b4afeb9b-201e-0033-51a4-4cb743000000\nTime:2026-09-25T04:15:41.2533584Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:43 GMT
+ - Fri, 25 Sep 2026 04:15:40 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_0'
headers:
Accept:
- application/xml
@@ -246,7 +246,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -256,37 +256,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:44 GMT
+ - Fri, 25 Sep 2026 04:15:41 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_0
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:eee21dd7-601e-006f-1fa4-4ce21b000000\nTime:2026-09-25T04:15:42.1250114Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:43 GMT
+ - Fri, 25 Sep 2026 04:15:41 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_4'
headers:
Accept:
- application/xml
@@ -297,7 +297,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -307,37 +307,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:44 GMT
+ - Fri, 25 Sep 2026 04:15:42 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_4
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:254b74b9-d01e-0037-68a4-4c3a44000000\nTime:2026-09-25T04:15:42.9911070Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:44 GMT
+ - Fri, 25 Sep 2026 04:15:42 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_6'
headers:
Accept:
- application/xml
@@ -348,7 +348,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -358,37 +358,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:45 GMT
+ - Fri, 25 Sep 2026 04:15:43 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_6
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:e0482c80-001e-001b-11a4-4cd6eb000000\nTime:2026-09-25T04:15:43.8509513Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:44 GMT
+ - Fri, 25 Sep 2026 04:15:43 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_2'
headers:
Accept:
- application/xml
@@ -399,7 +399,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -409,37 +409,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:45 GMT
+ - Fri, 25 Sep 2026 04:15:44 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_2
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:2dee7fa3-201e-006e-60a4-4cbdc7000000\nTime:2026-09-25T04:15:44.7132658Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:44 GMT
+ - Fri, 25 Sep 2026 04:15:44 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_8'
headers:
Accept:
- application/xml
@@ -450,7 +450,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -460,37 +460,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:45 GMT
+ - Fri, 25 Sep 2026 04:15:45 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_8
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:69092bde-901e-0009-4fa4-4cad3b000000\nTime:2026-09-25T04:15:45.5724423Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:44 GMT
+ - Fri, 25 Sep 2026 04:15:45 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_1'
headers:
Accept:
- application/xml
@@ -501,7 +501,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -511,37 +511,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:46 GMT
+ - Fri, 25 Sep 2026 04:15:45 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_1
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:72c99c97-101e-0038-52a4-4c4c28000000\nTime:2026-09-25T04:15:46.4511281Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:45 GMT
+ - Fri, 25 Sep 2026 04:15:46 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_9'
headers:
Accept:
- application/xml
@@ -552,7 +552,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -562,37 +562,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:46 GMT
+ - Fri, 25 Sep 2026 04:15:46 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_9
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:ed53b7fa-601e-0022-6aa4-4c2df7000000\nTime:2026-09-25T04:15:47.3296595Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:45 GMT
+ - Fri, 25 Sep 2026 04:15:46 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_7'
headers:
Accept:
- application/xml
@@ -603,7 +603,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -613,37 +613,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:46 GMT
+ - Fri, 25 Sep 2026 04:15:47 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_7
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:b71b861f-d01e-006a-73a4-4c30c0000000\nTime:2026-09-25T04:15:48.1920106Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:45 GMT
+ - Fri, 25 Sep 2026 04:15:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_5'
headers:
Accept:
- application/xml
@@ -654,7 +654,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-Match:
@@ -664,37 +664,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:46 GMT
+ - Fri, 25 Sep 2026 04:15:48 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_5
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:1c456e11-e01e-0071-5fa4-4c0ec3000000\nTime:2026-09-25T04:15:49.1183878Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:46 GMT
+ - Fri, 25 Sep 2026 04:15:48 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_3'
headers:
Accept:
- application/xml
@@ -705,7 +705,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -715,37 +715,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:47 GMT
+ - Fri, 25 Sep 2026 04:15:49 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_3
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:682da50f-801e-0058-1da4-4c30b7000000\nTime:2026-09-25T04:15:49.9845645Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:46 GMT
+ - Fri, 25 Sep 2026 04:15:49 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_0'
headers:
Accept:
- application/xml
@@ -756,7 +756,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -766,37 +766,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:47 GMT
+ - Fri, 25 Sep 2026 04:15:50 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_0
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:1b1f3b15-301e-0062-32a4-4c2acf000000\nTime:2026-09-25T04:15:50.8642017Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:46 GMT
+ - Fri, 25 Sep 2026 04:15:50 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_4'
headers:
Accept:
- application/xml
@@ -807,7 +807,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -817,37 +817,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:47 GMT
+ - Fri, 25 Sep 2026 04:15:51 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_4
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:2dee97fa-201e-006e-5ba4-4cbdc7000000\nTime:2026-09-25T04:15:51.7118235Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:46 GMT
+ - Fri, 25 Sep 2026 04:15:51 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_6'
headers:
Accept:
- application/xml
@@ -858,7 +858,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -868,37 +868,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:48 GMT
+ - Fri, 25 Sep 2026 04:15:52 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_6
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:8bc6801a-701e-004c-0ba4-4c78d8000000\nTime:2026-09-25T04:15:52.5670250Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:47 GMT
+ - Fri, 25 Sep 2026 04:15:51 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_2'
headers:
Accept:
- application/xml
@@ -909,7 +909,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -919,37 +919,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:48 GMT
+ - Fri, 25 Sep 2026 04:15:53 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_2
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:45725253-901e-0036-39a4-4c6598000000\nTime:2026-09-25T04:15:53.4278197Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:47 GMT
+ - Fri, 25 Sep 2026 04:15:52 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_8'
headers:
Accept:
- application/xml
@@ -960,7 +960,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -970,37 +970,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:48 GMT
+ - Fri, 25 Sep 2026 04:15:54 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_8
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:5813c33a-501e-0039-1fa4-4c13f4000000\nTime:2026-09-25T04:15:54.3066214Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:47 GMT
+ - Fri, 25 Sep 2026 04:15:53 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_1'
headers:
Accept:
- application/xml
@@ -1011,7 +1011,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -1021,37 +1021,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:48 GMT
+ - Fri, 25 Sep 2026 04:15:54 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_1
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:4a97bb0b-101e-0028-48a4-4c8940000000\nTime:2026-09-25T04:15:55.1727902Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:47 GMT
+ - Fri, 25 Sep 2026 04:15:54 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_9'
headers:
Accept:
- application/xml
@@ -1062,7 +1062,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -1072,37 +1072,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:49 GMT
+ - Fri, 25 Sep 2026 04:15:55 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_9
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:c907a654-501e-005b-35a4-4cd1d3000000\nTime:2026-09-25T04:15:56.0413027Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:48 GMT
+ - Fri, 25 Sep 2026 04:15:56 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_7'
headers:
Accept:
- application/xml
@@ -1113,7 +1113,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -1123,37 +1123,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:49 GMT
+ - Fri, 25 Sep 2026 04:15:56 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_7
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:690957f0-901e-0009-1ba4-4cad3b000000\nTime:2026-09-25T04:15:56.9142674Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:48 GMT
+ - Fri, 25 Sep 2026 04:15:56 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_5'
headers:
Accept:
- application/xml
@@ -1164,7 +1164,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-Match:
@@ -1174,37 +1174,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:49 GMT
+ - Fri, 25 Sep 2026 04:15:57 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_5
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:cdd202fb-f01e-0052-12a4-4c9400000000\nTime:2026-09-25T04:15:57.7807486Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:48 GMT
+ - Fri, 25 Sep 2026 04:15:57 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_3'
headers:
Accept:
- application/xml
@@ -1215,7 +1215,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1225,37 +1225,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:50 GMT
+ - Fri, 25 Sep 2026 04:15:58 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_3
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:5813cfc6-501e-0039-40a4-4c13f4000000\nTime:2026-09-25T04:15:58.6118961Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:49 GMT
+ - Fri, 25 Sep 2026 04:15:57 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_0'
headers:
Accept:
- application/xml
@@ -1266,7 +1266,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1276,37 +1276,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:50 GMT
+ - Fri, 25 Sep 2026 04:15:59 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_0
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:2471d3c8-c01e-0004-20a4-4c65ef000000\nTime:2026-09-25T04:15:59.4762599Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:49 GMT
+ - Fri, 25 Sep 2026 04:15:59 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_4'
headers:
Accept:
- application/xml
@@ -1317,7 +1317,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1327,37 +1327,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:50 GMT
+ - Fri, 25 Sep 2026 04:16:00 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_4
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:254bc5ab-d01e-0037-5ea4-4c3a44000000\nTime:2026-09-25T04:16:00.3203549Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:49 GMT
+ - Fri, 25 Sep 2026 04:15:59 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_6'
headers:
Accept:
- application/xml
@@ -1368,7 +1368,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1378,37 +1378,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:50 GMT
+ - Fri, 25 Sep 2026 04:16:01 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_6
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:818f9ec6-a01e-003d-5aa4-4c9ef3000000\nTime:2026-09-25T04:16:01.1944128Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:49 GMT
+ - Fri, 25 Sep 2026 04:16:00 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_2'
headers:
Accept:
- application/xml
@@ -1419,7 +1419,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1429,37 +1429,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:51 GMT
+ - Fri, 25 Sep 2026 04:16:02 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_2
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:097a7fd8-e01e-003c-2ea4-4cc12f000000\nTime:2026-09-25T04:16:02.0925961Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:50 GMT
+ - Fri, 25 Sep 2026 04:16:01 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_8'
headers:
Accept:
- application/xml
@@ -1470,7 +1470,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1480,37 +1480,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:51 GMT
+ - Fri, 25 Sep 2026 04:16:03 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_8
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:1c459b7b-e01e-0071-20a4-4c0ec3000000\nTime:2026-09-25T04:16:02.9322592Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:50 GMT
+ - Fri, 25 Sep 2026 04:16:02 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_1'
headers:
Accept:
- application/xml
@@ -1521,7 +1521,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1531,37 +1531,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:51 GMT
+ - Fri, 25 Sep 2026 04:16:03 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_1
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:5b4d5123-901e-0054-51a4-4ca7bf000000\nTime:2026-09-25T04:16:03.8224649Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:50 GMT
+ - Fri, 25 Sep 2026 04:16:03 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_9'
headers:
Accept:
- application/xml
@@ -1572,7 +1572,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1582,37 +1582,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:51 GMT
+ - Fri, 25 Sep 2026 04:16:04 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_9
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:2471e2f6-c01e-0004-67a4-4c65ef000000\nTime:2026-09-25T04:16:04.6497067Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:51 GMT
+ - Fri, 25 Sep 2026 04:16:04 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_7'
headers:
Accept:
- application/xml
@@ -1623,7 +1623,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1633,37 +1633,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:52 GMT
+ - Fri, 25 Sep 2026 04:16:05 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_7
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:6909790f-901e-0009-1da4-4cad3b000000\nTime:2026-09-25T04:16:05.4927686Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:51 GMT
+ - Fri, 25 Sep 2026 04:16:05 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_5'
headers:
Accept:
- application/xml
@@ -1674,7 +1674,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-Match:
@@ -1684,37 +1684,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:52 GMT
+ - Fri, 25 Sep 2026 04:16:06 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_5
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:a2ea7bbd-101e-0017-50a4-4c41e3000000\nTime:2026-09-25T04:16:06.3750937Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:51 GMT
+ - Fri, 25 Sep 2026 04:16:05 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_3'
headers:
Accept:
- application/xml
@@ -1725,7 +1725,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -1735,37 +1735,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:52 GMT
+ - Fri, 25 Sep 2026 04:16:07 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_3
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:734b7478-601e-001d-4da4-4ce554000000\nTime:2026-09-25T04:16:07.2577670Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:51 GMT
+ - Fri, 25 Sep 2026 04:16:06 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_0'
headers:
Accept:
- application/xml
@@ -1776,7 +1776,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -1786,37 +1786,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:53 GMT
+ - Fri, 25 Sep 2026 04:16:08 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_0
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:caf6089c-501e-0029-18a4-4cd69c000000\nTime:2026-09-25T04:16:08.1308976Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:52 GMT
+ - Fri, 25 Sep 2026 04:16:07 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_4'
headers:
Accept:
- application/xml
@@ -1827,7 +1827,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -1837,37 +1837,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:53 GMT
+ - Fri, 25 Sep 2026 04:16:09 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_4
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:7f77e4ce-b01e-006c-21a4-4c037f000000\nTime:2026-09-25T04:16:09.0140296Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:52 GMT
+ - Fri, 25 Sep 2026 04:16:08 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_6'
headers:
Accept:
- application/xml
@@ -1878,7 +1878,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -1888,37 +1888,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:53 GMT
+ - Fri, 25 Sep 2026 04:16:10 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_6
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:d47b04bc-301e-002f-47a4-4ce523000000\nTime:2026-09-25T04:16:09.8741790Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:52 GMT
+ - Fri, 25 Sep 2026 04:16:08 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_2'
headers:
Accept:
- application/xml
@@ -1929,7 +1929,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -1939,37 +1939,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:53 GMT
+ - Fri, 25 Sep 2026 04:16:09 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_2
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:6093b4f7-a01e-0012-4fa4-4c9338000000\nTime:2026-09-25T04:16:10.7556670Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:52 GMT
+ - Fri, 25 Sep 2026 04:16:10 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_8'
headers:
Accept:
- application/xml
@@ -1980,7 +1980,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -1990,37 +1990,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:54 GMT
+ - Fri, 25 Sep 2026 04:16:10 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_8
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:316db8c0-401e-0068-4ba4-4c8e78000000\nTime:2026-09-25T04:16:11.6366147Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:53 GMT
+ - Fri, 25 Sep 2026 04:16:11 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_1'
headers:
Accept:
- application/xml
@@ -2031,7 +2031,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -2041,37 +2041,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:54 GMT
+ - Fri, 25 Sep 2026 04:16:11 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_1
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:1c45b545-e01e-0071-5ba4-4c0ec3000000\nTime:2026-09-25T04:16:12.4818307Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:53 GMT
+ - Fri, 25 Sep 2026 04:16:12 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_9'
headers:
Accept:
- application/xml
@@ -2082,7 +2082,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -2092,37 +2092,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:54 GMT
+ - Fri, 25 Sep 2026 04:16:12 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_9
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:254bf6f2-d01e-0037-7ea4-4c3a44000000\nTime:2026-09-25T04:16:13.3252719Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:53 GMT
+ - Fri, 25 Sep 2026 04:16:12 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_7'
headers:
Accept:
- application/xml
@@ -2133,7 +2133,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -2143,37 +2143,37 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:54 GMT
+ - Fri, 25 Sep 2026 04:16:13 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_7
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:b24e03ac-e01e-005e-7fa4-4c0308000000\nTime:2026-09-25T04:16:14.1962541Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:54 GMT
+ - Fri, 25 Sep 2026 04:16:13 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_5'
headers:
Accept:
- application/xml
@@ -2184,7 +2184,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-Match:
@@ -2194,32 +2194,32 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:55 GMT
+ - Fri, 25 Sep 2026 04:16:14 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_5
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"
+ condition specified using HTTP conditional header(s) is not met.\nRequestId:a473d3dc-201e-000c-52a4-4c7fe0000000\nTime:2026-09-25T04:16:15.0840063Z"
headers:
content-length:
- '250'
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:54 GMT
+ - Fri, 25 Sep 2026 04:16:14 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-error-code:
- ConditionNotMet
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 412
message: The condition specified using HTTP conditional header(s) is not met.
@@ -2237,29 +2237,29 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:04:55 GMT
+ - Fri, 25 Sep 2026 04:16:15 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000
response:
body:
string: "\uFEFF50005000"
headers:
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:04:55 GMT
+ - Fri, 25 Sep 2026 04:16:15 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -2284,15 +2284,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:16 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/readme
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/readme
response:
body:
string: ''
@@ -2302,11 +2302,11 @@ interactions:
content-md5:
- sYGKK8OX+WLKH+2bAe4tSQ==
date:
- - Fri, 07 Apr 2023 07:04:56 GMT
+ - Fri, 25 Sep 2026 04:16:16 GMT
etag:
- - '"0x8DB3736658B9A0B"'
+ - '"0x8DF1ABBBEAB4748"'
last-modified:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
@@ -2314,12 +2314,12 @@ interactions:
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_3'
headers:
Accept:
- application/xml
@@ -2330,7 +2330,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2338,15 +2338,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:17 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_3
response:
body:
string: ''
@@ -2354,26 +2354,26 @@ interactions:
content-length:
- '0'
content-md5:
- - akPRzODVxn8zK/AP2n7KAA==
+ - lTbNN1Xc8kq6svqVrdaaXg==
date:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:16 GMT
etag:
- - '"0x8DB373665B53C07"'
+ - '"0x8DF1ABBBF2BA6D6"'
last-modified:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - fGMqXMkmhE4=
+ - bZ0HnqmjypI=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_0'
headers:
Accept:
- application/xml
@@ -2384,7 +2384,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2392,15 +2392,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:18 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_0
response:
body:
string: ''
@@ -2408,26 +2408,26 @@ interactions:
content-length:
- '0'
content-md5:
- - Csfcfd1TNZvDJcvpJy2xRQ==
+ - /Qf9RU8ORraIPmujNZdu6g==
date:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:17 GMT
etag:
- - '"0x8DB373665DEDE1A"'
+ - '"0x8DF1ABBBFABF177"'
last-modified:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:18 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - BeofbAHW6jE=
+ - 5gZZzvGyeRM=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_4'
headers:
Accept:
- application/xml
@@ -2438,7 +2438,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2446,15 +2446,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:19 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_4
response:
body:
string: ''
@@ -2462,26 +2462,26 @@ interactions:
content-length:
- '0'
content-md5:
- - A+BU3W0B5bteIX31/CggRQ==
+ - OKPAFkgxHyj+oLQjw88H5g==
date:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:19 GMT
etag:
- - '"0x8DB37366608320C"'
+ - '"0x8DF1ABBC032B275"'
last-modified:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - jnFBPFnHWbA=
+ - abAYVoJXG9o=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_6'
headers:
Accept:
- application/xml
@@ -2492,7 +2492,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2500,15 +2500,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:20 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_6
response:
body:
string: ''
@@ -2516,26 +2516,26 @@ interactions:
content-length:
- '0'
content-md5:
- - uoUeM98MxWZVVEIv1pU/HA==
+ - yaBBpJXf1GJWJkrdYcn5ew==
date:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:20 GMT
etag:
- - '"0x8DB3736663185EF"'
+ - '"0x8DF1ABBC0B75934"'
last-modified:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 9/h0DJE3N88=
+ - m6JzNhK2xiQ=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_2'
headers:
Accept:
- application/xml
@@ -2546,7 +2546,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2554,15 +2554,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:20 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_2
response:
body:
string: ''
@@ -2570,26 +2570,26 @@ interactions:
content-length:
- '0'
content-md5:
- - n1SxWnxluWC26LCLSByJvA==
+ - vKU3oj3URhMlA4pGm8Gh/w==
date:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:20 GMT
etag:
- - '"0x8DB3736665B00EB"'
+ - '"0x8DF1ABBC13C0C77"'
last-modified:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 89VrxLrD5oc=
+ - FBQyrmFTpO0=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_8'
headers:
Accept:
- application/xml
@@ -2600,7 +2600,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2608,15 +2608,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:21 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_8
response:
body:
string: ''
@@ -2624,26 +2624,26 @@ interactions:
content-length:
- '0'
content-md5:
- - YwbWkn8USTTB1Dblm1B9BQ==
+ - nMwlS54VJlYl2Mih7IlA3Q==
date:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:21 GMT
etag:
- - '"0x8DB373666851814"'
+ - '"0x8DF1ABBC1BEB362"'
last-modified:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - ilxe9HIziPg=
+ - k/hNpkVeZbU=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_1'
headers:
Accept:
- application/xml
@@ -2654,7 +2654,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2662,15 +2662,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:22 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_1
response:
body:
string: ''
@@ -2678,26 +2678,26 @@ interactions:
content-length:
- '0'
content-md5:
- - UCeOAi2H9/UMR1c92CFfSQ==
+ - dbBzw2zLiDW+PPXIZsdnSw==
date:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:22 GMT
etag:
- - '"0x8DB373666AFF273"'
+ - '"0x8DF1ABBC243D315"'
last-modified:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - AccApCoiO3k=
+ - n49s/jlCF2w=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_9'
headers:
Accept:
- application/xml
@@ -2708,7 +2708,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2716,15 +2716,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:23 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_9
response:
body:
string: ''
@@ -2732,26 +2732,26 @@ interactions:
content-length:
- '0'
content-md5:
- - r0sxRWSreg/ugh3gj7AhfQ==
+ - wJ6JILpkZQKxgFqh3PKvEA==
date:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:23 GMT
etag:
- - '"0x8DB373666D9BB88"'
+ - '"0x8DF1ABBC2C82427"'
last-modified:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - eE41lOLSVQY=
+ - 6nF4lo2uC8o=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_7'
headers:
Accept:
- application/xml
@@ -2762,7 +2762,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2770,15 +2770,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:24 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_7
response:
body:
string: ''
@@ -2786,26 +2786,26 @@ interactions:
content-length:
- '0'
content-md5:
- - AdC1c2QCT3A2pqWSsisLnw==
+ - wGT+KnqT8BlMwLypL6sJHA==
date:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:24 GMT
etag:
- - '"0x8DB37366702E867"'
+ - '"0x8DF1ABBC34936D3"'
last-modified:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - CZ0+NH3KmOg=
+ - 4itGBtpGqFs=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_5'
headers:
Accept:
- application/xml
@@ -2816,7 +2816,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '133'
+ - '107'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2824,15 +2824,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:25 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_5
response:
body:
string: ''
@@ -2840,26 +2840,26 @@ interactions:
content-length:
- '0'
content-md5:
- - y4RIihyMRalyFFTpXqdWDA==
+ - AnyKnTXFO8E8ybKO5hqnpA==
date:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:25 GMT
etag:
- - '"0x8DB3736672D74B1"'
+ - '"0x8DF1ABBC3CF566D"'
last-modified:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - cBQLBLU69pc=
+ - EDktZkqndaU=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_3'
headers:
Accept:
- application/xml
@@ -2870,7 +2870,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2878,15 +2878,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:26 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_3
response:
body:
string: ''
@@ -2894,26 +2894,26 @@ interactions:
content-length:
- '0'
content-md5:
- - grlrMehYaxqDPLYpLl1NMQ==
+ - eQVxu5dUaNm3zpXSsvj23A==
date:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:26 GMT
etag:
- - '"0x8DB37366756EFBB"'
+ - '"0x8DF1ABBC4556E18"'
last-modified:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:26 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - hfhjFV2n9EQ=
+ - EGpb4bW77JM=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_0'
headers:
Accept:
- application/xml
@@ -2924,7 +2924,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2932,15 +2932,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:27 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_0
response:
body:
string: ''
@@ -2948,26 +2948,26 @@ interactions:
content-length:
- '0'
content-md5:
- - S9i8DZm+5kwBUnOBvt0Qeg==
+ - v9W3trN10sUh/rF1Pi2egA==
date:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:26 GMT
etag:
- - '"0x8DB37366780DFC4"'
+ - '"0x8DF1ABBC4D61DEA"'
last-modified:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - /HFWJZVXmjs=
+ - m/EFse2qXxI=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_4'
headers:
Accept:
- application/xml
@@ -2978,7 +2978,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -2986,15 +2986,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:28 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_4
response:
body:
string: ''
@@ -3002,26 +3002,26 @@ interactions:
content-length:
- '0'
content-md5:
- - fmkdpLs3wZOgK7DPqHyxFA==
+ - QW7WlPjVLBgT5jpCUGnWJw==
date:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:27 GMT
etag:
- - '"0x8DB373667AA81B9"'
+ - '"0x8DF1ABBC5434647"'
last-modified:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - d+oIdc1GKbo=
+ - FEdEKZ5PPds=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_6'
headers:
Accept:
- application/xml
@@ -3032,7 +3032,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3040,15 +3040,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:28 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_6
response:
body:
string: ''
@@ -3056,26 +3056,26 @@ interactions:
content-length:
- '0'
content-md5:
- - m0Zg69Hi/Myv0+fYpjgJ7g==
+ - Qx/O0LNFoP4nVaobZ8pHfg==
date:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:27 GMT
etag:
- - '"0x8DB373667D2EB76"'
+ - '"0x8DF1ABBC5B0F612"'
last-modified:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - DmM9RQW2R8U=
+ - 5lUvSQ6u4CU=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_2'
headers:
Accept:
- application/xml
@@ -3086,7 +3086,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3094,15 +3094,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:29 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_2
response:
body:
string: ''
@@ -3110,26 +3110,26 @@ interactions:
content-length:
- '0'
content-md5:
- - Hep5bDlvMOYer6o5kcmGjw==
+ - +rvCWCiqrAsyAf7dQLmV2A==
date:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:29 GMT
etag:
- - '"0x8DB373667FD0294"'
+ - '"0x8DF1ABBC61AC8FF"'
last-modified:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - Ck4ijS5Clo0=
+ - aeNu0X1Lguw=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_8'
headers:
Accept:
- application/xml
@@ -3140,7 +3140,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3148,15 +3148,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_8
response:
body:
string: ''
@@ -3164,26 +3164,26 @@ interactions:
content-length:
- '0'
content-md5:
- - zD2CJl5JNDCamugq5+kcaA==
+ - V2xS27DGCE/5t0E06C8b0w==
date:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
etag:
- - '"0x8DB37366824A910"'
+ - '"0x8DF1ABBC687A83E"'
last-modified:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - c8cXveay+PI=
+ - 7g8R2VlGQ7Q=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_1'
headers:
Accept:
- application/xml
@@ -3194,7 +3194,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3202,15 +3202,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:31 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_1
response:
body:
string: ''
@@ -3218,26 +3218,26 @@ interactions:
content-length:
- '0'
content-md5:
- - bWzn5VgDECWF1CDvFLe3Yg==
+ - iBSwcfPVNfIO2nSGU1AewA==
date:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
etag:
- - '"0x8DB3736684D60DA"'
+ - '"0x8DF1ABBC6F5F397"'
last-modified:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - +FxJ7b6jS3M=
+ - 4ngwgSVaMW0=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_9'
headers:
Accept:
- application/xml
@@ -3248,7 +3248,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3256,15 +3256,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:31 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_9
response:
body:
string: ''
@@ -3272,26 +3272,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 4W3BRGlJn+5Fn7z+QQUhBg==
+ - nX3ccwo8xXyHodIJYyZeqw==
date:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:31 GMT
etag:
- - '"0x8DB3736687DB8A7"'
+ - '"0x8DF1ABBC781E23B"'
last-modified:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - gdV83XZTJQw=
+ - l4Yk6ZG2Lcs=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_7'
headers:
Accept:
- application/xml
@@ -3302,7 +3302,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3310,15 +3310,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:32 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_7
response:
body:
string: ''
@@ -3326,26 +3326,26 @@ interactions:
content-length:
- '0'
content-md5:
- - FTtakfWtMuz8EygCN4GFaQ==
+ - cKO6H9WcP6cjkA0IPH86Vw==
date:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:32 GMT
etag:
- - '"0x8DB373668A5AD40"'
+ - '"0x8DF1ABBC7ECD5FC"'
last-modified:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 8AZ3felL6OI=
+ - n9waecZejlo=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_5'
headers:
Accept:
- application/xml
@@ -3356,7 +3356,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '134'
+ - '102'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3364,15 +3364,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_5
response:
body:
string: ''
@@ -3380,26 +3380,26 @@ interactions:
content-length:
- '0'
content-md5:
- - RuwyYWEdqj9v/DZ4NapZnA==
+ - Lwv+X8POTC1e5IbZN76hAw==
date:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:32 GMT
etag:
- - '"0x8DB373668CC9085"'
+ - '"0x8DF1ABBC857E734"'
last-modified:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - iY9CTSG7hp0=
+ - bc5xGVa/U6Q=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_3'
headers:
Accept:
- application/xml
@@ -3410,7 +3410,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3418,15 +3418,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:34 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_3
response:
body:
string: ''
@@ -3434,26 +3434,26 @@ interactions:
content-length:
- '0'
content-md5:
- - fZMVhdV5fOxZbt8orseV3g==
+ - aQaqRIfjTAF5EI3eb+x4vA==
date:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
etag:
- - '"0x8DB373668F5E476"'
+ - '"0x8DF1ABBC8C58D6B"'
last-modified:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - biU4jjLH/YU=
+ - XAG/9cdVcwM=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_0'
headers:
Accept:
- application/xml
@@ -3464,7 +3464,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3472,15 +3472,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:34 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_0
response:
body:
string: ''
@@ -3488,26 +3488,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 8ThrNa2+zPucucYPb4XHGg==
+ - CmhVseVR7/FF9yC/RjtggQ==
date:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
etag:
- - '"0x8DB3736691EEA50"'
+ - '"0x8DF1ABBC931B847"'
last-modified:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:34 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - F6wNvvo3k/o=
+ - 15rhpZ9EwII=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_4'
headers:
Accept:
- application/xml
@@ -3518,7 +3518,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3526,15 +3526,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:35 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_4
response:
body:
string: ''
@@ -3542,26 +3542,26 @@ interactions:
content-length:
- '0'
content-md5:
- - qvzt6SUD19rux8aG82K8Iw==
+ - UbBk9XVrgSv2hLzudJ177g==
date:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:34 GMT
etag:
- - '"0x8DB3736694690E2"'
+ - '"0x8DF1ABBC9A1AF70"'
last-modified:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:35 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - nDdT7qImIHs=
+ - WCygPeyhoks=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_6'
headers:
Accept:
- application/xml
@@ -3572,7 +3572,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3580,15 +3580,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_6
response:
body:
string: ''
@@ -3596,26 +3596,26 @@ interactions:
content-length:
- '0'
content-md5:
- - nWhId82KTCHmCq6phTThKw==
+ - EQ6ADSH3e0vnVyghQLUzqw==
date:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:35 GMT
etag:
- - '"0x8DB373669719235"'
+ - '"0x8DF1ABBCA0CCA22"'
last-modified:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 5b5m3mrWTgQ=
+ - qj7LXXxAf7U=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_2'
headers:
Accept:
- application/xml
@@ -3626,7 +3626,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3634,15 +3634,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:37 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_2
response:
body:
string: ''
@@ -3650,26 +3650,26 @@ interactions:
content-length:
- '0'
content-md5:
- - k4SIuao1cJfPOF/PcPW99A==
+ - KKWxKKih6pOiPtyAG/DWuA==
date:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
etag:
- - '"0x8DB3736699B8249"'
+ - '"0x8DF1ABBCA8E5886"'
last-modified:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - 4ZN5FkEin0w=
+ - JYiKxQ+lHXw=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_8'
headers:
Accept:
- application/xml
@@ -3680,7 +3680,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3688,15 +3688,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:38 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_8
response:
body:
string: ''
@@ -3704,26 +3704,26 @@ interactions:
content-length:
- '0'
content-md5:
- - Yhbp9va6Uev2WouIl11hlg==
+ - h9cVfLx2OJ+suG4rlhK4wQ==
date:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
etag:
- - '"0x8DB373669C4FD42"'
+ - '"0x8DF1ABBCAFF5FF0"'
last-modified:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:37 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - mBpMJonS8TM=
+ - omT1zSuo3CQ=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_1'
headers:
Accept:
- application/xml
@@ -3734,7 +3734,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3742,15 +3742,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:38 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_1
response:
body:
string: ''
@@ -3758,26 +3758,26 @@ interactions:
content-length:
- '0'
content-md5:
- - Gs8TYkBKpozmOjByEh/AKg==
+ - bAq7GzbpoSgBCni2DVhKDg==
date:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:37 GMT
etag:
- - '"0x8DB373669F6DB7A"'
+ - '"0x8DF1ABBCB6C0696"'
last-modified:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:38 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - E4ESdtHDQrI=
+ - rhPUlVe0rv0=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_9'
headers:
Accept:
- application/xml
@@ -3788,7 +3788,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3796,15 +3796,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:39 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_9
response:
body:
string: ''
@@ -3812,26 +3812,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 8jkucYOrdcWBcfURRkGSUA==
+ - EACxfbXDucSCmLW6M6cjkA==
date:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:38 GMT
etag:
- - '"0x8DB37366A1E33EF"'
+ - '"0x8DF1ABBCBD54E5B"'
last-modified:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:39 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - aggnRhkzLM0=
+ - 2+3A/eNYsls=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_7'
headers:
Accept:
- application/xml
@@ -3842,7 +3842,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3850,15 +3850,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:40 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_7
response:
body:
string: ''
@@ -3866,26 +3866,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 9HGalJE7qK5YCA4//j3Bgw==
+ - NZN7MNHb4HIfPqXVT+GT/g==
date:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:39 GMT
etag:
- - '"0x8DB37366A456541"'
+ - '"0x8DF1ABBCC433322"'
last-modified:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:39 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - G9ss5oYr4SM=
+ - 07f+bbSwEco=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_5'
headers:
Accept:
- application/xml
@@ -3896,7 +3896,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '142'
+ - '110'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3904,15 +3904,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:40 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_5
response:
body:
string: ''
@@ -3920,26 +3920,26 @@ interactions:
content-length:
- '0'
content-md5:
- - oNt8UttwLAi+00Q97PjCkw==
+ - RtlpSTg9/OHsP8CuFbfN3A==
date:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:40 GMT
etag:
- - '"0x8DB37366A6C96A7"'
+ - '"0x8DF1ABBCCB0390D"'
last-modified:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:40 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - YlIZ1k7bj1w=
+ - IaWVDSRRzDQ=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_3'
headers:
Accept:
- application/xml
@@ -3950,7 +3950,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -3958,15 +3958,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:41 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_3
response:
body:
string: ''
@@ -3974,26 +3974,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 5WD9QHC0TurCYnf3R96ZCQ==
+ - PzMzvMuYU2x+31kJ/k16iQ==
date:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:40 GMT
etag:
- - '"0x8DB37366A93C80A"'
+ - '"0x8DF1ABBCD1A4C9D"'
last-modified:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:41 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - DNcow1iGnKs=
+ - kbulcK6rrrU=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_0'
headers:
Accept:
- application/xml
@@ -4004,7 +4004,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4012,15 +4012,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:41 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_0
response:
body:
string: ''
@@ -4028,26 +4028,26 @@ interactions:
content-length:
- '0'
content-md5:
- - Te1phRB/aiuccBo52yK31A==
+ - OKj1U7w39iXIk3iBQLEkAQ==
date:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:41 GMT
etag:
- - '"0x8DB37366AC16113"'
+ - '"0x8DF1ABBCD9FAF89"'
last-modified:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - dV4d85B28tQ=
+ - GiD7IPa6HTQ=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_4'
headers:
Accept:
- application/xml
@@ -4058,7 +4058,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4066,15 +4066,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_4
response:
body:
string: ''
@@ -4082,26 +4082,26 @@ interactions:
content-length:
- '0'
content-md5:
- - ecy/i+dABRdGCLNdsEgdAA==
+ - fXZ9rtbIXvMMtaUC6NXWTA==
date:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
etag:
- - '"0x8DB37366AEA66FC"'
+ - '"0x8DF1ABBCE0B8CA7"'
last-modified:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - /sVDo8hnQVU=
+ - lZa6uIVff/0=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_6'
headers:
Accept:
- application/xml
@@ -4112,7 +4112,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4120,15 +4120,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_6
response:
body:
string: ''
@@ -4136,26 +4136,26 @@ interactions:
content-length:
- '0'
content-md5:
- - LdJoInsnLvvToyEjVnDfxQ==
+ - t3UBWWy9iPWJ+FL98KgfuA==
date:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:43 GMT
etag:
- - '"0x8DB37366B1345C7"'
+ - '"0x8DF1ABBCE75D5D6"'
last-modified:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:43 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - h0x2kwCXLyo=
+ - Z4TR2BW+ogM=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_2'
headers:
Accept:
- application/xml
@@ -4166,7 +4166,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4174,15 +4174,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:43 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_2
response:
body:
string: ''
@@ -4190,26 +4190,26 @@ interactions:
content-length:
- '0'
content-md5:
- - 79ktHc0B+4TZRvzdykdvag==
+ - nDStXHMBLPv/O2h/RLbD6A==
date:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:43 GMT
etag:
- - '"0x8DB37366B3DAB06"'
+ - '"0x8DF1ABBCEE310FE"'
last-modified:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - g2FpWytj/mI=
+ - 6DKQQGZbwMo=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_8'
headers:
Accept:
- application/xml
@@ -4220,7 +4220,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4228,15 +4228,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_8
response:
body:
string: ''
@@ -4244,26 +4244,26 @@ interactions:
content-length:
- '0'
content-md5:
- - scoxteYlc4sTBQkI5rM7EQ==
+ - mj8k8r6pCtJZR8Nj7lkl6A==
date:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
etag:
- - '"0x8DB37366B688557"'
+ - '"0x8DF1ABBCF50DC1C"'
last-modified:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - +uhca+OTkB0=
+ - b97vSEJWAZI=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_1'
headers:
Accept:
- application/xml
@@ -4274,7 +4274,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4282,15 +4282,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:45 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_1
response:
body:
string: ''
@@ -4298,26 +4298,26 @@ interactions:
content-length:
- '0'
content-md5:
- - fglj3qkdAgaS6MagbePCLw==
+ - dj3F23RzEHrJzs7mzMKV0g==
date:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
etag:
- - '"0x8DB37366B9004D1"'
+ - '"0x8DF1ABBCFBF753F"'
last-modified:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:45 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - cXMCO7uCI5w=
+ - Y6nOED5Kc0s=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_9'
headers:
Accept:
- application/xml
@@ -4328,7 +4328,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4336,15 +4336,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:45 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_9
response:
body:
string: ''
@@ -4352,26 +4352,26 @@ interactions:
content-length:
- '0'
content-md5:
- - EQx7EF/Klad8D8mck/xJGg==
+ - 9I2cZX/zTUEtV/uG3oxE1w==
date:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:45 GMT
etag:
- - '"0x8DB37366BB73626"'
+ - '"0x8DF1ABBD046A32E"'
last-modified:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:46 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - CPo3C3NyTeM=
+ - FlfaeIqmb+0=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_7'
headers:
Accept:
- application/xml
@@ -4382,7 +4382,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4390,15 +4390,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:46 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_7
response:
body:
string: ''
@@ -4406,26 +4406,26 @@ interactions:
content-length:
- '0'
content-md5:
- - W/u7/qhbGv+A1p4ZEO2+7g==
+ - BrTxeg3sPkTryWUZLWuuYg==
date:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
etag:
- - '"0x8DB37366BE12646"'
+ - '"0x8DF1ABBD0AEDADF"'
last-modified:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - eSk8q+xqgA0=
+ - Hg3k6N1OzHw=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
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'
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_5'
headers:
Accept:
- application/xml
@@ -4436,7 +4436,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '139'
+ - '101'
Content-Type:
- application/octet-stream
If-None-Match:
@@ -4444,15 +4444,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-blob-type:
- BlockBlob
x-ms-date:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: PUT
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_5
response:
body:
string: ''
@@ -4460,21 +4460,21 @@ interactions:
content-length:
- '0'
content-md5:
- - poWmh3LYSDJDFOfuhMPiuQ==
+ - 6Ph7bzmgHxMwxh9FZasHbw==
date:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
etag:
- - '"0x8DB37366C0AC846"'
+ - '"0x8DF1ABBD11A1336"'
last-modified:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-content-crc64:
- - AKAJmySa7nI=
+ - 7B+PiE2vEYI=
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 201
message: Created
@@ -4492,232 +4492,232 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:09 GMT
+ - Fri, 25 Sep 2026 04:16:48 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000
+ uri: https://clitestbatchoauth3274.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==BlockBlobunlockedavailabletrue5000apple/file_0Fri,
+ 25 Sep 2026 04:16:42 GMTFri, 25 Sep 2026 04:16:42
+ GMT0x8DF1ABBCD9FAF89101application/octet-streamOKj1U7w39iXIk3iBQLEkAQ==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 04:16:45 GMTFri, 25 Sep 2026 04:16:45
+ GMT0x8DF1ABBCFBF753F101application/octet-streamdj3F23RzEHrJzs7mzMKV0g==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 04:16:44 GMTFri, 25 Sep 2026 04:16:44
+ GMT0x8DF1ABBCEE310FE101application/octet-streamnDStXHMBLPv/O2h/RLbD6A==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 04:16:41 GMTFri, 25 Sep 2026 04:16:41
+ GMT0x8DF1ABBCD1A4C9D101application/octet-streamPzMzvMuYU2x+31kJ/k16iQ==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 04:16:42 GMTFri, 25 Sep 2026 04:16:42
+ GMT0x8DF1ABBCE0B8CA7101application/octet-streamfXZ9rtbIXvMMtaUC6NXWTA==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 04:16:47 GMTFri, 25 Sep 2026 04:16:47
+ GMT0x8DF1ABBD11A1336101application/octet-stream6Ph7bzmgHxMwxh9FZasHbw==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 04:16:43 GMTFri, 25 Sep 2026 04:16:43
+ GMT0x8DF1ABBCE75D5D6101application/octet-streamt3UBWWy9iPWJ+FL98KgfuA==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 04:16:47 GMTFri, 25 Sep 2026 04:16:47
+ GMT0x8DF1ABBD0AEDADF101application/octet-streamBrTxeg3sPkTryWUZLWuuYg==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 04:16:44 GMTFri, 25 Sep 2026 04:16:44
+ GMT0x8DF1ABBCF50DC1C101application/octet-streammj8k8r6pCtJZR8Nj7lkl6A==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 04:16:46 GMTFri, 25 Sep 2026 04:16:46
+ GMT0x8DF1ABBD046A32E101application/octet-stream9I2cZX/zTUEtV/uG3oxE1w==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB373668F5E476142application/octet-streamfZMVhdV5fOxZbt8orseV3g==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:34
+ GMT0x8DF1ABBC931B847110application/octet-streamCmhVseVR7/FF9yC/RjtggQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB3736691EEA50142application/octet-stream8ThrNa2+zPucucYPb4XHGg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:38
+ GMT0x8DF1ABBCB6C0696110application/octet-streambAq7GzbpoSgBCni2DVhKDg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB3736694690E2142application/octet-streamqvzt6SUD19rux8aG82K8Iw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:36
+ GMT0x8DF1ABBCA8E5886110application/octet-streamKKWxKKih6pOiPtyAG/DWuA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB373669719235142application/octet-streamnWhId82KTCHmCq6phTThKw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:33
+ GMT0x8DF1ABBC8C58D6B110application/octet-streamaQaqRIfjTAF5EI3eb+x4vA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB3736699B8249142application/octet-streamk4SIuao1cJfPOF/PcPW99A==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:35
+ GMT0x8DF1ABBC9A1AF70110application/octet-streamUbBk9XVrgSv2hLzudJ177g==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB373669C4FD42142application/octet-streamYhbp9va6Uev2WouIl11hlg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:40
+ GMT0x8DF1ABBCCB0390D110application/octet-streamRtlpSTg9/OHsP8CuFbfN3A==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB373669F6DB7A142application/octet-streamGs8TYkBKpozmOjByEh/AKg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:36
+ GMT0x8DF1ABBCA0CCA22110application/octet-streamEQ6ADSH3e0vnVyghQLUzqw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A1E33EF142application/octet-stream8jkucYOrdcWBcfURRkGSUA==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:39
+ GMT0x8DF1ABBCC433322110application/octet-streamNZN7MNHb4HIfPqXVT+GT/g==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A456541142application/octet-stream9HGalJE7qK5YCA4//j3Bgw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:37
+ GMT0x8DF1ABBCAFF5FF0110application/octet-streamh9cVfLx2OJ+suG4rlhK4wQ==BlockBlobHottrueunlockedavailabletruebutter/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==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:39
+ GMT0x8DF1ABBCBD54E5B110application/octet-streamEACxfbXDucSCmLW6M6cjkA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 04:16:27 GMTFri, 25 Sep 2026 04:16:27
+ GMT0x8DF1ABBC4D61DEA102application/octet-streamv9W3trN10sUh/rF1Pi2egA==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC6F5F397102application/octet-streamiBSwcfPVNfIO2nSGU1AewA==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 04:16:29 GMTFri, 25 Sep 2026 04:16:29
+ GMT0x8DF1ABBC61AC8FF102application/octet-stream+rvCWCiqrAsyAf7dQLmV2A==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 04:16:26 GMTFri, 25 Sep 2026 04:16:26
+ GMT0x8DF1ABBC4556E18102application/octet-streameQVxu5dUaNm3zpXSsvj23A==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC5434647102application/octet-streamQW7WlPjVLBgT5jpCUGnWJw==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 04:16:33 GMTFri, 25 Sep 2026 04:16:33
+ GMT0x8DF1ABBC857E734102application/octet-streamLwv+X8POTC1e5IbZN76hAw==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC5B0F612102application/octet-streamQx/O0LNFoP4nVaobZ8pHfg==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 04:16:32 GMTFri, 25 Sep 2026 04:16:32
+ GMT0x8DF1ABBC7ECD5FC102application/octet-streamcKO6H9WcP6cjkA0IPH86Vw==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC687A83E102application/octet-streamV2xS27DGCE/5t0E06C8b0w==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC781E23B102application/octet-streamnX3ccwo8xXyHodIJYyZeqw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A93C80A139application/octet-stream5WD9QHC0TurCYnf3R96ZCQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:18
+ GMT0x8DF1ABBBFABF177107application/octet-stream/Qf9RU8ORraIPmujNZdu6g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366AC16113139application/octet-streamTe1phRB/aiuccBo52yK31A==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC243D315107application/octet-streamdbBzw2zLiDW+PPXIZsdnSw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366AEA66FC139application/octet-streamecy/i+dABRdGCLNdsEgdAA==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:21
+ GMT0x8DF1ABBC13C0C77107application/octet-streamvKU3oj3URhMlA4pGm8Gh/w==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366B1345C7139application/octet-streamLdJoInsnLvvToyEjVnDfxQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:17
+ GMT0x8DF1ABBBF2BA6D6107application/octet-streamlTbNN1Xc8kq6svqVrdaaXg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B3DAB06139application/octet-stream79ktHc0B+4TZRvzdykdvag==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBC032B275107application/octet-streamOKPAFkgxHyj+oLQjw88H5g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B688557139application/octet-streamscoxteYlc4sTBQkI5rM7EQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3CF566D107application/octet-streamAnyKnTXFO8E8ybKO5hqnpA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B9004D1139application/octet-streamfglj3qkdAgaS6MagbePCLw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:20
+ GMT0x8DF1ABBC0B75934107application/octet-streamyaBBpJXf1GJWJkrdYcn5ew==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366BB73626139application/octet-streamEQx7EF/Klad8D8mck/xJGg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:24
+ GMT0x8DF1ABBC34936D3107application/octet-streamwGT+KnqT8BlMwLypL6sJHA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
- 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08
- GMT0x8DB37366BE12646139application/octet-streamW/u7/qhbGv+A1p4ZEO2+7g==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:22
+ GMT0x8DF1ABBC1BEB362107application/octet-streamnMwlS54VJlYl2Mih7IlA3Q==BlockBlobHottrueunlockedavailabletrueduff/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-streamFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC2C82427107application/octet-streamwJ6JILpkZQKxgFqh3PKvEA==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 04:16:17 GMTFri, 25 Sep 2026 04:16:17 GMT0x8DF1ABBBEAB474887application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -4735,232 +4735,232 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:10 GMT
+ - Fri, 25 Sep 2026 04:16:49 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list
+ uri: https://clitestbatchoauth3274.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==BlockBlobunlockedavailabletrueapple/file_0Fri,
+ 25 Sep 2026 04:16:42 GMTFri, 25 Sep 2026 04:16:42
+ GMT0x8DF1ABBCD9FAF89101application/octet-streamOKj1U7w39iXIk3iBQLEkAQ==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 04:16:45 GMTFri, 25 Sep 2026 04:16:45
+ GMT0x8DF1ABBCFBF753F101application/octet-streamdj3F23RzEHrJzs7mzMKV0g==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 04:16:44 GMTFri, 25 Sep 2026 04:16:44
+ GMT0x8DF1ABBCEE310FE101application/octet-streamnDStXHMBLPv/O2h/RLbD6A==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 04:16:41 GMTFri, 25 Sep 2026 04:16:41
+ GMT0x8DF1ABBCD1A4C9D101application/octet-streamPzMzvMuYU2x+31kJ/k16iQ==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 04:16:42 GMTFri, 25 Sep 2026 04:16:42
+ GMT0x8DF1ABBCE0B8CA7101application/octet-streamfXZ9rtbIXvMMtaUC6NXWTA==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 04:16:47 GMTFri, 25 Sep 2026 04:16:47
+ GMT0x8DF1ABBD11A1336101application/octet-stream6Ph7bzmgHxMwxh9FZasHbw==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 04:16:43 GMTFri, 25 Sep 2026 04:16:43
+ GMT0x8DF1ABBCE75D5D6101application/octet-streamt3UBWWy9iPWJ+FL98KgfuA==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 04:16:47 GMTFri, 25 Sep 2026 04:16:47
+ GMT0x8DF1ABBD0AEDADF101application/octet-streamBrTxeg3sPkTryWUZLWuuYg==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 04:16:44 GMTFri, 25 Sep 2026 04:16:44
+ GMT0x8DF1ABBCF50DC1C101application/octet-streammj8k8r6pCtJZR8Nj7lkl6A==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 04:16:46 GMTFri, 25 Sep 2026 04:16:46
+ GMT0x8DF1ABBD046A32E101application/octet-stream9I2cZX/zTUEtV/uG3oxE1w==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB373668F5E476142application/octet-streamfZMVhdV5fOxZbt8orseV3g==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:34
+ GMT0x8DF1ABBC931B847110application/octet-streamCmhVseVR7/FF9yC/RjtggQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB3736691EEA50142application/octet-stream8ThrNa2+zPucucYPb4XHGg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:38
+ GMT0x8DF1ABBCB6C0696110application/octet-streambAq7GzbpoSgBCni2DVhKDg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB3736694690E2142application/octet-streamqvzt6SUD19rux8aG82K8Iw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:36
+ GMT0x8DF1ABBCA8E5886110application/octet-streamKKWxKKih6pOiPtyAG/DWuA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB373669719235142application/octet-streamnWhId82KTCHmCq6phTThKw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:33
+ GMT0x8DF1ABBC8C58D6B110application/octet-streamaQaqRIfjTAF5EI3eb+x4vA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB3736699B8249142application/octet-streamk4SIuao1cJfPOF/PcPW99A==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:35
+ GMT0x8DF1ABBC9A1AF70110application/octet-streamUbBk9XVrgSv2hLzudJ177g==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB373669C4FD42142application/octet-streamYhbp9va6Uev2WouIl11hlg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:40
+ GMT0x8DF1ABBCCB0390D110application/octet-streamRtlpSTg9/OHsP8CuFbfN3A==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB373669F6DB7A142application/octet-streamGs8TYkBKpozmOjByEh/AKg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:36
+ GMT0x8DF1ABBCA0CCA22110application/octet-streamEQ6ADSH3e0vnVyghQLUzqw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A1E33EF142application/octet-stream8jkucYOrdcWBcfURRkGSUA==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:39
+ GMT0x8DF1ABBCC433322110application/octet-streamNZN7MNHb4HIfPqXVT+GT/g==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A456541142application/octet-stream9HGalJE7qK5YCA4//j3Bgw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:37
+ GMT0x8DF1ABBCAFF5FF0110application/octet-streamh9cVfLx2OJ+suG4rlhK4wQ==BlockBlobHottrueunlockedavailabletruebutter/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==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:39
+ GMT0x8DF1ABBCBD54E5B110application/octet-streamEACxfbXDucSCmLW6M6cjkA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 04:16:27 GMTFri, 25 Sep 2026 04:16:27
+ GMT0x8DF1ABBC4D61DEA102application/octet-streamv9W3trN10sUh/rF1Pi2egA==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC6F5F397102application/octet-streamiBSwcfPVNfIO2nSGU1AewA==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 04:16:29 GMTFri, 25 Sep 2026 04:16:29
+ GMT0x8DF1ABBC61AC8FF102application/octet-stream+rvCWCiqrAsyAf7dQLmV2A==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 04:16:26 GMTFri, 25 Sep 2026 04:16:26
+ GMT0x8DF1ABBC4556E18102application/octet-streameQVxu5dUaNm3zpXSsvj23A==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC5434647102application/octet-streamQW7WlPjVLBgT5jpCUGnWJw==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 04:16:33 GMTFri, 25 Sep 2026 04:16:33
+ GMT0x8DF1ABBC857E734102application/octet-streamLwv+X8POTC1e5IbZN76hAw==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC5B0F612102application/octet-streamQx/O0LNFoP4nVaobZ8pHfg==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 04:16:32 GMTFri, 25 Sep 2026 04:16:32
+ GMT0x8DF1ABBC7ECD5FC102application/octet-streamcKO6H9WcP6cjkA0IPH86Vw==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC687A83E102application/octet-streamV2xS27DGCE/5t0E06C8b0w==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC781E23B102application/octet-streamnX3ccwo8xXyHodIJYyZeqw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A93C80A139application/octet-stream5WD9QHC0TurCYnf3R96ZCQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:18
+ GMT0x8DF1ABBBFABF177107application/octet-stream/Qf9RU8ORraIPmujNZdu6g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366AC16113139application/octet-streamTe1phRB/aiuccBo52yK31A==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC243D315107application/octet-streamdbBzw2zLiDW+PPXIZsdnSw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366AEA66FC139application/octet-streamecy/i+dABRdGCLNdsEgdAA==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:21
+ GMT0x8DF1ABBC13C0C77107application/octet-streamvKU3oj3URhMlA4pGm8Gh/w==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366B1345C7139application/octet-streamLdJoInsnLvvToyEjVnDfxQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:17
+ GMT0x8DF1ABBBF2BA6D6107application/octet-streamlTbNN1Xc8kq6svqVrdaaXg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B3DAB06139application/octet-stream79ktHc0B+4TZRvzdykdvag==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBC032B275107application/octet-streamOKPAFkgxHyj+oLQjw88H5g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B688557139application/octet-streamscoxteYlc4sTBQkI5rM7EQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3CF566D107application/octet-streamAnyKnTXFO8E8ybKO5hqnpA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B9004D1139application/octet-streamfglj3qkdAgaS6MagbePCLw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:20
+ GMT0x8DF1ABBC0B75934107application/octet-streamyaBBpJXf1GJWJkrdYcn5ew==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366BB73626139application/octet-streamEQx7EF/Klad8D8mck/xJGg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:24
+ GMT0x8DF1ABBC34936D3107application/octet-streamwGT+KnqT8BlMwLypL6sJHA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
- 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08
- GMT0x8DB37366BE12646139application/octet-streamW/u7/qhbGv+A1p4ZEO2+7g==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:22
+ GMT0x8DF1ABBC1BEB362107application/octet-streamnMwlS54VJlYl2Mih7IlA3Q==BlockBlobHottrueunlockedavailabletrueduff/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-streamFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC2C82427107application/octet-streamwJ6JILpkZQKxgFqh3PKvEA==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 04:16:17 GMTFri, 25 Sep 2026 04:16:17 GMT0x8DF1ABBBEAB474887application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:05:11 GMT
+ - Fri, 25 Sep 2026 04:16:49 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -4978,41 +4978,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:12 GMT
+ - Fri, 25 Sep 2026 04:16:50 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_0
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:11 GMT
+ - Fri, 25 Sep 2026 04:16:50 GMT
etag:
- - '"0x8DB373665B53C07"'
+ - '"0x8DF1ABBCD9FAF89"'
last-modified:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - akPRzODVxn8zK/AP2n7KAA==
+ - OKj1U7w39iXIk3iBQLEkAQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5020,7 +5024,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5038,41 +5042,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:12 GMT
+ - Fri, 25 Sep 2026 04:16:51 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_1
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:12 GMT
+ - Fri, 25 Sep 2026 04:16:51 GMT
etag:
- - '"0x8DB373665DEDE1A"'
+ - '"0x8DF1ABBCFBF753F"'
last-modified:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:45 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Csfcfd1TNZvDJcvpJy2xRQ==
+ - dj3F23RzEHrJzs7mzMKV0g==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:45 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5080,7 +5088,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5098,41 +5106,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:12 GMT
+ - Fri, 25 Sep 2026 04:16:52 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_2
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:12 GMT
+ - Fri, 25 Sep 2026 04:16:52 GMT
etag:
- - '"0x8DB37366608320C"'
+ - '"0x8DF1ABBCEE310FE"'
last-modified:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - A+BU3W0B5bteIX31/CggRQ==
+ - nDStXHMBLPv/O2h/RLbD6A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5140,7 +5152,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5158,41 +5170,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:13 GMT
+ - Fri, 25 Sep 2026 04:16:52 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_3
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:13 GMT
+ - Fri, 25 Sep 2026 04:16:52 GMT
etag:
- - '"0x8DB3736663185EF"'
+ - '"0x8DF1ABBCD1A4C9D"'
last-modified:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:41 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - uoUeM98MxWZVVEIv1pU/HA==
+ - PzMzvMuYU2x+31kJ/k16iQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:41 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5200,7 +5216,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5218,41 +5234,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:14 GMT
+ - Fri, 25 Sep 2026 04:16:53 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_4
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:13 GMT
+ - Fri, 25 Sep 2026 04:16:52 GMT
etag:
- - '"0x8DB3736665B00EB"'
+ - '"0x8DF1ABBCE0B8CA7"'
last-modified:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - n1SxWnxluWC26LCLSByJvA==
+ - fXZ9rtbIXvMMtaUC6NXWTA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:58 GMT
+ - Fri, 25 Sep 2026 04:16:42 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5260,7 +5280,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5278,41 +5298,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:14 GMT
+ - Fri, 25 Sep 2026 04:16:54 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_5
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:13 GMT
+ - Fri, 25 Sep 2026 04:16:53 GMT
etag:
- - '"0x8DB373666851814"'
+ - '"0x8DF1ABBD11A1336"'
last-modified:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - YwbWkn8USTTB1Dblm1B9BQ==
+ - 6Ph7bzmgHxMwxh9FZasHbw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5320,7 +5344,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5338,41 +5362,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:14 GMT
+ - Fri, 25 Sep 2026 04:16:55 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_6
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:14 GMT
+ - Fri, 25 Sep 2026 04:16:54 GMT
etag:
- - '"0x8DB373666AFF273"'
+ - '"0x8DF1ABBCE75D5D6"'
last-modified:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:43 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - UCeOAi2H9/UMR1c92CFfSQ==
+ - t3UBWWy9iPWJ+FL98KgfuA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:43 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5380,7 +5408,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5398,41 +5426,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:14 GMT
+ - Fri, 25 Sep 2026 04:16:55 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_7
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:14 GMT
+ - Fri, 25 Sep 2026 04:16:55 GMT
etag:
- - '"0x8DB373666D9BB88"'
+ - '"0x8DF1ABBD0AEDADF"'
last-modified:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - r0sxRWSreg/ugh3gj7AhfQ==
+ - BrTxeg3sPkTryWUZLWuuYg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:47 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5440,7 +5472,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5458,41 +5490,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:15 GMT
+ - Fri, 25 Sep 2026 04:16:56 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_8
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:14 GMT
+ - Fri, 25 Sep 2026 04:16:55 GMT
etag:
- - '"0x8DB37366702E867"'
+ - '"0x8DF1ABBCF50DC1C"'
last-modified:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - AdC1c2QCT3A2pqWSsisLnw==
+ - mj8k8r6pCtJZR8Nj7lkl6A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:59 GMT
+ - Fri, 25 Sep 2026 04:16:44 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5500,7 +5536,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5518,41 +5554,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:15 GMT
+ - Fri, 25 Sep 2026 04:16:57 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_9
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/apple/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '133'
+ - '101'
content-range:
- - bytes 0-132/133
+ - bytes 0-100/101
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:15 GMT
+ - Fri, 25 Sep 2026 04:16:57 GMT
etag:
- - '"0x8DB3736672D74B1"'
+ - '"0x8DF1ABBD046A32E"'
last-modified:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:46 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - y4RIihyMRalyFFTpXqdWDA==
+ - 9I2cZX/zTUEtV/uG3oxE1w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:46 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5560,7 +5600,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5578,41 +5618,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:15 GMT
+ - Fri, 25 Sep 2026 04:16:58 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_0
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:15 GMT
+ - Fri, 25 Sep 2026 04:16:57 GMT
etag:
- - '"0x8DB373668F5E476"'
+ - '"0x8DF1ABBC931B847"'
last-modified:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:34 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - fZMVhdV5fOxZbt8orseV3g==
+ - CmhVseVR7/FF9yC/RjtggQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:34 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5620,7 +5664,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5638,41 +5682,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:16 GMT
+ - Fri, 25 Sep 2026 04:16:58 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_1
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:15 GMT
+ - Fri, 25 Sep 2026 04:16:58 GMT
etag:
- - '"0x8DB3736691EEA50"'
+ - '"0x8DF1ABBCB6C0696"'
last-modified:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:38 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 8ThrNa2+zPucucYPb4XHGg==
+ - bAq7GzbpoSgBCni2DVhKDg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:38 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5680,7 +5728,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5698,41 +5746,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:16 GMT
+ - Fri, 25 Sep 2026 04:16:59 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_2
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:15 GMT
+ - Fri, 25 Sep 2026 04:16:58 GMT
etag:
- - '"0x8DB3736694690E2"'
+ - '"0x8DF1ABBCA8E5886"'
last-modified:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - qvzt6SUD19rux8aG82K8Iw==
+ - KKWxKKih6pOiPtyAG/DWuA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5740,7 +5792,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5758,41 +5810,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:16 GMT
+ - Fri, 25 Sep 2026 04:17:00 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_3
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:16 GMT
+ - Fri, 25 Sep 2026 04:16:59 GMT
etag:
- - '"0x8DB373669719235"'
+ - '"0x8DF1ABBC8C58D6B"'
last-modified:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - nWhId82KTCHmCq6phTThKw==
+ - aQaqRIfjTAF5EI3eb+x4vA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:03 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5800,7 +5856,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5818,41 +5874,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:16 GMT
+ - Fri, 25 Sep 2026 04:17:01 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_4
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:16 GMT
+ - Fri, 25 Sep 2026 04:17:00 GMT
etag:
- - '"0x8DB3736699B8249"'
+ - '"0x8DF1ABBC9A1AF70"'
last-modified:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:35 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - k4SIuao1cJfPOF/PcPW99A==
+ - UbBk9XVrgSv2hLzudJ177g==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:35 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5860,7 +5920,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5878,41 +5938,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:17 GMT
+ - Fri, 25 Sep 2026 04:17:01 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_5
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:16 GMT
+ - Fri, 25 Sep 2026 04:17:01 GMT
etag:
- - '"0x8DB373669C4FD42"'
+ - '"0x8DF1ABBCCB0390D"'
last-modified:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:40 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Yhbp9va6Uev2WouIl11hlg==
+ - RtlpSTg9/OHsP8CuFbfN3A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:40 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5920,7 +5984,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5938,41 +6002,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:17 GMT
+ - Fri, 25 Sep 2026 04:17:02 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_6
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:16 GMT
+ - Fri, 25 Sep 2026 04:17:02 GMT
etag:
- - '"0x8DB373669F6DB7A"'
+ - '"0x8DF1ABBCA0CCA22"'
last-modified:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Gs8TYkBKpozmOjByEh/AKg==
+ - EQ6ADSH3e0vnVyghQLUzqw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:04 GMT
+ - Fri, 25 Sep 2026 04:16:36 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -5980,7 +6048,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -5998,41 +6066,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:17 GMT
+ - Fri, 25 Sep 2026 04:17:03 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_7
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:17 GMT
+ - Fri, 25 Sep 2026 04:17:02 GMT
etag:
- - '"0x8DB37366A1E33EF"'
+ - '"0x8DF1ABBCC433322"'
last-modified:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:39 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 8jkucYOrdcWBcfURRkGSUA==
+ - NZN7MNHb4HIfPqXVT+GT/g==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:39 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6040,7 +6112,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6058,41 +6130,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:17 GMT
+ - Fri, 25 Sep 2026 04:17:04 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_8
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:17 GMT
+ - Fri, 25 Sep 2026 04:17:03 GMT
etag:
- - '"0x8DB37366A456541"'
+ - '"0x8DF1ABBCAFF5FF0"'
last-modified:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:37 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 9HGalJE7qK5YCA4//j3Bgw==
+ - h9cVfLx2OJ+suG4rlhK4wQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:37 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6100,7 +6176,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6118,41 +6194,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:18 GMT
+ - Fri, 25 Sep 2026 04:17:04 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_9
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/charlie/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '142'
+ - '110'
content-range:
- - bytes 0-141/142
+ - bytes 0-109/110
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:17 GMT
+ - Fri, 25 Sep 2026 04:17:04 GMT
etag:
- - '"0x8DB37366A6C96A7"'
+ - '"0x8DF1ABBCBD54E5B"'
last-modified:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:39 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - oNt8UttwLAi+00Q97PjCkw==
+ - EACxfbXDucSCmLW6M6cjkA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:39 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6160,7 +6240,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6178,41 +6258,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:18 GMT
+ - Fri, 25 Sep 2026 04:17:05 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_0
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:18 GMT
+ - Fri, 25 Sep 2026 04:17:04 GMT
etag:
- - '"0x8DB37366756EFBB"'
+ - '"0x8DF1ABBC4D61DEA"'
last-modified:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - grlrMehYaxqDPLYpLl1NMQ==
+ - v9W3trN10sUh/rF1Pi2egA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:27 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6220,7 +6304,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6238,41 +6322,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:18 GMT
+ - Fri, 25 Sep 2026 04:17:06 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_1
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:18 GMT
+ - Fri, 25 Sep 2026 04:17:05 GMT
etag:
- - '"0x8DB37366780DFC4"'
+ - '"0x8DF1ABBC6F5F397"'
last-modified:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - S9i8DZm+5kwBUnOBvt0Qeg==
+ - iBSwcfPVNfIO2nSGU1AewA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:00 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6280,7 +6368,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6298,41 +6386,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:18 GMT
+ - Fri, 25 Sep 2026 04:17:07 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_2
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:18 GMT
+ - Fri, 25 Sep 2026 04:17:05 GMT
etag:
- - '"0x8DB373667AA81B9"'
+ - '"0x8DF1ABBC61AC8FF"'
last-modified:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - fmkdpLs3wZOgK7DPqHyxFA==
+ - +rvCWCiqrAsyAf7dQLmV2A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:29 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6340,7 +6432,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6358,41 +6450,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:19 GMT
+ - Fri, 25 Sep 2026 04:17:07 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_3
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:18 GMT
+ - Fri, 25 Sep 2026 04:17:07 GMT
etag:
- - '"0x8DB373667D2EB76"'
+ - '"0x8DF1ABBC4556E18"'
last-modified:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:26 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - m0Zg69Hi/Myv0+fYpjgJ7g==
+ - eQVxu5dUaNm3zpXSsvj23A==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:26 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6400,7 +6496,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6418,41 +6514,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:19 GMT
+ - Fri, 25 Sep 2026 04:17:08 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_4
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:19 GMT
+ - Fri, 25 Sep 2026 04:17:07 GMT
etag:
- - '"0x8DB373667FD0294"'
+ - '"0x8DF1ABBC5434647"'
last-modified:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Hep5bDlvMOYer6o5kcmGjw==
+ - QW7WlPjVLBgT5jpCUGnWJw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:28 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6460,7 +6560,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6478,41 +6578,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:19 GMT
+ - Fri, 25 Sep 2026 04:17:09 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_5
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:19 GMT
+ - Fri, 25 Sep 2026 04:17:08 GMT
etag:
- - '"0x8DB37366824A910"'
+ - '"0x8DF1ABBC857E734"'
last-modified:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - zD2CJl5JNDCamugq5+kcaA==
+ - Lwv+X8POTC1e5IbZN76hAw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:01 GMT
+ - Fri, 25 Sep 2026 04:16:33 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6520,7 +6624,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6538,41 +6642,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:20 GMT
+ - Fri, 25 Sep 2026 04:17:10 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_6
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:19 GMT
+ - Fri, 25 Sep 2026 04:17:09 GMT
etag:
- - '"0x8DB3736684D60DA"'
+ - '"0x8DF1ABBC5B0F612"'
last-modified:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - bWzn5VgDECWF1CDvFLe3Yg==
+ - Qx/O0LNFoP4nVaobZ8pHfg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:28 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6580,7 +6688,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6598,41 +6706,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:20 GMT
+ - Fri, 25 Sep 2026 04:17:10 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_7
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:19 GMT
+ - Fri, 25 Sep 2026 04:17:09 GMT
etag:
- - '"0x8DB3736687DB8A7"'
+ - '"0x8DF1ABBC7ECD5FC"'
last-modified:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 4W3BRGlJn+5Fn7z+QQUhBg==
+ - cKO6H9WcP6cjkA0IPH86Vw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:32 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6640,7 +6752,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6658,41 +6770,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:20 GMT
+ - Fri, 25 Sep 2026 04:17:11 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_8
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:20 GMT
+ - Fri, 25 Sep 2026 04:17:10 GMT
etag:
- - '"0x8DB373668A5AD40"'
+ - '"0x8DF1ABBC687A83E"'
last-modified:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - FTtakfWtMuz8EygCN4GFaQ==
+ - V2xS27DGCE/5t0E06C8b0w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:30 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6700,7 +6816,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6718,41 +6834,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:20 GMT
+ - Fri, 25 Sep 2026 04:17:12 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_9
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/butter/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '134'
+ - '102'
content-range:
- - bytes 0-133/134
+ - bytes 0-101/102
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:20 GMT
+ - Fri, 25 Sep 2026 04:17:11 GMT
etag:
- - '"0x8DB373668CC9085"'
+ - '"0x8DF1ABBC781E23B"'
last-modified:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:31 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - RuwyYWEdqj9v/DZ4NapZnA==
+ - nX3ccwo8xXyHodIJYyZeqw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:02 GMT
+ - Fri, 25 Sep 2026 04:16:31 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6760,7 +6880,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6778,41 +6898,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:21 GMT
+ - Fri, 25 Sep 2026 04:17:13 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_0
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_0'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:20 GMT
+ - Fri, 25 Sep 2026 04:17:11 GMT
etag:
- - '"0x8DB37366A93C80A"'
+ - '"0x8DF1ABBBFABF177"'
last-modified:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:18 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 5WD9QHC0TurCYnf3R96ZCQ==
+ - /Qf9RU8ORraIPmujNZdu6g==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:05 GMT
+ - Fri, 25 Sep 2026 04:16:18 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6820,7 +6944,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6838,41 +6962,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:21 GMT
+ - Fri, 25 Sep 2026 04:17:12 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_1
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_1'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:21 GMT
+ - Fri, 25 Sep 2026 04:17:13 GMT
etag:
- - '"0x8DB37366AC16113"'
+ - '"0x8DF1ABBC243D315"'
last-modified:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - Te1phRB/aiuccBo52yK31A==
+ - dbBzw2zLiDW+PPXIZsdnSw==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:23 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6880,7 +7008,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6898,41 +7026,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:21 GMT
+ - Fri, 25 Sep 2026 04:17:13 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_2
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_2'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:21 GMT
+ - Fri, 25 Sep 2026 04:17:13 GMT
etag:
- - '"0x8DB37366AEA66FC"'
+ - '"0x8DF1ABBC13C0C77"'
last-modified:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - ecy/i+dABRdGCLNdsEgdAA==
+ - vKU3oj3URhMlA4pGm8Gh/w==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:21 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -6940,7 +7072,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -6958,41 +7090,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:21 GMT
+ - Fri, 25 Sep 2026 04:17:14 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_3
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_3'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:21 GMT
+ - Fri, 25 Sep 2026 04:17:14 GMT
etag:
- - '"0x8DB37366B1345C7"'
+ - '"0x8DF1ABBBF2BA6D6"'
last-modified:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - LdJoInsnLvvToyEjVnDfxQ==
+ - lTbNN1Xc8kq6svqVrdaaXg==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:06 GMT
+ - Fri, 25 Sep 2026 04:16:17 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7000,7 +7136,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7018,41 +7154,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:22 GMT
+ - Fri, 25 Sep 2026 04:17:15 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_4
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_4'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:21 GMT
+ - Fri, 25 Sep 2026 04:17:14 GMT
etag:
- - '"0x8DB37366B3DAB06"'
+ - '"0x8DF1ABBC032B275"'
last-modified:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:19 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - 79ktHc0B+4TZRvzdykdvag==
+ - OKPAFkgxHyj+oLQjw88H5g==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:19 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7060,7 +7200,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7078,41 +7218,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:22 GMT
+ - Fri, 25 Sep 2026 04:17:15 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_5
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_5'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:22 GMT
+ - Fri, 25 Sep 2026 04:17:16 GMT
etag:
- - '"0x8DB37366B688557"'
+ - '"0x8DF1ABBC3CF566D"'
last-modified:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - scoxteYlc4sTBQkI5rM7EQ==
+ - AnyKnTXFO8E8ybKO5hqnpA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:25 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7120,7 +7264,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7138,41 +7282,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:22 GMT
+ - Fri, 25 Sep 2026 04:17:16 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_6
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_6'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:22 GMT
+ - Fri, 25 Sep 2026 04:17:16 GMT
etag:
- - '"0x8DB37366B9004D1"'
+ - '"0x8DF1ABBC0B75934"'
last-modified:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - fglj3qkdAgaS6MagbePCLw==
+ - yaBBpJXf1GJWJkrdYcn5ew==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:20 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7180,7 +7328,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7198,41 +7346,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:23 GMT
+ - Fri, 25 Sep 2026 04:17:17 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_7
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_7'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:22 GMT
+ - Fri, 25 Sep 2026 04:17:17 GMT
etag:
- - '"0x8DB37366BB73626"'
+ - '"0x8DF1ABBC34936D3"'
last-modified:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - EQx7EF/Klad8D8mck/xJGg==
+ - wGT+KnqT8BlMwLypL6sJHA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:07 GMT
+ - Fri, 25 Sep 2026 04:16:24 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7240,7 +7392,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7258,41 +7410,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:23 GMT
+ - Fri, 25 Sep 2026 04:17:18 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_8
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_8'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:22 GMT
+ - Fri, 25 Sep 2026 04:17:17 GMT
etag:
- - '"0x8DB37366BE12646"'
+ - '"0x8DF1ABBC1BEB362"'
last-modified:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - W/u7/qhbGv+A1p4ZEO2+7g==
+ - nMwlS54VJlYl2Mih7IlA3Q==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:22 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7300,7 +7456,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7318,41 +7474,45 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:23 GMT
+ - Fri, 25 Sep 2026 04:17:18 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_9
+ uri: https://clitestbatchoauth3274.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'
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testywcz7jukh6tajzcq3xit/duff/edward/file_9'
headers:
accept-ranges:
- bytes
content-length:
- - '139'
+ - '107'
content-range:
- - bytes 0-138/139
+ - bytes 0-106/107
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:23 GMT
+ - Fri, 25 Sep 2026 04:17:19 GMT
etag:
- - '"0x8DB37366C0AC846"'
+ - '"0x8DF1ABBC2C82427"'
last-modified:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- - poWmh3LYSDJDFOfuhMPiuQ==
+ - wJ6JILpkZQKxgFqh3PKvEA==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:05:08 GMT
+ - Fri, 25 Sep 2026 04:16:23 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7360,7 +7520,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7378,15 +7538,15 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:23 GMT
+ - Fri, 25 Sep 2026 04:17:19 GMT
x-ms-range:
- bytes=0-33554431
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003/readme
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/readme
response:
body:
string: This directory contains test files generated by Azure CLI storage command
@@ -7401,19 +7561,23 @@ interactions:
content-type:
- application/octet-stream
date:
- - Fri, 07 Apr 2023 07:05:23 GMT
+ - Fri, 25 Sep 2026 04:17:19 GMT
etag:
- - '"0x8DB3736658B9A0B"'
+ - '"0x8DF1ABBBEAB4748"'
last-modified:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:17 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
x-ms-blob-content-md5:
- sYGKK8OX+WLKH+2bAe4tSQ==
x-ms-blob-type:
- BlockBlob
x-ms-creation-time:
- - Fri, 07 Apr 2023 07:04:57 GMT
+ - Fri, 25 Sep 2026 04:16:17 GMT
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -7421,7 +7585,7 @@ interactions:
x-ms-server-encrypted:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 206
message: Partial Content
@@ -7439,232 +7603,232 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:24 GMT
+ - Fri, 25 Sep 2026 04:17:20 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list
+ uri: https://clitestbatchoauth3274.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==BlockBlobunlockedavailabletrueapple/file_0Fri,
+ 25 Sep 2026 04:16:42 GMTFri, 25 Sep 2026 04:16:42
+ GMT0x8DF1ABBCD9FAF89101application/octet-streamOKj1U7w39iXIk3iBQLEkAQ==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 04:16:45 GMTFri, 25 Sep 2026 04:16:45
+ GMT0x8DF1ABBCFBF753F101application/octet-streamdj3F23RzEHrJzs7mzMKV0g==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 04:16:44 GMTFri, 25 Sep 2026 04:16:44
+ GMT0x8DF1ABBCEE310FE101application/octet-streamnDStXHMBLPv/O2h/RLbD6A==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 04:16:41 GMTFri, 25 Sep 2026 04:16:41
+ GMT0x8DF1ABBCD1A4C9D101application/octet-streamPzMzvMuYU2x+31kJ/k16iQ==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 04:16:42 GMTFri, 25 Sep 2026 04:16:42
+ GMT0x8DF1ABBCE0B8CA7101application/octet-streamfXZ9rtbIXvMMtaUC6NXWTA==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 04:16:47 GMTFri, 25 Sep 2026 04:16:47
+ GMT0x8DF1ABBD11A1336101application/octet-stream6Ph7bzmgHxMwxh9FZasHbw==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 04:16:43 GMTFri, 25 Sep 2026 04:16:43
+ GMT0x8DF1ABBCE75D5D6101application/octet-streamt3UBWWy9iPWJ+FL98KgfuA==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 04:16:47 GMTFri, 25 Sep 2026 04:16:47
+ GMT0x8DF1ABBD0AEDADF101application/octet-streamBrTxeg3sPkTryWUZLWuuYg==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 04:16:44 GMTFri, 25 Sep 2026 04:16:44
+ GMT0x8DF1ABBCF50DC1C101application/octet-streammj8k8r6pCtJZR8Nj7lkl6A==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 04:16:46 GMTFri, 25 Sep 2026 04:16:46
+ GMT0x8DF1ABBD046A32E101application/octet-stream9I2cZX/zTUEtV/uG3oxE1w==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB373668F5E476142application/octet-streamfZMVhdV5fOxZbt8orseV3g==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:34
+ GMT0x8DF1ABBC931B847110application/octet-streamCmhVseVR7/FF9yC/RjtggQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB3736691EEA50142application/octet-stream8ThrNa2+zPucucYPb4XHGg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:38
+ GMT0x8DF1ABBCB6C0696110application/octet-streambAq7GzbpoSgBCni2DVhKDg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB3736694690E2142application/octet-streamqvzt6SUD19rux8aG82K8Iw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:36
+ GMT0x8DF1ABBCA8E5886110application/octet-streamKKWxKKih6pOiPtyAG/DWuA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
- 07 Apr 2023 07:05:03 GMTFri, 07 Apr 2023 07:05:03
- GMT0x8DB373669719235142application/octet-streamnWhId82KTCHmCq6phTThKw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:33
+ GMT0x8DF1ABBC8C58D6B110application/octet-streamaQaqRIfjTAF5EI3eb+x4vA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB3736699B8249142application/octet-streamk4SIuao1cJfPOF/PcPW99A==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:35
+ GMT0x8DF1ABBC9A1AF70110application/octet-streamUbBk9XVrgSv2hLzudJ177g==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB373669C4FD42142application/octet-streamYhbp9va6Uev2WouIl11hlg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:40
+ GMT0x8DF1ABBCCB0390D110application/octet-streamRtlpSTg9/OHsP8CuFbfN3A==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
- 07 Apr 2023 07:05:04 GMTFri, 07 Apr 2023 07:05:04
- GMT0x8DB373669F6DB7A142application/octet-streamGs8TYkBKpozmOjByEh/AKg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:36
+ GMT0x8DF1ABBCA0CCA22110application/octet-streamEQ6ADSH3e0vnVyghQLUzqw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A1E33EF142application/octet-stream8jkucYOrdcWBcfURRkGSUA==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:39
+ GMT0x8DF1ABBCC433322110application/octet-streamNZN7MNHb4HIfPqXVT+GT/g==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A456541142application/octet-stream9HGalJE7qK5YCA4//j3Bgw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:37
+ GMT0x8DF1ABBCAFF5FF0110application/octet-streamh9cVfLx2OJ+suG4rlhK4wQ==BlockBlobHottrueunlockedavailabletruebutter/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==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:39
+ GMT0x8DF1ABBCBD54E5B110application/octet-streamEACxfbXDucSCmLW6M6cjkA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 04:16:27 GMTFri, 25 Sep 2026 04:16:27
+ GMT0x8DF1ABBC4D61DEA102application/octet-streamv9W3trN10sUh/rF1Pi2egA==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC6F5F397102application/octet-streamiBSwcfPVNfIO2nSGU1AewA==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 04:16:29 GMTFri, 25 Sep 2026 04:16:29
+ GMT0x8DF1ABBC61AC8FF102application/octet-stream+rvCWCiqrAsyAf7dQLmV2A==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 04:16:26 GMTFri, 25 Sep 2026 04:16:26
+ GMT0x8DF1ABBC4556E18102application/octet-streameQVxu5dUaNm3zpXSsvj23A==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC5434647102application/octet-streamQW7WlPjVLBgT5jpCUGnWJw==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 04:16:33 GMTFri, 25 Sep 2026 04:16:33
+ GMT0x8DF1ABBC857E734102application/octet-streamLwv+X8POTC1e5IbZN76hAw==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC5B0F612102application/octet-streamQx/O0LNFoP4nVaobZ8pHfg==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 04:16:32 GMTFri, 25 Sep 2026 04:16:32
+ GMT0x8DF1ABBC7ECD5FC102application/octet-streamcKO6H9WcP6cjkA0IPH86Vw==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC687A83E102application/octet-streamV2xS27DGCE/5t0E06C8b0w==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC781E23B102application/octet-streamnX3ccwo8xXyHodIJYyZeqw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
- 07 Apr 2023 07:05:05 GMTFri, 07 Apr 2023 07:05:05
- GMT0x8DB37366A93C80A139application/octet-stream5WD9QHC0TurCYnf3R96ZCQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:18
+ GMT0x8DF1ABBBFABF177107application/octet-stream/Qf9RU8ORraIPmujNZdu6g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366AC16113139application/octet-streamTe1phRB/aiuccBo52yK31A==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC243D315107application/octet-streamdbBzw2zLiDW+PPXIZsdnSw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366AEA66FC139application/octet-streamecy/i+dABRdGCLNdsEgdAA==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:21
+ GMT0x8DF1ABBC13C0C77107application/octet-streamvKU3oj3URhMlA4pGm8Gh/w==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
- 07 Apr 2023 07:05:06 GMTFri, 07 Apr 2023 07:05:06
- GMT0x8DB37366B1345C7139application/octet-streamLdJoInsnLvvToyEjVnDfxQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:17
+ GMT0x8DF1ABBBF2BA6D6107application/octet-streamlTbNN1Xc8kq6svqVrdaaXg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B3DAB06139application/octet-stream79ktHc0B+4TZRvzdykdvag==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBC032B275107application/octet-streamOKPAFkgxHyj+oLQjw88H5g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B688557139application/octet-streamscoxteYlc4sTBQkI5rM7EQ==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3CF566D107application/octet-streamAnyKnTXFO8E8ybKO5hqnpA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366B9004D1139application/octet-streamfglj3qkdAgaS6MagbePCLw==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:20
+ GMT0x8DF1ABBC0B75934107application/octet-streamyaBBpJXf1GJWJkrdYcn5ew==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
- 07 Apr 2023 07:05:07 GMTFri, 07 Apr 2023 07:05:07
- GMT0x8DB37366BB73626139application/octet-streamEQx7EF/Klad8D8mck/xJGg==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:24
+ GMT0x8DF1ABBC34936D3107application/octet-streamwGT+KnqT8BlMwLypL6sJHA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
- 07 Apr 2023 07:05:08 GMTFri, 07 Apr 2023 07:05:08
- GMT0x8DB37366BE12646139application/octet-streamW/u7/qhbGv+A1p4ZEO2+7g==BlockBlobunlockedavailabletrueFri, 25 Sep 2026 04:16:22
+ GMT0x8DF1ABBC1BEB362107application/octet-streamnMwlS54VJlYl2Mih7IlA3Q==BlockBlobHottrueunlockedavailabletrueduff/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-streamFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC2C82427107application/octet-streamwJ6JILpkZQKxgFqh3PKvEA==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 04:16:17 GMTFri, 25 Sep 2026 04:16:17 GMT0x8DF1ABBBEAB474887application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobunlockedavailabletrueBlockBlobHottrueunlockedavailabletrue"
headers:
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:05:24 GMT
+ - Fri, 25 Sep 2026 04:17:20 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 200
message: OK
@@ -7684,13 +7848,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:25 GMT
+ - Fri, 25 Sep 2026 04:17:21 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_0
response:
body:
string: ''
@@ -7698,13 +7862,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:25 GMT
+ - Fri, 25 Sep 2026 04:17:21 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -7724,13 +7888,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:26 GMT
+ - Fri, 25 Sep 2026 04:17:22 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_1
response:
body:
string: ''
@@ -7738,13 +7902,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:25 GMT
+ - Fri, 25 Sep 2026 04:17:22 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -7764,13 +7928,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:26 GMT
+ - Fri, 25 Sep 2026 04:17:23 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_2
response:
body:
string: ''
@@ -7778,13 +7942,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:26 GMT
+ - Fri, 25 Sep 2026 04:17:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -7804,13 +7968,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:26 GMT
+ - Fri, 25 Sep 2026 04:17:23 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_3
response:
body:
string: ''
@@ -7818,13 +7982,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:26 GMT
+ - Fri, 25 Sep 2026 04:17:23 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -7844,13 +8008,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:26 GMT
+ - Fri, 25 Sep 2026 04:17:24 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_4
response:
body:
string: ''
@@ -7858,13 +8022,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:26 GMT
+ - Fri, 25 Sep 2026 04:17:24 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -7884,13 +8048,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:27 GMT
+ - Fri, 25 Sep 2026 04:17:25 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_5
response:
body:
string: ''
@@ -7898,13 +8062,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:26 GMT
+ - Fri, 25 Sep 2026 04:17:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -7924,13 +8088,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:27 GMT
+ - Fri, 25 Sep 2026 04:17:26 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_6
response:
body:
string: ''
@@ -7938,13 +8102,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:27 GMT
+ - Fri, 25 Sep 2026 04:17:25 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -7964,13 +8128,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:27 GMT
+ - Fri, 25 Sep 2026 04:17:27 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_7
response:
body:
string: ''
@@ -7978,13 +8142,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:27 GMT
+ - Fri, 25 Sep 2026 04:17:27 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8004,13 +8168,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:28 GMT
+ - Fri, 25 Sep 2026 04:17:28 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_8
response:
body:
string: ''
@@ -8018,13 +8182,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:27 GMT
+ - Fri, 25 Sep 2026 04:17:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8044,13 +8208,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:28 GMT
+ - Fri, 25 Sep 2026 04:17:29 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/apple/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/apple/file_9
response:
body:
string: ''
@@ -8058,13 +8222,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:27 GMT
+ - Fri, 25 Sep 2026 04:17:28 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8084,13 +8248,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:28 GMT
+ - Fri, 25 Sep 2026 04:17:29 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_0
response:
body:
string: ''
@@ -8098,13 +8262,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:28 GMT
+ - Fri, 25 Sep 2026 04:17:29 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8124,13 +8288,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:28 GMT
+ - Fri, 25 Sep 2026 04:17:30 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_1
response:
body:
string: ''
@@ -8138,13 +8302,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:28 GMT
+ - Fri, 25 Sep 2026 04:17:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8164,13 +8328,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:29 GMT
+ - Fri, 25 Sep 2026 04:17:31 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_2
response:
body:
string: ''
@@ -8178,13 +8342,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:28 GMT
+ - Fri, 25 Sep 2026 04:17:30 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8204,13 +8368,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:29 GMT
+ - Fri, 25 Sep 2026 04:17:32 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_3
response:
body:
string: ''
@@ -8218,13 +8382,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:29 GMT
+ - Fri, 25 Sep 2026 04:17:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8244,13 +8408,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:29 GMT
+ - Fri, 25 Sep 2026 04:17:32 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_4
response:
body:
string: ''
@@ -8258,13 +8422,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:29 GMT
+ - Fri, 25 Sep 2026 04:17:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8284,13 +8448,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:29 GMT
+ - Fri, 25 Sep 2026 04:17:33 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_5
response:
body:
string: ''
@@ -8298,13 +8462,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:29 GMT
+ - Fri, 25 Sep 2026 04:17:32 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8324,13 +8488,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:30 GMT
+ - Fri, 25 Sep 2026 04:17:34 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_6
response:
body:
string: ''
@@ -8338,13 +8502,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:29 GMT
+ - Fri, 25 Sep 2026 04:17:33 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8364,13 +8528,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:30 GMT
+ - Fri, 25 Sep 2026 04:17:35 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_7
response:
body:
string: ''
@@ -8378,13 +8542,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:30 GMT
+ - Fri, 25 Sep 2026 04:17:34 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8404,13 +8568,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:30 GMT
+ - Fri, 25 Sep 2026 04:17:36 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_8
response:
body:
string: ''
@@ -8418,13 +8582,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:30 GMT
+ - Fri, 25 Sep 2026 04:17:34 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8444,13 +8608,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:30 GMT
+ - Fri, 25 Sep 2026 04:17:36 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/charlie/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/charlie/file_9
response:
body:
string: ''
@@ -8458,13 +8622,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:30 GMT
+ - Fri, 25 Sep 2026 04:17:36 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8484,13 +8648,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:31 GMT
+ - Fri, 25 Sep 2026 04:17:37 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_0
response:
body:
string: ''
@@ -8498,13 +8662,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:30 GMT
+ - Fri, 25 Sep 2026 04:17:36 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8524,13 +8688,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:31 GMT
+ - Fri, 25 Sep 2026 04:17:38 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_1
response:
body:
string: ''
@@ -8538,13 +8702,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:31 GMT
+ - Fri, 25 Sep 2026 04:17:37 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8564,13 +8728,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:31 GMT
+ - Fri, 25 Sep 2026 04:17:39 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_2
response:
body:
string: ''
@@ -8578,13 +8742,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:31 GMT
+ - Fri, 25 Sep 2026 04:17:38 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8604,13 +8768,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:32 GMT
+ - Fri, 25 Sep 2026 04:17:39 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_3
response:
body:
string: ''
@@ -8618,13 +8782,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:31 GMT
+ - Fri, 25 Sep 2026 04:17:38 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8644,13 +8808,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:32 GMT
+ - Fri, 25 Sep 2026 04:17:40 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_4
response:
body:
string: ''
@@ -8658,13 +8822,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:31 GMT
+ - Fri, 25 Sep 2026 04:17:39 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8684,13 +8848,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:32 GMT
+ - Fri, 25 Sep 2026 04:17:41 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_5
response:
body:
string: ''
@@ -8698,13 +8862,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:32 GMT
+ - Fri, 25 Sep 2026 04:17:40 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8724,13 +8888,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:32 GMT
+ - Fri, 25 Sep 2026 04:17:42 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_6
response:
body:
string: ''
@@ -8738,13 +8902,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:32 GMT
+ - Fri, 25 Sep 2026 04:17:41 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8764,13 +8928,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:33 GMT
+ - Fri, 25 Sep 2026 04:17:42 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_7
response:
body:
string: ''
@@ -8778,13 +8942,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:32 GMT
+ - Fri, 25 Sep 2026 04:17:42 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8804,13 +8968,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:33 GMT
+ - Fri, 25 Sep 2026 04:17:43 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_8
response:
body:
string: ''
@@ -8818,13 +8982,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:33 GMT
+ - Fri, 25 Sep 2026 04:17:42 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8844,13 +9008,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:33 GMT
+ - Fri, 25 Sep 2026 04:17:44 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/butter/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/butter/file_9
response:
body:
string: ''
@@ -8858,13 +9022,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:33 GMT
+ - Fri, 25 Sep 2026 04:17:43 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8884,13 +9048,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:33 GMT
+ - Fri, 25 Sep 2026 04:17:44 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_0
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_0
response:
body:
string: ''
@@ -8898,13 +9062,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:33 GMT
+ - Fri, 25 Sep 2026 04:17:44 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8924,13 +9088,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:34 GMT
+ - Fri, 25 Sep 2026 04:17:44 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_1
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_1
response:
body:
string: ''
@@ -8938,13 +9102,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:33 GMT
+ - Fri, 25 Sep 2026 04:17:44 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -8964,13 +9128,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:34 GMT
+ - Fri, 25 Sep 2026 04:17:45 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_2
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_2
response:
body:
string: ''
@@ -8978,13 +9142,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:34 GMT
+ - Fri, 25 Sep 2026 04:17:45 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9004,13 +9168,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:34 GMT
+ - Fri, 25 Sep 2026 04:17:46 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_3
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_3
response:
body:
string: ''
@@ -9018,13 +9182,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:34 GMT
+ - Fri, 25 Sep 2026 04:17:46 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9044,13 +9208,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:35 GMT
+ - Fri, 25 Sep 2026 04:17:47 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_4
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_4
response:
body:
string: ''
@@ -9058,13 +9222,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:34 GMT
+ - Fri, 25 Sep 2026 04:17:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9084,13 +9248,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:35 GMT
+ - Fri, 25 Sep 2026 04:17:47 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_5
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_5
response:
body:
string: ''
@@ -9098,13 +9262,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:34 GMT
+ - Fri, 25 Sep 2026 04:17:47 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9124,13 +9288,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:35 GMT
+ - Fri, 25 Sep 2026 04:17:48 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_6
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_6
response:
body:
string: ''
@@ -9138,13 +9302,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:35 GMT
+ - Fri, 25 Sep 2026 04:17:49 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9164,13 +9328,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:35 GMT
+ - Fri, 25 Sep 2026 04:17:49 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_7
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_7
response:
body:
string: ''
@@ -9178,13 +9342,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:35 GMT
+ - Fri, 25 Sep 2026 04:17:49 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9204,13 +9368,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:36 GMT
+ - Fri, 25 Sep 2026 04:17:50 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_8
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_8
response:
body:
string: ''
@@ -9218,13 +9382,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:35 GMT
+ - Fri, 25 Sep 2026 04:17:50 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9244,13 +9408,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:36 GMT
+ - Fri, 25 Sep 2026 04:17:50 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/duff/edward/file_9
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/duff/edward/file_9
response:
body:
string: ''
@@ -9258,13 +9422,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:36 GMT
+ - Fri, 25 Sep 2026 04:17:51 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9284,13 +9448,13 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:36 GMT
+ - Fri, 25 Sep 2026 04:17:51 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: DELETE
- uri: https://clitest000002.blob.core.windows.net/cont000003/readme
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003/readme
response:
body:
string: ''
@@ -9298,13 +9462,13 @@ interactions:
content-length:
- '0'
date:
- - Fri, 07 Apr 2023 07:05:36 GMT
+ - Fri, 25 Sep 2026 04:17:51 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-delete-type-permanent:
- 'true'
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 202
message: Accepted
@@ -9322,29 +9486,29 @@ interactions:
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)
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
x-ms-date:
- - Fri, 07 Apr 2023 07:05:37 GMT
+ - Fri, 25 Sep 2026 04:17:52 GMT
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
method: GET
- uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000
+ uri: https://clitestbatchoauth3274.blob.core.windows.net/cont000003?restype=container&comp=list&maxresults=5000
response:
body:
string: "\uFEFF50005000"
headers:
content-type:
- application/xml
date:
- - Fri, 07 Apr 2023 07:05:37 GMT
+ - Fri, 25 Sep 2026 04:17:52 GMT
server:
- Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
transfer-encoding:
- chunked
x-ms-version:
- - '2021-06-08'
+ - '2026-04-06'
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_sas_scenarios.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_sas_scenarios.yaml
new file mode 100644
index 00000000000..f8e4e59bfa2
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_blob_batch_sas_scenarios.yaml
@@ -0,0 +1,7390 @@
+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.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:15:52 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1?restype=container
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:15:52 GMT
+ etag:
+ - '"0x8DF1ABBB084BB25"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:15:53 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage account show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2025-08-01
+ response:
+ body:
+ string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2026-09-25T04:15:30.8142581Z","key2":"2026-09-25T04:15:30.8142581Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"None","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-09-25T04:15:30.8245773Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-09-25T04:15:30.8245773Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2026-09-25T04:15:30.5384530Z","primaryEndpoints":{"dfs":"https://clitest000002.dfs.core.windows.net/","web":"https://clitest000002.z22.web.core.windows.net/","blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1491'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 25 Sep 2026 04:15:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-original-request-ids:
+ - be25ab1b-6a91-4450-a50e-3a8af4be1e75
+ - f091815a-ba93-43cc-835e-f87d458f7905
+ - c55afa92-c3af-4fbd-a8a9-aa12058cbb5e
+ - 593b8a8c-726a-4dfb-88bf-5888adeec5e6
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 77E5EB6C134F49819EBA81C6623D2F4C Ref B: SYD281080705031 Ref C: 2026-09-25T04:15:53Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage account show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-core/1.39.0 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2025-08-01
+ response:
+ body:
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"allowCrossTenantDelegationSas":false,"keyCreationTime":{"key1":"2026-09-25T04:15:30.8142581Z","key2":"2026-09-25T04:15:30.8142581Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"None","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-09-25T04:15:30.8245773Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2026-09-25T04:15:30.8245773Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2026-09-25T04:15:30.5384530Z","primaryEndpoints":{"dfs":"https://clitest000002.dfs.core.windows.net/","web":"https://clitest000002.z22.web.core.windows.net/","blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1479'
+ content-type:
+ - application/json
+ date:
+ - Fri, 25 Sep 2026 04:15:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: C996A091D1F345EBA21F93D1F9BBBF23 Ref B: SYD281080710042 Ref C: 2026-09-25T04:15:55Z'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:15:57 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/readme?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - sYGKK8OX+WLKH+2bAe4tSQ==
+ date:
+ - Fri, 25 Sep 2026 04:15:57 GMT
+ etag:
+ - '"0x8DF1ABBB35F5154"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:15:58 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:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_3'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:15:58 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - cWhFlLFHdgchEvoVZI0VBg==
+ date:
+ - Fri, 25 Sep 2026 04:15:58 GMT
+ etag:
+ - '"0x8DF1ABBB3E0155E"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:15:58 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - Mma81tcoAC0=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_0'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:15:59 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - dhIqL9rHuSMf4aw8Kwc9TA==
+ date:
+ - Fri, 25 Sep 2026 04:15:59 GMT
+ etag:
+ - '"0x8DF1ABBB461EB1C"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:15:59 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - uf3iho85s6w=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_4'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:00 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - dVLHlox+4gDJqeXtn/j+eQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:00 GMT
+ etag:
+ - '"0x8DF1ABBB4E4C843"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:00 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - NkujHvzc0WU=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_6'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:01 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - Yyq3KZYxfqovPHWa49pr5g==
+ date:
+ - Fri, 25 Sep 2026 04:16:01 GMT
+ etag:
+ - '"0x8DF1ABBB5654DB3"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:01 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - xFnIfmw9DJs=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_2'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:02 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - Wxf1JjziDf8gwhSrMcIeww==
+ date:
+ - Fri, 25 Sep 2026 04:16:01 GMT
+ etag:
+ - '"0x8DF1ABBB5E4C8C8"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:02 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - S++J5h/YblI=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_8'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - f5w11WA1gVYrm5/FU/Y0fw==
+ date:
+ - Fri, 25 Sep 2026 04:16:02 GMT
+ etag:
+ - '"0x8DF1ABBB66583EC"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - zAP27jvVrwo=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_1'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:04 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - 81CPd5rZF9liJNQZRo7mKQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ etag:
+ - '"0x8DF1ABBB6E5DA03"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - wHTXtkfJ3dM=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_9'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:04 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - nx0HhhThsPKVVW2bja1x7w==
+ date:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ etag:
+ - '"0x8DF1ABBB766FA22"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:04 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - tYrD3vMlwXU=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_7'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:05 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - LwlZQocQIVgOfC5dfXhliw==
+ date:
+ - Fri, 25 Sep 2026 04:16:05 GMT
+ etag:
+ - '"0x8DF1ABBB7E6A44B"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:05 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - vdD9TqTNYuQ=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_5'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:06 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - IQy2JFFAAWt1oHqjWXbwsw==
+ date:
+ - Fri, 25 Sep 2026 04:16:05 GMT
+ etag:
+ - '"0x8DF1ABBB86763EB"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:06 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - T8KWLjQsvxo=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_3'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:07 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - b/KCzMMzyOe0NAFzTJH6eA==
+ date:
+ - Fri, 25 Sep 2026 04:16:07 GMT
+ etag:
+ - '"0x8DF1ABBB8E7F64F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:07 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - lFaJOnc1Hbw=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_0'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:08 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - bXDe2gIJC8meFVI+nSLFZQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:08 GMT
+ etag:
+ - '"0x8DF1ABBB967C766"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:08 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - H83Xai8krj0=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_4'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - a8WDo3tCsR+BQYfu+j0KkQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:08 GMT
+ etag:
+ - '"0x8DF1ABBB9E7FD63"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - kHuW8lzBzPQ=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_6'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:10 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - w/YMscDDw+Le5mJrGoiTVg==
+ date:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ etag:
+ - '"0x8DF1ABBBA68D1FA"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - Ymn9kswgEQo=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_2'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - fTB26CrcMaWEz7SXw08TNg==
+ date:
+ - Fri, 25 Sep 2026 04:16:10 GMT
+ etag:
+ - '"0x8DF1ABBBAE994DB"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:10 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - 7d+8Cr/Fc8M=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_8'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:10 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - rptZy1RGkXmyaNfjcTnr4Q==
+ date:
+ - Fri, 25 Sep 2026 04:16:11 GMT
+ etag:
+ - '"0x8DF1ABBBB6AAFD8"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:11 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - ajPDApvIsps=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_1'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:11 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - kScDqxUef5g+vTNQ2RaFiQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:11 GMT
+ etag:
+ - '"0x8DF1ABBBBEB4408"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:12 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - ZkTiWufUwEI=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_9'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:12 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - jUhyQHRPoaDWdpBqfXLzIQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:12 GMT
+ etag:
+ - '"0x8DF1ABBBC6B840F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:13 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - E7r2MlM43OQ=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_7'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:13 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - JxNE1IYeiEkti7S8XdqqeA==
+ date:
+ - Fri, 25 Sep 2026 04:16:13 GMT
+ etag:
+ - '"0x8DF1ABBBCEC4846"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - G+DIogTQf3U=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_5'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - SLW+SRiO1HP/ukxMyjynyw==
+ date:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ etag:
+ - '"0x8DF1ABBBD6E146F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - 6fKjwpQxoos=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_3'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:15 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - 4qJHTMmRkthuwRIIeu1ZUQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ etag:
+ - '"0x8DF1ABBBDEE41FA"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:15 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - JGTvBe5Itug=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_0'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:16 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - XI4OsvfjO/p4CurLFHcdzQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:16 GMT
+ etag:
+ - '"0x8DF1ABBBE6FAD09"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:16 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - r/+xVbZZBWk=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_4'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:16 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - BVsoR/Il2AjQtx9dmC4Tig==
+ date:
+ - Fri, 25 Sep 2026 04:16:16 GMT
+ etag:
+ - '"0x8DF1ABBBEEF3037"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - IEnwzcW8Z6A=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_6'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:17 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - jPuOPSMhG0sPNXTzDLC1IA==
+ date:
+ - Fri, 25 Sep 2026 04:16:17 GMT
+ etag:
+ - '"0x8DF1ABBBF701BCF"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:18 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - 0lubrVVdul4=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_2'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:18 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - HeE/QvLNL3LgDwH00DP4qg==
+ date:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ etag:
+ - '"0x8DF1ABBBFF31FF5"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - Xe3aNSa42Jc=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_8'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - jFjev3g+eyaPhJSCvG/IIQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ etag:
+ - '"0x8DF1ABBC0738D1F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - 2gGlPQK1Gc8=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_1'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:20 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - PtEpZctNTfJOegCqatUrhQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:20 GMT
+ etag:
+ - '"0x8DF1ABBC0F47D73"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:20 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - 1naEZX6paxY=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_9'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:21 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - sCapvxfuzEqlmBh7lmBTFA==
+ date:
+ - Fri, 25 Sep 2026 04:16:21 GMT
+ etag:
+ - '"0x8DF1ABBC17515F4"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:21 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - o4iQDcpFd7A=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_7'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:22 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - bxNz2xuqOFtrm45RGEgEvw==
+ date:
+ - Fri, 25 Sep 2026 04:16:22 GMT
+ etag:
+ - '"0x8DF1ABBC1F7E010"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:22 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - q9KunZ2t1CE=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_5'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '110'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:23 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - +Vq6lOLcLvjuFC6TS/O1nQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:22 GMT
+ etag:
+ - '"0x8DF1ABBC27883F7"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:23 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - WcDF/Q1MCd8=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_3'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:23 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - jC9GaK1o+boAsr/2mvQFaA==
+ date:
+ - Fri, 25 Sep 2026 04:16:23 GMT
+ etag:
+ - '"0x8DF1ABBC2F9A450"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:24 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - qcnXdISRzXk=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_0'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:24 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - u4UH7Q+gXy3lNk6kRLGMGg==
+ date:
+ - Fri, 25 Sep 2026 04:16:24 GMT
+ etag:
+ - '"0x8DF1ABBC3799C76"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:25 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - IlKJJNyAfvg=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_4'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:25 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - MmlrOyXc4sod5WHrr/VOrA==
+ date:
+ - Fri, 25 Sep 2026 04:16:25 GMT
+ etag:
+ - '"0x8DF1ABBC3FF5B3A"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:25 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - reTIvK9lHDE=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_6'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:26 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - RlcAVwR2y2YnXhpumz1lLQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:26 GMT
+ etag:
+ - '"0x8DF1ABBC4805EEA"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:26 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - X/aj3D+Ewc8=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_2'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:27 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - sHvcegsZppzWE5qLLytDCA==
+ date:
+ - Fri, 25 Sep 2026 04:16:27 GMT
+ etag:
+ - '"0x8DF1ABBC501E998"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:27 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - 0EDiRExhowY=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_8'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:28 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - x7iycpRnfX4J7gLPJOczOw==
+ date:
+ - Fri, 25 Sep 2026 04:16:27 GMT
+ etag:
+ - '"0x8DF1ABBC58459A0"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:28 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - V6ydTGhsYl4=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_1'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:29 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - 0xyHAXOgQNENyuTVZ3VTAQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:28 GMT
+ etag:
+ - '"0x8DF1ABBC60451C4"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:29 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - W9u8FBRwEIc=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_9'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:30 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - 5I/e0ZjvCYLOUYjyw8A6Hg==
+ date:
+ - Fri, 25 Sep 2026 04:16:29 GMT
+ etag:
+ - '"0x8DF1ABBC684CA8F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:30 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - LiWofKCcDCE=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_7'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - MwjBTSLosuhscbanRsnwGQ==
+ date:
+ - Fri, 25 Sep 2026 04:16:30 GMT
+ etag:
+ - '"0x8DF1ABBC7046617"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - Jn+W7Pd0r7A=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_5'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob upload-batch
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '101'
+ Content-Type:
+ - application/octet-stream
+ If-None-Match:
+ - '*'
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: PUT
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - gzQCi+kB5ot3ZAGuOLYIaA==
+ date:
+ - Fri, 25 Sep 2026 04:16:30 GMT
+ etag:
+ - '"0x8DF1ABBC7834D40"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - 1G39jGeVck4=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob download-batch
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -s -d
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:32 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list&se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: "\uFEFFapple/file_0Fri,
+ 25 Sep 2026 04:16:25 GMTFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3799C76101application/octet-streamu4UH7Q+gXy3lNk6kRLGMGg==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 04:16:29 GMTFri, 25 Sep 2026 04:16:29
+ GMT0x8DF1ABBC60451C4101application/octet-stream0xyHAXOgQNENyuTVZ3VTAQ==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 04:16:27 GMTFri, 25 Sep 2026 04:16:27
+ GMT0x8DF1ABBC501E998101application/octet-streamsHvcegsZppzWE5qLLytDCA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 04:16:24 GMTFri, 25 Sep 2026 04:16:24
+ GMT0x8DF1ABBC2F9A450101application/octet-streamjC9GaK1o+boAsr/2mvQFaA==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 04:16:25 GMTFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3FF5B3A101application/octet-streamMmlrOyXc4sod5WHrr/VOrA==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC7834D40101application/octet-streamgzQCi+kB5ot3ZAGuOLYIaA==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 04:16:26 GMTFri, 25 Sep 2026 04:16:26
+ GMT0x8DF1ABBC4805EEA101application/octet-streamRlcAVwR2y2YnXhpumz1lLQ==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC7046617101application/octet-streamMwjBTSLosuhscbanRsnwGQ==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC58459A0101application/octet-streamx7iycpRnfX4J7gLPJOczOw==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC684CA8F101application/octet-stream5I/e0ZjvCYLOUYjyw8A6Hg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
+ 25 Sep 2026 04:16:16 GMTFri, 25 Sep 2026 04:16:16
+ GMT0x8DF1ABBBE6FAD09110application/octet-streamXI4OsvfjO/p4CurLFHcdzQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
+ 25 Sep 2026 04:16:20 GMTFri, 25 Sep 2026 04:16:20
+ GMT0x8DF1ABBC0F47D73110application/octet-streamPtEpZctNTfJOegCqatUrhQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
+ 25 Sep 2026 04:16:19 GMTFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBBFF31FF5110application/octet-streamHeE/QvLNL3LgDwH00DP4qg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
+ 25 Sep 2026 04:16:15 GMTFri, 25 Sep 2026 04:16:15
+ GMT0x8DF1ABBBDEE41FA110application/octet-stream4qJHTMmRkthuwRIIeu1ZUQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
+ 25 Sep 2026 04:16:17 GMTFri, 25 Sep 2026 04:16:17
+ GMT0x8DF1ABBBEEF3037110application/octet-streamBVsoR/Il2AjQtx9dmC4Tig==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
+ 25 Sep 2026 04:16:23 GMTFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC27883F7110application/octet-stream+Vq6lOLcLvjuFC6TS/O1nQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
+ 25 Sep 2026 04:16:18 GMTFri, 25 Sep 2026 04:16:18
+ GMT0x8DF1ABBBF701BCF110application/octet-streamjPuOPSMhG0sPNXTzDLC1IA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
+ 25 Sep 2026 04:16:22 GMTFri, 25 Sep 2026 04:16:22
+ GMT0x8DF1ABBC1F7E010110application/octet-streambxNz2xuqOFtrm45RGEgEvw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
+ 25 Sep 2026 04:16:19 GMTFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBC0738D1F110application/octet-streamjFjev3g+eyaPhJSCvG/IIQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_9Fri,
+ 25 Sep 2026 04:16:21 GMTFri, 25 Sep 2026 04:16:21
+ GMT0x8DF1ABBC17515F4110application/octet-streamsCapvxfuzEqlmBh7lmBTFA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 04:16:08 GMTFri, 25 Sep 2026 04:16:08
+ GMT0x8DF1ABBB967C766102application/octet-streambXDe2gIJC8meFVI+nSLFZQ==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 04:16:12 GMTFri, 25 Sep 2026 04:16:12
+ GMT0x8DF1ABBBBEB4408102application/octet-streamkScDqxUef5g+vTNQ2RaFiQ==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 04:16:10 GMTFri, 25 Sep 2026 04:16:10
+ GMT0x8DF1ABBBAE994DB102application/octet-streamfTB26CrcMaWEz7SXw08TNg==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 04:16:07 GMTFri, 25 Sep 2026 04:16:07
+ GMT0x8DF1ABBB8E7F64F102application/octet-streamb/KCzMMzyOe0NAFzTJH6eA==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 04:16:09 GMTFri, 25 Sep 2026 04:16:09
+ GMT0x8DF1ABBB9E7FD63102application/octet-streama8WDo3tCsR+BQYfu+j0KkQ==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 04:16:14 GMTFri, 25 Sep 2026 04:16:14
+ GMT0x8DF1ABBBD6E146F102application/octet-streamSLW+SRiO1HP/ukxMyjynyw==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 04:16:09 GMTFri, 25 Sep 2026 04:16:09
+ GMT0x8DF1ABBBA68D1FA102application/octet-streamw/YMscDDw+Le5mJrGoiTVg==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 04:16:14 GMTFri, 25 Sep 2026 04:16:14
+ GMT0x8DF1ABBBCEC4846102application/octet-streamJxNE1IYeiEkti7S8XdqqeA==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 04:16:11 GMTFri, 25 Sep 2026 04:16:11
+ GMT0x8DF1ABBBB6AAFD8102application/octet-streamrptZy1RGkXmyaNfjcTnr4Q==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 04:16:13 GMTFri, 25 Sep 2026 04:16:13
+ GMT0x8DF1ABBBC6B840F102application/octet-streamjUhyQHRPoaDWdpBqfXLzIQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
+ 25 Sep 2026 04:15:59 GMTFri, 25 Sep 2026 04:15:59
+ GMT0x8DF1ABBB461EB1C107application/octet-streamdhIqL9rHuSMf4aw8Kwc9TA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
+ 25 Sep 2026 04:16:03 GMTFri, 25 Sep 2026 04:16:03
+ GMT0x8DF1ABBB6E5DA03107application/octet-stream81CPd5rZF9liJNQZRo7mKQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
+ 25 Sep 2026 04:16:02 GMTFri, 25 Sep 2026 04:16:02
+ GMT0x8DF1ABBB5E4C8C8107application/octet-streamWxf1JjziDf8gwhSrMcIeww==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
+ 25 Sep 2026 04:15:58 GMTFri, 25 Sep 2026 04:15:58
+ GMT0x8DF1ABBB3E0155E107application/octet-streamcWhFlLFHdgchEvoVZI0VBg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
+ 25 Sep 2026 04:16:00 GMTFri, 25 Sep 2026 04:16:00
+ GMT0x8DF1ABBB4E4C843107application/octet-streamdVLHlox+4gDJqeXtn/j+eQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
+ 25 Sep 2026 04:16:06 GMTFri, 25 Sep 2026 04:16:06
+ GMT0x8DF1ABBB86763EB107application/octet-streamIQy2JFFAAWt1oHqjWXbwsw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
+ 25 Sep 2026 04:16:01 GMTFri, 25 Sep 2026 04:16:01
+ GMT0x8DF1ABBB5654DB3107application/octet-streamYyq3KZYxfqovPHWa49pr5g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
+ 25 Sep 2026 04:16:05 GMTFri, 25 Sep 2026 04:16:05
+ GMT0x8DF1ABBB7E6A44B107application/octet-streamLwlZQocQIVgOfC5dfXhliw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
+ 25 Sep 2026 04:16:03 GMTFri, 25 Sep 2026 04:16:03
+ GMT0x8DF1ABBB66583EC107application/octet-streamf5w11WA1gVYrm5/FU/Y0fw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_9Fri,
+ 25 Sep 2026 04:16:04 GMTFri, 25 Sep 2026 04:16:04
+ GMT0x8DF1ABBB766FA22107application/octet-streamnx0HhhThsPKVVW2bja1x7w==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 04:15:58 GMTFri, 25 Sep 2026 04:15:58 GMT0x8DF1ABBB35F515487application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedavailabletrue"
+ headers:
+ content-type:
+ - application/xml
+ date:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:34 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_0'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:33 GMT
+ etag:
+ - '"0x8DF1ABBC3799C76"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:25 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - u4UH7Q+gXy3lNk6kRLGMGg==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:25 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:34 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_1'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:33 GMT
+ etag:
+ - '"0x8DF1ABBC60451C4"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:29 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - 0xyHAXOgQNENyuTVZ3VTAQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:29 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:35 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_2'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:35 GMT
+ etag:
+ - '"0x8DF1ABBC501E998"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:27 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - sHvcegsZppzWE5qLLytDCA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:27 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:36 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_3'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:36 GMT
+ etag:
+ - '"0x8DF1ABBC2F9A450"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:24 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - jC9GaK1o+boAsr/2mvQFaA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:24 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:37 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_4'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:36 GMT
+ etag:
+ - '"0x8DF1ABBC3FF5B3A"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:25 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - MmlrOyXc4sod5WHrr/VOrA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:25 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:38 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_5'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:37 GMT
+ etag:
+ - '"0x8DF1ABBC7834D40"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - gzQCi+kB5ot3ZAGuOLYIaA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:39 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_6'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:38 GMT
+ etag:
+ - '"0x8DF1ABBC4805EEA"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:26 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - RlcAVwR2y2YnXhpumz1lLQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:26 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:40 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_7'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:39 GMT
+ etag:
+ - '"0x8DF1ABBC7046617"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - MwjBTSLosuhscbanRsnwGQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:31 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:41 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_8'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:40 GMT
+ etag:
+ - '"0x8DF1ABBC58459A0"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:28 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - x7iycpRnfX4J7gLPJOczOw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:28 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:41 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/apple/file_9'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '101'
+ content-range:
+ - bytes 0-100/101
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:41 GMT
+ etag:
+ - '"0x8DF1ABBC684CA8F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:30 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - 5I/e0ZjvCYLOUYjyw8A6Hg==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:30 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:41 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_0'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:42 GMT
+ etag:
+ - '"0x8DF1ABBBE6FAD09"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:16 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - XI4OsvfjO/p4CurLFHcdzQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:16 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:42 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_1'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:42 GMT
+ etag:
+ - '"0x8DF1ABBC0F47D73"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:20 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - PtEpZctNTfJOegCqatUrhQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:20 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:43 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_2'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:43 GMT
+ etag:
+ - '"0x8DF1ABBBFF31FF5"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - HeE/QvLNL3LgDwH00DP4qg==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:44 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_3'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:44 GMT
+ etag:
+ - '"0x8DF1ABBBDEE41FA"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:15 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - 4qJHTMmRkthuwRIIeu1ZUQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:15 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:45 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_4'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:45 GMT
+ etag:
+ - '"0x8DF1ABBBEEF3037"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - BVsoR/Il2AjQtx9dmC4Tig==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:17 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:45 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_5'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:45 GMT
+ etag:
+ - '"0x8DF1ABBC27883F7"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:23 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - +Vq6lOLcLvjuFC6TS/O1nQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:23 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:46 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_6'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:46 GMT
+ etag:
+ - '"0x8DF1ABBBF701BCF"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:18 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - jPuOPSMhG0sPNXTzDLC1IA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:18 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:47 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_7'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:48 GMT
+ etag:
+ - '"0x8DF1ABBC1F7E010"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:22 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - bxNz2xuqOFtrm45RGEgEvw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:22 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:48 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_8'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:48 GMT
+ etag:
+ - '"0x8DF1ABBC0738D1F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - jFjev3g+eyaPhJSCvG/IIQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:19 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:49 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/charlie/file_9'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '110'
+ content-range:
+ - bytes 0-109/110
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:49 GMT
+ etag:
+ - '"0x8DF1ABBC17515F4"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:21 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - sCapvxfuzEqlmBh7lmBTFA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:21 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:50 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_0'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:50 GMT
+ etag:
+ - '"0x8DF1ABBB967C766"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:08 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - bXDe2gIJC8meFVI+nSLFZQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:08 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:51 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_1'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:50 GMT
+ etag:
+ - '"0x8DF1ABBBBEB4408"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:12 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - kScDqxUef5g+vTNQ2RaFiQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:12 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:52 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_2'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:51 GMT
+ etag:
+ - '"0x8DF1ABBBAE994DB"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:10 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - fTB26CrcMaWEz7SXw08TNg==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:10 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:52 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_3'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:52 GMT
+ etag:
+ - '"0x8DF1ABBB8E7F64F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:07 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - b/KCzMMzyOe0NAFzTJH6eA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:07 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:53 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_4'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:53 GMT
+ etag:
+ - '"0x8DF1ABBB9E7FD63"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - a8WDo3tCsR+BQYfu+j0KkQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:54 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_5'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:54 GMT
+ etag:
+ - '"0x8DF1ABBBD6E146F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - SLW+SRiO1HP/ukxMyjynyw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:55 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_6'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:54 GMT
+ etag:
+ - '"0x8DF1ABBBA68D1FA"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - w/YMscDDw+Le5mJrGoiTVg==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:09 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:56 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_7'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:55 GMT
+ etag:
+ - '"0x8DF1ABBBCEC4846"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - JxNE1IYeiEkti7S8XdqqeA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:14 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:56 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_8'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:56 GMT
+ etag:
+ - '"0x8DF1ABBBB6AAFD8"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:11 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - rptZy1RGkXmyaNfjcTnr4Q==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:11 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:57 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/butter/file_9'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '102'
+ content-range:
+ - bytes 0-101/102
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:56 GMT
+ etag:
+ - '"0x8DF1ABBBC6B840F"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:13 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - jUhyQHRPoaDWdpBqfXLzIQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:13 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:58 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_0'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:57 GMT
+ etag:
+ - '"0x8DF1ABBB461EB1C"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:15:59 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - dhIqL9rHuSMf4aw8Kwc9TA==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:15:59 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:59 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_1'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:58 GMT
+ etag:
+ - '"0x8DF1ABBB6E5DA03"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - 81CPd5rZF9liJNQZRo7mKQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:16:59 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_2'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:16:59 GMT
+ etag:
+ - '"0x8DF1ABBB5E4C8C8"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:02 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - Wxf1JjziDf8gwhSrMcIeww==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:00 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_3'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:17:00 GMT
+ etag:
+ - '"0x8DF1ABBB3E0155E"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:15:58 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - cWhFlLFHdgchEvoVZI0VBg==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:15:58 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:01 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_4'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:17:00 GMT
+ etag:
+ - '"0x8DF1ABBB4E4C843"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:00 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - dVLHlox+4gDJqeXtn/j+eQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:00 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:02 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_5'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:17:01 GMT
+ etag:
+ - '"0x8DF1ABBB86763EB"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:06 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - IQy2JFFAAWt1oHqjWXbwsw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:06 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:02 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_6'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:17:02 GMT
+ etag:
+ - '"0x8DF1ABBB5654DB3"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:01 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - Yyq3KZYxfqovPHWa49pr5g==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:01 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:03 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_7'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:17:02 GMT
+ etag:
+ - '"0x8DF1ABBB7E6A44B"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:05 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - LwlZQocQIVgOfC5dfXhliw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:05 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:04 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_8'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:17:04 GMT
+ etag:
+ - '"0x8DF1ABBB66583EC"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - f5w11WA1gVYrm5/FU/Y0fw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:03 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:05 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: 'Azure CLI storage command module test sample file. origin: /tmp/testwl6pc57bcuypvxuu3boo/duff/edward/file_9'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '107'
+ content-range:
+ - bytes 0-106/107
+ content-type:
+ - application/octet-stream
+ date:
+ - Fri, 25 Sep 2026 04:17:04 GMT
+ etag:
+ - '"0x8DF1ABBB766FA22"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:16:04 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - nx0HhhThsPKVVW2bja1x7w==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:16:04 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:06 GMT
+ x-ms-range:
+ - bytes=0-33554431
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1/readme?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ 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, 25 Sep 2026 04:17:05 GMT
+ etag:
+ - '"0x8DF1ABBB35F5154"'
+ last-modified:
+ - Fri, 25 Sep 2026 04:15:58 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-access-tier:
+ - Hot
+ x-ms-access-tier-inferred:
+ - 'true'
+ x-ms-blob-content-md5:
+ - sYGKK8OX+WLKH+2bAe4tSQ==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Fri, 25 Sep 2026 04:15:58 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -c --account-name --account-key
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:07 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list&maxresults=5000
+ response:
+ body:
+ string: "\uFEFF5000apple/file_0Fri,
+ 25 Sep 2026 04:16:25 GMTFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3799C76101application/octet-streamu4UH7Q+gXy3lNk6kRLGMGg==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 04:16:29 GMTFri, 25 Sep 2026 04:16:29
+ GMT0x8DF1ABBC60451C4101application/octet-stream0xyHAXOgQNENyuTVZ3VTAQ==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 04:16:27 GMTFri, 25 Sep 2026 04:16:27
+ GMT0x8DF1ABBC501E998101application/octet-streamsHvcegsZppzWE5qLLytDCA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 04:16:24 GMTFri, 25 Sep 2026 04:16:24
+ GMT0x8DF1ABBC2F9A450101application/octet-streamjC9GaK1o+boAsr/2mvQFaA==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 04:16:25 GMTFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3FF5B3A101application/octet-streamMmlrOyXc4sod5WHrr/VOrA==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC7834D40101application/octet-streamgzQCi+kB5ot3ZAGuOLYIaA==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 04:16:26 GMTFri, 25 Sep 2026 04:16:26
+ GMT0x8DF1ABBC4805EEA101application/octet-streamRlcAVwR2y2YnXhpumz1lLQ==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC7046617101application/octet-streamMwjBTSLosuhscbanRsnwGQ==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC58459A0101application/octet-streamx7iycpRnfX4J7gLPJOczOw==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC684CA8F101application/octet-stream5I/e0ZjvCYLOUYjyw8A6Hg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
+ 25 Sep 2026 04:16:16 GMTFri, 25 Sep 2026 04:16:16
+ GMT0x8DF1ABBBE6FAD09110application/octet-streamXI4OsvfjO/p4CurLFHcdzQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
+ 25 Sep 2026 04:16:20 GMTFri, 25 Sep 2026 04:16:20
+ GMT0x8DF1ABBC0F47D73110application/octet-streamPtEpZctNTfJOegCqatUrhQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
+ 25 Sep 2026 04:16:19 GMTFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBBFF31FF5110application/octet-streamHeE/QvLNL3LgDwH00DP4qg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
+ 25 Sep 2026 04:16:15 GMTFri, 25 Sep 2026 04:16:15
+ GMT0x8DF1ABBBDEE41FA110application/octet-stream4qJHTMmRkthuwRIIeu1ZUQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
+ 25 Sep 2026 04:16:17 GMTFri, 25 Sep 2026 04:16:17
+ GMT0x8DF1ABBBEEF3037110application/octet-streamBVsoR/Il2AjQtx9dmC4Tig==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
+ 25 Sep 2026 04:16:23 GMTFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC27883F7110application/octet-stream+Vq6lOLcLvjuFC6TS/O1nQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
+ 25 Sep 2026 04:16:18 GMTFri, 25 Sep 2026 04:16:18
+ GMT0x8DF1ABBBF701BCF110application/octet-streamjPuOPSMhG0sPNXTzDLC1IA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
+ 25 Sep 2026 04:16:22 GMTFri, 25 Sep 2026 04:16:22
+ GMT0x8DF1ABBC1F7E010110application/octet-streambxNz2xuqOFtrm45RGEgEvw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
+ 25 Sep 2026 04:16:19 GMTFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBC0738D1F110application/octet-streamjFjev3g+eyaPhJSCvG/IIQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_9Fri,
+ 25 Sep 2026 04:16:21 GMTFri, 25 Sep 2026 04:16:21
+ GMT0x8DF1ABBC17515F4110application/octet-streamsCapvxfuzEqlmBh7lmBTFA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 04:16:08 GMTFri, 25 Sep 2026 04:16:08
+ GMT0x8DF1ABBB967C766102application/octet-streambXDe2gIJC8meFVI+nSLFZQ==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 04:16:12 GMTFri, 25 Sep 2026 04:16:12
+ GMT0x8DF1ABBBBEB4408102application/octet-streamkScDqxUef5g+vTNQ2RaFiQ==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 04:16:10 GMTFri, 25 Sep 2026 04:16:10
+ GMT0x8DF1ABBBAE994DB102application/octet-streamfTB26CrcMaWEz7SXw08TNg==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 04:16:07 GMTFri, 25 Sep 2026 04:16:07
+ GMT0x8DF1ABBB8E7F64F102application/octet-streamb/KCzMMzyOe0NAFzTJH6eA==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 04:16:09 GMTFri, 25 Sep 2026 04:16:09
+ GMT0x8DF1ABBB9E7FD63102application/octet-streama8WDo3tCsR+BQYfu+j0KkQ==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 04:16:14 GMTFri, 25 Sep 2026 04:16:14
+ GMT0x8DF1ABBBD6E146F102application/octet-streamSLW+SRiO1HP/ukxMyjynyw==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 04:16:09 GMTFri, 25 Sep 2026 04:16:09
+ GMT0x8DF1ABBBA68D1FA102application/octet-streamw/YMscDDw+Le5mJrGoiTVg==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 04:16:14 GMTFri, 25 Sep 2026 04:16:14
+ GMT0x8DF1ABBBCEC4846102application/octet-streamJxNE1IYeiEkti7S8XdqqeA==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 04:16:11 GMTFri, 25 Sep 2026 04:16:11
+ GMT0x8DF1ABBBB6AAFD8102application/octet-streamrptZy1RGkXmyaNfjcTnr4Q==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 04:16:13 GMTFri, 25 Sep 2026 04:16:13
+ GMT0x8DF1ABBBC6B840F102application/octet-streamjUhyQHRPoaDWdpBqfXLzIQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
+ 25 Sep 2026 04:15:59 GMTFri, 25 Sep 2026 04:15:59
+ GMT0x8DF1ABBB461EB1C107application/octet-streamdhIqL9rHuSMf4aw8Kwc9TA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
+ 25 Sep 2026 04:16:03 GMTFri, 25 Sep 2026 04:16:03
+ GMT0x8DF1ABBB6E5DA03107application/octet-stream81CPd5rZF9liJNQZRo7mKQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
+ 25 Sep 2026 04:16:02 GMTFri, 25 Sep 2026 04:16:02
+ GMT0x8DF1ABBB5E4C8C8107application/octet-streamWxf1JjziDf8gwhSrMcIeww==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
+ 25 Sep 2026 04:15:58 GMTFri, 25 Sep 2026 04:15:58
+ GMT0x8DF1ABBB3E0155E107application/octet-streamcWhFlLFHdgchEvoVZI0VBg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
+ 25 Sep 2026 04:16:00 GMTFri, 25 Sep 2026 04:16:00
+ GMT0x8DF1ABBB4E4C843107application/octet-streamdVLHlox+4gDJqeXtn/j+eQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
+ 25 Sep 2026 04:16:06 GMTFri, 25 Sep 2026 04:16:06
+ GMT0x8DF1ABBB86763EB107application/octet-streamIQy2JFFAAWt1oHqjWXbwsw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
+ 25 Sep 2026 04:16:01 GMTFri, 25 Sep 2026 04:16:01
+ GMT0x8DF1ABBB5654DB3107application/octet-streamYyq3KZYxfqovPHWa49pr5g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
+ 25 Sep 2026 04:16:05 GMTFri, 25 Sep 2026 04:16:05
+ GMT0x8DF1ABBB7E6A44B107application/octet-streamLwlZQocQIVgOfC5dfXhliw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
+ 25 Sep 2026 04:16:03 GMTFri, 25 Sep 2026 04:16:03
+ GMT0x8DF1ABBB66583EC107application/octet-streamf5w11WA1gVYrm5/FU/Y0fw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_9Fri,
+ 25 Sep 2026 04:16:04 GMTFri, 25 Sep 2026 04:16:04
+ GMT0x8DF1ABBB766FA22107application/octet-streamnx0HhhThsPKVVW2bja1x7w==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 04:15:58 GMTFri, 25 Sep 2026 04:15:58 GMT0x8DF1ABBB35F515487application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedavailabletrue"
+ headers:
+ content-type:
+ - application/xml
+ date:
+ - Fri, 25 Sep 2026 04:17:06 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage blob delete-batch
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -s
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:08 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list&se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: "\uFEFFapple/file_0Fri,
+ 25 Sep 2026 04:16:25 GMTFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3799C76101application/octet-streamu4UH7Q+gXy3lNk6kRLGMGg==BlockBlobHottrueunlockedavailabletrueapple/file_1Fri, 25
+ Sep 2026 04:16:29 GMTFri, 25 Sep 2026 04:16:29
+ GMT0x8DF1ABBC60451C4101application/octet-stream0xyHAXOgQNENyuTVZ3VTAQ==BlockBlobHottrueunlockedavailabletrueapple/file_2Fri, 25
+ Sep 2026 04:16:27 GMTFri, 25 Sep 2026 04:16:27
+ GMT0x8DF1ABBC501E998101application/octet-streamsHvcegsZppzWE5qLLytDCA==BlockBlobHottrueunlockedavailabletrueapple/file_3Fri, 25
+ Sep 2026 04:16:24 GMTFri, 25 Sep 2026 04:16:24
+ GMT0x8DF1ABBC2F9A450101application/octet-streamjC9GaK1o+boAsr/2mvQFaA==BlockBlobHottrueunlockedavailabletrueapple/file_4Fri, 25
+ Sep 2026 04:16:25 GMTFri, 25 Sep 2026 04:16:25
+ GMT0x8DF1ABBC3FF5B3A101application/octet-streamMmlrOyXc4sod5WHrr/VOrA==BlockBlobHottrueunlockedavailabletrueapple/file_5Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC7834D40101application/octet-streamgzQCi+kB5ot3ZAGuOLYIaA==BlockBlobHottrueunlockedavailabletrueapple/file_6Fri, 25
+ Sep 2026 04:16:26 GMTFri, 25 Sep 2026 04:16:26
+ GMT0x8DF1ABBC4805EEA101application/octet-streamRlcAVwR2y2YnXhpumz1lLQ==BlockBlobHottrueunlockedavailabletrueapple/file_7Fri, 25
+ Sep 2026 04:16:31 GMTFri, 25 Sep 2026 04:16:31
+ GMT0x8DF1ABBC7046617101application/octet-streamMwjBTSLosuhscbanRsnwGQ==BlockBlobHottrueunlockedavailabletrueapple/file_8Fri, 25
+ Sep 2026 04:16:28 GMTFri, 25 Sep 2026 04:16:28
+ GMT0x8DF1ABBC58459A0101application/octet-streamx7iycpRnfX4J7gLPJOczOw==BlockBlobHottrueunlockedavailabletrueapple/file_9Fri, 25
+ Sep 2026 04:16:30 GMTFri, 25 Sep 2026 04:16:30
+ GMT0x8DF1ABBC684CA8F101application/octet-stream5I/e0ZjvCYLOUYjyw8A6Hg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_0Fri,
+ 25 Sep 2026 04:16:16 GMTFri, 25 Sep 2026 04:16:16
+ GMT0x8DF1ABBBE6FAD09110application/octet-streamXI4OsvfjO/p4CurLFHcdzQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_1Fri,
+ 25 Sep 2026 04:16:20 GMTFri, 25 Sep 2026 04:16:20
+ GMT0x8DF1ABBC0F47D73110application/octet-streamPtEpZctNTfJOegCqatUrhQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_2Fri,
+ 25 Sep 2026 04:16:19 GMTFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBBFF31FF5110application/octet-streamHeE/QvLNL3LgDwH00DP4qg==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_3Fri,
+ 25 Sep 2026 04:16:15 GMTFri, 25 Sep 2026 04:16:15
+ GMT0x8DF1ABBBDEE41FA110application/octet-stream4qJHTMmRkthuwRIIeu1ZUQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_4Fri,
+ 25 Sep 2026 04:16:17 GMTFri, 25 Sep 2026 04:16:17
+ GMT0x8DF1ABBBEEF3037110application/octet-streamBVsoR/Il2AjQtx9dmC4Tig==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_5Fri,
+ 25 Sep 2026 04:16:23 GMTFri, 25 Sep 2026 04:16:23
+ GMT0x8DF1ABBC27883F7110application/octet-stream+Vq6lOLcLvjuFC6TS/O1nQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_6Fri,
+ 25 Sep 2026 04:16:18 GMTFri, 25 Sep 2026 04:16:18
+ GMT0x8DF1ABBBF701BCF110application/octet-streamjPuOPSMhG0sPNXTzDLC1IA==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_7Fri,
+ 25 Sep 2026 04:16:22 GMTFri, 25 Sep 2026 04:16:22
+ GMT0x8DF1ABBC1F7E010110application/octet-streambxNz2xuqOFtrm45RGEgEvw==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_8Fri,
+ 25 Sep 2026 04:16:19 GMTFri, 25 Sep 2026 04:16:19
+ GMT0x8DF1ABBC0738D1F110application/octet-streamjFjev3g+eyaPhJSCvG/IIQ==BlockBlobHottrueunlockedavailabletruebutter/charlie/file_9Fri,
+ 25 Sep 2026 04:16:21 GMTFri, 25 Sep 2026 04:16:21
+ GMT0x8DF1ABBC17515F4110application/octet-streamsCapvxfuzEqlmBh7lmBTFA==BlockBlobHottrueunlockedavailabletruebutter/file_0Fri, 25
+ Sep 2026 04:16:08 GMTFri, 25 Sep 2026 04:16:08
+ GMT0x8DF1ABBB967C766102application/octet-streambXDe2gIJC8meFVI+nSLFZQ==BlockBlobHottrueunlockedavailabletruebutter/file_1Fri, 25
+ Sep 2026 04:16:12 GMTFri, 25 Sep 2026 04:16:12
+ GMT0x8DF1ABBBBEB4408102application/octet-streamkScDqxUef5g+vTNQ2RaFiQ==BlockBlobHottrueunlockedavailabletruebutter/file_2Fri, 25
+ Sep 2026 04:16:10 GMTFri, 25 Sep 2026 04:16:10
+ GMT0x8DF1ABBBAE994DB102application/octet-streamfTB26CrcMaWEz7SXw08TNg==BlockBlobHottrueunlockedavailabletruebutter/file_3Fri, 25
+ Sep 2026 04:16:07 GMTFri, 25 Sep 2026 04:16:07
+ GMT0x8DF1ABBB8E7F64F102application/octet-streamb/KCzMMzyOe0NAFzTJH6eA==BlockBlobHottrueunlockedavailabletruebutter/file_4Fri, 25
+ Sep 2026 04:16:09 GMTFri, 25 Sep 2026 04:16:09
+ GMT0x8DF1ABBB9E7FD63102application/octet-streama8WDo3tCsR+BQYfu+j0KkQ==BlockBlobHottrueunlockedavailabletruebutter/file_5Fri, 25
+ Sep 2026 04:16:14 GMTFri, 25 Sep 2026 04:16:14
+ GMT0x8DF1ABBBD6E146F102application/octet-streamSLW+SRiO1HP/ukxMyjynyw==BlockBlobHottrueunlockedavailabletruebutter/file_6Fri, 25
+ Sep 2026 04:16:09 GMTFri, 25 Sep 2026 04:16:09
+ GMT0x8DF1ABBBA68D1FA102application/octet-streamw/YMscDDw+Le5mJrGoiTVg==BlockBlobHottrueunlockedavailabletruebutter/file_7Fri, 25
+ Sep 2026 04:16:14 GMTFri, 25 Sep 2026 04:16:14
+ GMT0x8DF1ABBBCEC4846102application/octet-streamJxNE1IYeiEkti7S8XdqqeA==BlockBlobHottrueunlockedavailabletruebutter/file_8Fri, 25
+ Sep 2026 04:16:11 GMTFri, 25 Sep 2026 04:16:11
+ GMT0x8DF1ABBBB6AAFD8102application/octet-streamrptZy1RGkXmyaNfjcTnr4Q==BlockBlobHottrueunlockedavailabletruebutter/file_9Fri, 25
+ Sep 2026 04:16:13 GMTFri, 25 Sep 2026 04:16:13
+ GMT0x8DF1ABBBC6B840F102application/octet-streamjUhyQHRPoaDWdpBqfXLzIQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_0Fri,
+ 25 Sep 2026 04:15:59 GMTFri, 25 Sep 2026 04:15:59
+ GMT0x8DF1ABBB461EB1C107application/octet-streamdhIqL9rHuSMf4aw8Kwc9TA==BlockBlobHottrueunlockedavailabletrueduff/edward/file_1Fri,
+ 25 Sep 2026 04:16:03 GMTFri, 25 Sep 2026 04:16:03
+ GMT0x8DF1ABBB6E5DA03107application/octet-stream81CPd5rZF9liJNQZRo7mKQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_2Fri,
+ 25 Sep 2026 04:16:02 GMTFri, 25 Sep 2026 04:16:02
+ GMT0x8DF1ABBB5E4C8C8107application/octet-streamWxf1JjziDf8gwhSrMcIeww==BlockBlobHottrueunlockedavailabletrueduff/edward/file_3Fri,
+ 25 Sep 2026 04:15:58 GMTFri, 25 Sep 2026 04:15:58
+ GMT0x8DF1ABBB3E0155E107application/octet-streamcWhFlLFHdgchEvoVZI0VBg==BlockBlobHottrueunlockedavailabletrueduff/edward/file_4Fri,
+ 25 Sep 2026 04:16:00 GMTFri, 25 Sep 2026 04:16:00
+ GMT0x8DF1ABBB4E4C843107application/octet-streamdVLHlox+4gDJqeXtn/j+eQ==BlockBlobHottrueunlockedavailabletrueduff/edward/file_5Fri,
+ 25 Sep 2026 04:16:06 GMTFri, 25 Sep 2026 04:16:06
+ GMT0x8DF1ABBB86763EB107application/octet-streamIQy2JFFAAWt1oHqjWXbwsw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_6Fri,
+ 25 Sep 2026 04:16:01 GMTFri, 25 Sep 2026 04:16:01
+ GMT0x8DF1ABBB5654DB3107application/octet-streamYyq3KZYxfqovPHWa49pr5g==BlockBlobHottrueunlockedavailabletrueduff/edward/file_7Fri,
+ 25 Sep 2026 04:16:05 GMTFri, 25 Sep 2026 04:16:05
+ GMT0x8DF1ABBB7E6A44B107application/octet-streamLwlZQocQIVgOfC5dfXhliw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_8Fri,
+ 25 Sep 2026 04:16:03 GMTFri, 25 Sep 2026 04:16:03
+ GMT0x8DF1ABBB66583EC107application/octet-streamf5w11WA1gVYrm5/FU/Y0fw==BlockBlobHottrueunlockedavailabletrueduff/edward/file_9Fri,
+ 25 Sep 2026 04:16:04 GMTFri, 25 Sep 2026 04:16:04
+ GMT0x8DF1ABBB766FA22107application/octet-streamnx0HhhThsPKVVW2bja1x7w==BlockBlobHottrueunlockedavailabletruereadmeFri, 25 Sep 2026
+ 04:15:58 GMTFri, 25 Sep 2026 04:15:58 GMT0x8DF1ABBB35F515487application/octet-streamsYGKK8OX+WLKH+2bAe4tSQ==BlockBlobHottrueunlockedavailabletrue"
+ headers:
+ content-type:
+ - application/xml
+ date:
+ - Fri, 25 Sep 2026 04:17:07 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:09 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:08 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:10 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:09 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:10 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:10 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:11 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:10 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:12 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:11 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:13 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:12 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:12 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:12 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:13 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:13 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:14 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:14 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:15 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/apple/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:15 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:15 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:16 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:16 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:16 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:17 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:17 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:18 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:18 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:19 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:19 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:20 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:20 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:21 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:20 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:21 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:21 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:22 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/charlie/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:22 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:23 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:23 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:24 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:23 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:24 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:24 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:25 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:24 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:26 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:25 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:26 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:26 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:27 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:26 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:28 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:27 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:29 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:28 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:29 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/butter/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:29 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:30 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_0?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:29 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:31 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_1?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:30 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:32 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_2?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:31 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:32 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_3?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:33 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_4?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:34 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_5?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:33 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:35 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_6?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:34 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:35 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_7?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:34 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:36 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_8?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:35 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:37 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/duff/edward/file_9?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:36 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:38 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: DELETE
+ uri: https://clitest000002.blob.core.windows.net/container1/readme?se=2026-09-25T05%3A15Z&sp=rwdl&sv=2026-04-06&sr=c&sig=fakeSig
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Fri, 25 Sep 2026 04:17:36 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-delete-type-permanent:
+ - 'true'
+ x-ms-version:
+ - '2026-04-06'
+ 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 --account-key
+ User-Agent:
+ - AZURECLI/2.90.0 azsdk-python-storage-blob/12.29.0b1 Python/3.12.3 (Linux-6.6.114.1-microsoft-standard-WSL2-x86_64-with-glibc2.39)
+ x-ms-date:
+ - Fri, 25 Sep 2026 04:17:38 GMT
+ x-ms-version:
+ - '2026-04-06'
+ method: GET
+ uri: https://clitest000002.blob.core.windows.net/container1?restype=container&comp=list&maxresults=5000
+ response:
+ body:
+ string: "\uFEFF5000"
+ headers:
+ content-type:
+ - application/xml
+ date:
+ - Fri, 25 Sep 2026 04:17:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ x-ms-version:
+ - '2026-04-06'
+ status:
+ code: 200
+ message: OK
+version: 1
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 0a6605c0c5c..3a21dd06adf 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
@@ -644,7 +644,7 @@ def create_and_populate_share(src_share):
src_share, path).assert_with_checks(JMESPathCheck('length(@)', 10))
@ResourceGroupPreparer()
- @StorageAccountPreparer()
+ @StorageAccountPreparer(kind='StorageV2')
@StorageTestFilesPreparer()
@live_only()
def test_storage_blob_batch_sas_scenarios(self, test_dir, storage_account_info):
From 080e93fac5f1b4916f63c1de0686a91c09d1a111 Mon Sep 17 00:00:00 2001
From: Sebastian Cramond <47074056+sebby37@users.noreply.github.com>
Date: Fri, 25 Sep 2026 17:27:32 +0930
Subject: [PATCH 5/5] Validate blob download paths structurally and reuse them
from the pre-validation pass
---
.../storage/operations/blob.py | 33 ++++++++---------
.../test_storage_blob_download_batch.py | 36 +++++++++++++++++--
2 files changed, 47 insertions(+), 22 deletions(-)
diff --git a/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py b/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
index afe76ecbfec..39fd9aa2bb1 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/operations/blob.py
@@ -444,23 +444,19 @@ def action_file_copy(file_info):
def _get_blob_download_path(destination, normalized_blob_name, blob_name):
"""Build the local path for a blob, ensuring it cannot escape the destination directory."""
- destination_path = os.path.join(destination, os.path.normpath(normalized_blob_name))
- # Blob names are arbitrary server-controlled strings (e.g. '../../.ssh/authorized_keys', or 'C:/x' on Windows),
- # so verify the final path is strictly inside the destination before writing anything. The check is lexical on
- # purpose: existing symlinks/junctions under the destination are followed, preserving user-created layouts.
- abs_destination = os.path.normcase(os.path.abspath(destination))
- abs_destination_path = os.path.normcase(os.path.abspath(destination_path))
- try:
- is_within_destination = abs_destination_path != abs_destination and \
- os.path.commonpath([abs_destination, abs_destination_path]) == abs_destination
- except ValueError: # paths are on different drives
- is_within_destination = False
- if not is_within_destination:
+ # Blob names are arbitrary server-controlled strings (e.g. '../../.ssh/authorized_keys', or 'C:/x' on Windows).
+ # Only accept names that normalize to a plain relative path (no drive, root or leading '.'/'..'); joining such a
+ # path onto the destination cannot leave it, without relying on case-insensitive path comparisons (Windows
+ # directories can be case-sensitive). Existing symlinks/junctions under the destination are followed on purpose,
+ # preserving user-created layouts.
+ relative_path = os.path.normpath(normalized_blob_name)
+ first_component = relative_path.split(os.path.sep)[0]
+ if os.path.splitdrive(relative_path)[0] or first_component in ('', os.path.curdir, os.path.pardir):
raise FileOperationError('Blob "{}" cannot be downloaded because its name resolves to a path outside the '
'destination directory "{}". Use the `--pattern` parameter to exclude it, or use '
'the `storage blob download` command to download it to an explicit file path.'
.format(blob_name, destination))
- return destination_path
+ return os.path.join(destination, relative_path)
# pylint: disable=unused-argument
@@ -477,12 +473,12 @@ def _download_blob(*args, **kwargs):
# remove starting path seperator and normalize
normalized_blob_name = normalize_blob_file_path(None, blob_name)
# validate every blob before downloading any of them, so a malicious name fails the batch up front
- _get_blob_download_path(destination, normalized_blob_name, blob_name)
+ destination_path = _get_blob_download_path(destination, normalized_blob_name, blob_name)
if normalized_blob_name in blobs_to_download:
raise CLIError('Multiple blobs with download path: `{}`. As a solution, use the `--pattern` parameter '
'to select for a subset of blobs to download OR utilize the `storage blob download` '
'command instead to download individual blobs.'.format(normalized_blob_name))
- blobs_to_download[normalized_blob_name] = blob_name
+ blobs_to_download[normalized_blob_name] = (blob_name, destination_path)
if dryrun:
logger.warning('download action: from %s to %s', source, destination)
@@ -500,13 +496,12 @@ def _download_blob(*args, **kwargs):
results = []
for index, blob_normed in enumerate(blobs_to_download):
+ blob_name, destination_path = blobs_to_download[blob_normed]
# add blob name and number to progress message
if progress_callback:
progress_callback.message = '{}/{}: "{}"'.format(
- index + 1, len(blobs_to_download), blobs_to_download[blob_normed])
- blob_client = client.get_blob_client(container=source_container_name,
- blob=blobs_to_download[blob_normed])
- destination_path = _get_blob_download_path(destination, blob_normed, blobs_to_download[blob_normed])
+ index + 1, len(blobs_to_download), blob_name)
+ blob_client = client.get_blob_client(container=source_container_name, blob=blob_name)
destination_folder = os.path.dirname(destination_path)
# Failed when there is same name for file and folder
if os.path.isfile(destination_path) and os.path.exists(destination_folder) and not overwrite:
diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
index 5bff8bec325..0eab01026f5 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_blob_download_batch.py
@@ -115,15 +115,17 @@ def test_download_batch_rejects_windows_blob_names_with_simulated_windows_paths(
windows_os = SimpleNamespace(path=ntpath)
destination = 'C:\\Users\\victim\\downloads'
with mock.patch(BLOB_MODULE + '.os', windows_os), mock.patch(UTIL_MODULE + '.os', windows_os):
- for blob_name in ('C:/Users/Public/evil.txt', 'C:\\Users\\Public\\evil.txt', 'D:/evil.txt',
- '..\\..\\evil.txt', 'dir\\..\\..\\evil.txt', '../downloads2/evil.txt'):
+ for blob_name in ('C:/Users/Public/evil.txt', 'C:\\Users\\Public\\evil.txt', 'D:/evil.txt', 'C:evil.txt',
+ '..\\..\\evil.txt', 'dir\\..\\..\\evil.txt', '../downloads2/evil.txt',
+ # differ from the destination only by case, which is a sibling in case-sensitive dirs
+ 'C:/Users/victim/DOWNLOADS/evil.txt', '../DOWNLOADS/evil.txt'):
with self.subTest(blob_name=blob_name):
with mock.patch(BLOB_MODULE + '.collect_blobs', return_value=[blob_name]), \
self.assertRaisesRegex(FileOperationError, 'outside the destination directory'):
storage_blob_download_batch(mock.Mock(), source='container', destination=destination,
source_container_name='container', dryrun=True)
- for blob_name in ('dir/file.txt', 'dir\\file.txt', 'C:evil.txt', '\\\\server\\share\\file.txt'):
+ for blob_name in ('dir/file.txt', 'dir\\file.txt', 'Dir/File.txt', '\\\\server\\share\\file.txt'):
with self.subTest(blob_name=blob_name):
with mock.patch(BLOB_MODULE + '.collect_blobs', return_value=[blob_name]):
self.assertEqual(storage_blob_download_batch(
@@ -140,6 +142,34 @@ def test_download_batch_rejects_windows_traversal_blob_names(self):
self._run([blob_name])
self.assertEqual(self._files_written(), [])
+ @unittest.skipUnless(sys.platform == 'win32', 'Windows per-directory case sensitivity')
+ def test_download_batch_rejects_case_variant_sibling_in_case_sensitive_directory(self):
+ work = os.path.join(self.root, 'work')
+ os.makedirs(work)
+ try:
+ subprocess.run(['fsutil', 'file', 'setCaseSensitiveInfo', work, 'enable'], check=True, capture_output=True)
+ except (OSError, subprocess.CalledProcessError):
+ self.skipTest('Per-directory case sensitivity is not available')
+ self.destination = os.path.join(work, 'dest')
+ sibling = os.path.join(work, 'DEST')
+ os.makedirs(self.destination)
+ os.makedirs(sibling)
+ sentinel = os.path.join(sibling, 'existing.txt')
+ with open(sentinel, 'wb') as stream:
+ stream.write(b'original')
+
+ for blob_name in (sentinel, sentinel.replace('\\', '/'), '..\\DEST\\existing.txt'):
+ for blobs, kwargs in (([blob_name], {}), (['good.txt', blob_name], {}),
+ ([blob_name], {'dryrun': True}), ([blob_name], {'overwrite': True})):
+ with self.subTest(blobs=blobs, **kwargs):
+ with self.assertRaises(FileOperationError):
+ self._run(blobs, **kwargs)
+ # nothing downloaded (even the valid blob), no sibling file created and the sentinel untouched
+ self.assertEqual(os.listdir(self.destination), [])
+ self.assertEqual(os.listdir(sibling), ['existing.txt'])
+ with open(sentinel, 'rb') as stream:
+ self.assertEqual(stream.read(), b'original')
+
if __name__ == '__main__':
unittest.main()