diff --git a/sdk/storage/azure-storage-blob/azure/storage/blob/_container_client.py b/sdk/storage/azure-storage-blob/azure/storage/blob/_container_client.py
index f6b8e316f20f..cc23568b0b1b 100644
--- a/sdk/storage/azure-storage-blob/azure/storage/blob/_container_client.py
+++ b/sdk/storage/azure-storage-blob/azure/storage/blob/_container_client.py
@@ -1027,7 +1027,7 @@ def download_blob(self, blob, offset=None, length=None, **kwargs):
# type: (Union[str, BlobProperties], Optional[int], Optional[int], **Any) -> StorageStreamDownloader
"""Downloads a blob to the StorageStreamDownloader. The readall() method must
be used to read all the content or readinto() must be used to download the blob into
- a stream.
+ a stream. Using chunks() returns an iterator which allows the user to iterate over the content in chunks.
:param blob: The blob with which to interact. If specified, this value will override
a blob value specified in the blob URL.
diff --git a/sdk/storage/azure-storage-blob/azure/storage/blob/_download.py b/sdk/storage/azure-storage-blob/azure/storage/blob/_download.py
index 8b7cfd036aa3..9ccc79601baf 100644
--- a/sdk/storage/azure-storage-blob/azure/storage/blob/_download.py
+++ b/sdk/storage/azure-storage-blob/azure/storage/blob/_download.py
@@ -9,6 +9,7 @@
import warnings
from io import BytesIO
+from typing import Iterator
from azure.core.exceptions import HttpResponseError
from azure.core.tracing.common import with_current_context
from ._shared.encryption import decrypt_blob
@@ -213,8 +214,9 @@ def _download_chunk(self, chunk_start, chunk_end):
class _ChunkIterator(object):
"""Async iterator for chunks in blob download stream."""
- def __init__(self, size, content, downloader):
+ def __init__(self, size, content, downloader, chunk_size):
self.size = size
+ self._chunk_size = chunk_size
self._current_content = content
self._iter_downloader = downloader
self._iter_chunks = None
@@ -231,21 +233,39 @@ def __next__(self):
if self._complete:
raise StopIteration("Download complete")
if not self._iter_downloader:
- # If no iterator was supplied, the download completed with
- # the initial GET, so we just return that data
+ # cut the data obtained from initial GET into chunks
+ if len(self._current_content) > self._chunk_size:
+ return self._get_chunk_data()
self._complete = True
return self._current_content
if not self._iter_chunks:
self._iter_chunks = self._iter_downloader.get_chunk_offsets()
- else:
+
+ # initial GET result still has more than _chunk_size bytes of data
+ if len(self._current_content) >= self._chunk_size:
+ return self._get_chunk_data()
+
+ try:
chunk = next(self._iter_chunks)
- self._current_content = self._iter_downloader.yield_chunk(chunk)
+ self._current_content += self._iter_downloader.yield_chunk(chunk)
+ except StopIteration as e:
+ self._complete = True
+ if self._current_content:
+ return self._current_content
+ raise e
- return self._current_content
+ # the current content from the first get is still there but smaller than chunk size
+ # therefore we want to make sure its also included
+ return self._get_chunk_data()
next = __next__ # Python 2 compatibility.
+ def _get_chunk_data(self):
+ chunk_data = self._current_content[: self._chunk_size]
+ self._current_content = self._current_content[self._chunk_size:]
+ return chunk_data
+
class StorageStreamDownloader(object): # pylint: disable=too-many-instance-attributes
"""A streaming object to download from Azure Storage.
@@ -426,6 +446,20 @@ def _initial_request(self):
return response
def chunks(self):
+ # type: () -> Iterator[bytes]
+ """Iterate over chunks in the download stream.
+
+ :rtype: Iterator[bytes]
+
+ .. admonition:: Example:
+
+ .. literalinclude:: ../samples/blob_samples_hello_world.py
+ :start-after: [START download_a_blob_in_chunk]
+ :end-before: [END download_a_blob_in_chunk]
+ :language: python
+ :dedent: 12
+ :caption: Download a blob using chunks().
+ """
if self.size == 0 or self._download_complete:
iter_downloader = None
else:
@@ -451,7 +485,8 @@ def chunks(self):
return _ChunkIterator(
size=self.size,
content=self._current_content,
- downloader=iter_downloader)
+ downloader=iter_downloader,
+ chunk_size=self._config.max_chunk_get_size)
def readall(self):
"""Download the contents of this blob.
diff --git a/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_blob_client_async.py b/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_blob_client_async.py
index 5b8c31b695a3..243ab1b7275e 100644
--- a/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_blob_client_async.py
+++ b/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_blob_client_async.py
@@ -379,7 +379,7 @@ async def download_blob(self, offset=None, length=None, **kwargs):
# type: (Optional[int], Optional[int], Any) -> StorageStreamDownloader
"""Downloads a blob to the StorageStreamDownloader. The readall() method must
be used to read all the content or readinto() must be used to download the blob into
- a stream. Using chunks() returns an iterator which allows the user to iterate over the content in chunks.
+ a stream. Using chunks() returns an async iterator which allows the user to iterate over the content in chunks.
:param int offset:
Start of byte range to use for downloading a section of the blob.
diff --git a/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_container_client_async.py b/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_container_client_async.py
index 65e31f3338fa..f793dc10c659 100644
--- a/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_container_client_async.py
+++ b/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_container_client_async.py
@@ -892,7 +892,7 @@ async def download_blob(self, blob, offset=None, length=None, **kwargs):
# type: (Union[str, BlobProperties], Optional[int], Optional[int], Any) -> StorageStreamDownloader
"""Downloads a blob to the StorageStreamDownloader. The readall() method must
be used to read all the content or readinto() must be used to download the blob into
- a stream.
+ a stream. Using chunks() returns an async iterator which allows the user to iterate over the content in chunks.
:param blob: The blob with which to interact. If specified, this value will override
a blob value specified in the blob URL.
diff --git a/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_download_async.py b/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_download_async.py
index 44ba51d272d1..1ad8dc3181c1 100644
--- a/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_download_async.py
+++ b/sdk/storage/azure-storage-blob/azure/storage/blob/aio/_download_async.py
@@ -11,6 +11,7 @@
from itertools import islice
import warnings
+from typing import AsyncIterator
from azure.core.exceptions import HttpResponseError
from .._shared.encryption import decrypt_blob
from .._shared.request_handlers import validate_and_format_range_headers
@@ -115,8 +116,9 @@ async def _download_chunk(self, chunk_start, chunk_end):
class _AsyncChunkIterator(object):
"""Async iterator for chunks in blob download stream."""
- def __init__(self, size, content, downloader):
+ def __init__(self, size, content, downloader, chunk_size):
self.size = size
+ self._chunk_size = chunk_size
self._current_content = content
self._iter_downloader = downloader
self._iter_chunks = None
@@ -136,21 +138,35 @@ async def __anext__(self):
if self._complete:
raise StopAsyncIteration("Download complete")
if not self._iter_downloader:
- # If no iterator was supplied, the download completed with
- # the initial GET, so we just return that data
+ # cut the data obtained from initial GET into chunks
+ if len(self._current_content) > self._chunk_size:
+ return self._get_chunk_data()
self._complete = True
return self._current_content
if not self._iter_chunks:
self._iter_chunks = self._iter_downloader.get_chunk_offsets()
- else:
- try:
- chunk = next(self._iter_chunks)
- except StopIteration:
- raise StopAsyncIteration("Download complete")
- self._current_content = await self._iter_downloader.yield_chunk(chunk)
- return self._current_content
+ # initial GET result still has more than _chunk_size bytes of data
+ if len(self._current_content) >= self._chunk_size:
+ return self._get_chunk_data()
+
+ try:
+ chunk = next(self._iter_chunks)
+ self._current_content += await self._iter_downloader.yield_chunk(chunk)
+ except StopIteration:
+ self._complete = True
+ # it's likely that there some data left in self._current_content
+ if self._current_content:
+ return self._current_content
+ raise StopAsyncIteration("Download complete")
+
+ return self._get_chunk_data()
+
+ def _get_chunk_data(self):
+ chunk_data = self._current_content[: self._chunk_size]
+ self._current_content = self._current_content[self._chunk_size:]
+ return chunk_data
class StorageStreamDownloader(object): # pylint: disable=too-many-instance-attributes
@@ -325,9 +341,19 @@ async def _initial_request(self):
return response
def chunks(self):
+ # type: () -> AsyncIterator[bytes]
"""Iterate over chunks in the download stream.
- :rtype: Iterable[bytes]
+ :rtype: AsyncIterator[bytes]
+
+ .. admonition:: Example:
+
+ .. literalinclude:: ../samples/blob_samples_hello_world_async.py
+ :start-after: [START download_a_blob_in_chunk]
+ :end-before: [END download_a_blob_in_chunk]
+ :language: python
+ :dedent: 16
+ :caption: Download a blob using chunks().
"""
if self.size == 0 or self._download_complete:
iter_downloader = None
@@ -353,7 +379,8 @@ def chunks(self):
return _AsyncChunkIterator(
size=self.size,
content=self._current_content,
- downloader=iter_downloader)
+ downloader=iter_downloader,
+ chunk_size=self._config.max_chunk_get_size)
async def readall(self):
"""Download the contents of this blob.
diff --git a/sdk/storage/azure-storage-blob/samples/blob_samples_hello_world.py b/sdk/storage/azure-storage-blob/samples/blob_samples_hello_world.py
index 7fbce4b5fa4a..d818652f38ea 100644
--- a/sdk/storage/azure-storage-blob/samples/blob_samples_hello_world.py
+++ b/sdk/storage/azure-storage-blob/samples/blob_samples_hello_world.py
@@ -110,7 +110,7 @@ def stream_block_blob(self):
source_blob_client.upload_blob(data, blob_type="BlockBlob")
destination_blob_client = container_client.get_blob_client("destination_blob")
-
+ # [START download_a_blob_in_chunk]
# This returns a StorageStreamDownloader.
stream = source_blob_client.download_blob()
block_list = []
@@ -122,6 +122,8 @@ def stream_block_blob(self):
destination_blob_client.stage_block(block_id=block_id, data=chunk)
block_list.append(BlobBlock(block_id=block_id))
+ # [END download_a_blob_in_chunk]
+
# Upload the whole chunk to azure storage and make up one blob
destination_blob_client.commit_block_list(block_list)
diff --git a/sdk/storage/azure-storage-blob/samples/blob_samples_hello_world_async.py b/sdk/storage/azure-storage-blob/samples/blob_samples_hello_world_async.py
index b01bf0fdeb8a..f98785851029 100644
--- a/sdk/storage/azure-storage-blob/samples/blob_samples_hello_world_async.py
+++ b/sdk/storage/azure-storage-blob/samples/blob_samples_hello_world_async.py
@@ -116,6 +116,7 @@ async def stream_block_blob(self):
destination_blob_client = container_client.get_blob_client("destination_blob")
+ # [START download_a_blob_in_chunk]
# This returns a StorageStreamDownloader.
stream = await source_blob_client.download_blob()
block_list = []
@@ -126,6 +127,7 @@ async def stream_block_blob(self):
block_id = str(uuid.uuid4())
await destination_blob_client.stage_block(block_id=block_id, data=chunk)
block_list.append(BlobBlock(block_id=block_id))
+ # [END download_a_blob_in_chunk]
# Upload the whole chunk to azure storage and make up one blob
await destination_blob_client.commit_block_list(block_list)
diff --git a/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks.yaml b/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks.yaml
new file mode 100644
index 000000000000..f5b28fd90ab5
--- /dev/null
+++ b/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks.yaml
@@ -0,0 +1,4664 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/container84fe11a7?restype=container
+ response:
+ body:
+ string: "\uFEFFContainerAlreadyExists
The
+ specified container already exists.\nRequestId:ca38e8f3-401e-00c2-2f11-211572000000\nTime:2021-03-25T00:53:16.9580638Z"
+ headers:
+ content-length:
+ - '230'
+ content-type:
+ - application/xml
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-error-code:
+ - ContainerAlreadyExists
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 409
+ message: The specified container already exists.
+- request:
+ body: hello world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '38912'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - qq6el7P81mY=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=0-1023
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chun
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '1024'
+ content-range:
+ - bytes 0-1023/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1024-1689
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 1024-1689/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1690-2355
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 1690-2355/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2356-3021
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 2356-3021/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3022-3687
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 3022-3687/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3688-4353
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 3688-4353/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4354-5019
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 4354-5019/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5020-5685
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 5020-5685/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5686-6351
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 5686-6351/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6352-7017
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 6352-7017/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7018-7683
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 7018-7683/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7684-8349
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 7684-8349/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:16 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8350-9015
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 8350-9015/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9016-9681
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 9016-9681/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9682-10347
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 9682-10347/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10348-11013
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 10348-11013/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11014-11679
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 11014-11679/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11680-12345
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 11680-12345/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12346-13011
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 12346-13011/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13012-13677
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 13012-13677/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13678-14343
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 13678-14343/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14344-15009
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 14344-15009/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15010-15675
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 15010-15675/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15676-16341
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 15676-16341/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16342-17007
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 16342-17007/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17008-17673
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 17008-17673/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17674-18339
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 17674-18339/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18340-19005
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 18340-19005/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19006-19671
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 19006-19671/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19672-20337
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 19672-20337/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20338-21003
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 20338-21003/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21004-21669
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 21004-21669/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21670-22335
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 21670-22335/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22336-23001
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 22336-23001/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23002-23667
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 23002-23667/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23668-24333
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 23668-24333/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24334-24999
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 24334-24999/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25000-25665
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 25000-25665/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25666-26331
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 25666-26331/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26332-26997
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 26332-26997/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26998-27663
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 26998-27663/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27664-28329
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 27664-28329/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28330-28995
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 28330-28995/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28996-29661
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 28996-29661/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29662-30327
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 29662-30327/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:18 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30328-30993
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 30328-30993/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30994-31659
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 30994-31659/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31660-32325
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 31660-32325/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32326-32991
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 32326-32991/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32992-33657
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 32992-33657/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33658-34323
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 33658-34323/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:20 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34324-34989
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 34324-34989/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:20 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34990-35655
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 34990-35655/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:20 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35656-36321
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 35656-36321/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:20 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36322-36987
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 36322-36987/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:20 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36988-37653
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 36988-37653/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:20 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37654-38319
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 37654-38319/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF286088323F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:53:20 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38320-38911
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container84fe11a7/testiteratechunks84fe11a7
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '592'
+ content-range:
+ - bytes 38320-38911/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:53:19 GMT
+ etag:
+ - '"0x8D8EF286088323F"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:53:17 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:49:02 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+version: 1
diff --git a/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_is_multiple_of_chunksize.yaml b/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_is_multiple_of_chunksize.yaml
new file mode 100644
index 000000000000..79399bf07ef4
--- /dev/null
+++ b/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_is_multiple_of_chunksize.yaml
@@ -0,0 +1,5706 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0?restype=container
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B477D473"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: hello world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '38912'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - qq6el7P81mY=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=0-1023
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chun
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '1024'
+ content-range:
+ - bytes 0-1023/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1024-1535
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 1024-1535/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1536-2047
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 1536-2047/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2048-2559
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 2048-2559/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2560-3071
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: 'thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 2560-3071/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3072-3583
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: 'chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 3072-3583/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3584-4095
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 3584-4095/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4096-4607
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: t chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 4096-4607/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4608-5119
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 4608-5119/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5120-5631
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wo
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 5120-5631/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5632-6143
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 5632-6143/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6144-6655
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 6144-6655/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6656-7167
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 6656-7167/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7168-7679
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 7168-7679/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7680-8191
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 7680-8191/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8192-8703
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 8192-8703/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8704-9215
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 8704-9215/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9216-9727
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 9216-9727/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9728-10239
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 9728-10239/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10240-10751
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 10240-10751/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10752-11263
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 10752-11263/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11264-11775
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 11264-11775/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11776-12287
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 11776-12287/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12288-12799
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: 'thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 12288-12799/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12800-13311
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: 'chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 12800-13311/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13312-13823
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 13312-13823/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13824-14335
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: t chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 13824-14335/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14336-14847
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 14336-14847/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:38 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14848-15359
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wo
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 14848-15359/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15360-15871
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 15360-15871/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15872-16383
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 15872-16383/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16384-16895
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 16384-16895/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16896-17407
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 16896-17407/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17408-17919
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 17408-17919/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17920-18431
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 17920-18431/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18432-18943
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 18432-18943/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18944-19455
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 18944-19455/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19456-19967
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 19456-19967/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19968-20479
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 19968-20479/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20480-20991
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 20480-20991/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20992-21503
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 20992-21503/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21504-22015
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 21504-22015/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22016-22527
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: 'thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 22016-22527/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22528-23039
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: 'chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 22528-23039/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:39 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23040-23551
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 23040-23551/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23552-24063
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: t chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 23552-24063/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24064-24575
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 24064-24575/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24576-25087
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wo
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 24576-25087/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25088-25599
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 25088-25599/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25600-26111
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 25600-26111/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26112-26623
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 26112-26623/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26624-27135
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 26624-27135/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27136-27647
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 27136-27647/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27648-28159
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 27648-28159/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28160-28671
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 28160-28671/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28672-29183
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 28672-29183/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29184-29695
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 29184-29695/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29696-30207
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 29696-30207/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30208-30719
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 30208-30719/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30720-31231
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 30720-31231/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31232-31743
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 31232-31743/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31744-32255
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: 'thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 31744-32255/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32256-32767
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: 'chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 32256-32767/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:40 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32768-33279
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 32768-33279/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33280-33791
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: t chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 33280-33791/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33792-34303
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 33792-34303/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34304-34815
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wo
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 34304-34815/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34816-35327
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 34816-35327/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35328-35839
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 35328-35839/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35840-36351
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 35840-36351/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36352-36863
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 36352-36863/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36864-37375
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 36864-37375/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37376-37887
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 37376-37887/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37888-38399
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 37888-38399/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF28B4847AA8"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:55:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38400-38911
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containerbe0625b0/testiteratechunksbe0625b0
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 38400-38911/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:55:41 GMT
+ etag:
+ - '"0x8D8EF28B4847AA8"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:55:37 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+version: 1
diff --git a/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_not_multiple_of_chunksize.yaml b/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_not_multiple_of_chunksize.yaml
new file mode 100644
index 000000000000..f5064fae5d1b
--- /dev/null
+++ b/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_not_multiple_of_chunksize.yaml
@@ -0,0 +1,4663 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/containere50d2625?restype=container
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892A368B5"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: hello world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '38912'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - qq6el7P81mY=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=0-1023
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chun
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '1024'
+ content-range:
+ - bytes 0-1023/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1024-1689
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 1024-1689/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1690-2355
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 1690-2355/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2356-3021
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 2356-3021/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3022-3687
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 3022-3687/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3688-4353
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 3688-4353/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4354-5019
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 4354-5019/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5020-5685
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 5020-5685/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5686-6351
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 5686-6351/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:40 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6352-7017
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 6352-7017/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7018-7683
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 7018-7683/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7684-8349
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 7684-8349/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8350-9015
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 8350-9015/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9016-9681
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 9016-9681/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9682-10347
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 9682-10347/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10348-11013
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 10348-11013/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11014-11679
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 11014-11679/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11680-12345
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 11680-12345/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12346-13011
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 12346-13011/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13012-13677
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 13012-13677/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13678-14343
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 13678-14343/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14344-15009
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 14344-15009/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15010-15675
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 15010-15675/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15676-16341
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 15676-16341/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16342-17007
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 16342-17007/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17008-17673
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 17008-17673/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17674-18339
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 17674-18339/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18340-19005
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 18340-19005/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19006-19671
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 19006-19671/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19672-20337
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 19672-20337/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20338-21003
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 20338-21003/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21004-21669
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 21004-21669/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21670-22335
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 21670-22335/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22336-23001
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 22336-23001/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23002-23667
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 23002-23667/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23668-24333
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 23668-24333/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24334-24999
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 24334-24999/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25000-25665
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 25000-25665/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25666-26331
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 25666-26331/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26332-26997
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 26332-26997/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26998-27663
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 26998-27663/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27664-28329
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 27664-28329/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28330-28995
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 28330-28995/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:42 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28996-29661
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 28996-29661/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29662-30327
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 29662-30327/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30328-30993
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 30328-30993/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30994-31659
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 30994-31659/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31660-32325
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 31660-32325/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32326-32991
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 32326-32991/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32992-33657
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 32992-33657/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33658-34323
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 33658-34323/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34324-34989
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 34324-34989/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34990-35655
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 34990-35655/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35656-36321
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 35656-36321/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36322-36987
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 36322-36987/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36988-37653
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 36988-37653/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37654-38319
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '666'
+ content-range:
+ - bytes 37654-38319/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF2892AF93F6"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 00:54:44 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38320-38911
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/containere50d2625/testiteratechunkse50d2625
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '592'
+ content-range:
+ - bytes 38320-38911/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 00:54:43 GMT
+ etag:
+ - '"0x8D8EF2892AF93F6"'
+ last-modified:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 00:54:41 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+version: 1
diff --git a/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_smallert_than_chunksize.yaml b/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_smallert_than_chunksize.yaml
new file mode 100644
index 000000000000..fff073f0ab6c
--- /dev/null
+++ b/sdk/storage/azure-storage-blob/tests/recordings/test_container.test_download_blob_in_chunks_where_maxsinglegetsize_smallert_than_chunksize.yaml
@@ -0,0 +1,5828 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/container980f2543?restype=container
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ etag:
+ - '"0x8D8EF29F333D38D"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: hello world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '38912'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64:
+ - qq6el7P81mY=
+ x-ms-request-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=0-214
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storag
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '215'
+ content-range:
+ - bytes 0-214/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=215-726
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: e test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 215-726/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=727-1238
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stor'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 727-1238/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1239-1750
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: age test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshel
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 1239-1750/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1751-2262
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: lo world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python st
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 1751-2262/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2263-2774
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: orage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunksh
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 2263-2774/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2775-3286
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: 'ello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 2775-3286/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3287-3798
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunk
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 3287-3798/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3799-4310
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: shello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pytho
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 3799-4310/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4311-4822
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: n storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chu
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 4311-4822/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4823-5334
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: nkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyt
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 4823-5334/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5335-5846
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hon storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test c
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 5335-5846/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5847-6358
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world p
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 5847-6358/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6359-6870
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ython storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 6359-6870/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6871-7382
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 6871-7382/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7383-7894
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage te'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 7383-7894/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:33 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7895-8406
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: st chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wor
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 7895-8406/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8407-8918
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: 'ld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 8407-8918/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8919-9430
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello w
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 8919-9430/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9431-9942
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: orld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storag
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 9431-9942/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9943-10454
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: e test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 9943-10454/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10455-10966
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stor'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 10455-10966/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10967-11478
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: age test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshel
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 10967-11478/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11479-11990
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: lo world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python st
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 11479-11990/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11991-12502
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: orage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunksh
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 11991-12502/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12503-13014
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: 'ello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 12503-13014/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13015-13526
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunk
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 13015-13526/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:34 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13527-14038
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: shello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pytho
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 13527-14038/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14039-14550
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: n storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chu
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 14039-14550/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14551-15062
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: nkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyt
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 14551-15062/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15063-15574
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hon storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test c
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 15063-15574/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15575-16086
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world p
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 15575-16086/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16087-16598
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ython storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 16087-16598/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16599-17110
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 16599-17110/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17111-17622
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage te'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 17111-17622/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17623-18134
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: st chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wor
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 17623-18134/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18135-18646
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: 'ld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 18135-18646/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18647-19158
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello w
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 18647-19158/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:35 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19159-19670
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: orld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storag
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 19159-19670/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19671-20182
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: e test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 19671-20182/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20183-20694
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stor'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 20183-20694/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20695-21206
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: age test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshel
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 20695-21206/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21207-21718
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: lo world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python st
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 21207-21718/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21719-22230
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: orage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunksh
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 21719-22230/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22231-22742
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: 'ello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 22231-22742/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22743-23254
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunk
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 22743-23254/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23255-23766
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: shello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pytho
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 23255-23766/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23767-24278
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: n storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chu
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 23767-24278/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24279-24790
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: nkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyt
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 24279-24790/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:36 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24791-25302
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hon storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test c
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 24791-25302/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25303-25814
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world p
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 25303-25814/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25815-26326
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ython storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 25815-26326/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26327-26838
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 26327-26838/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26839-27350
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage te'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 26839-27350/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27351-27862
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: st chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wor
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 27351-27862/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27863-28374
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: 'ld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 27863-28374/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28375-28886
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello w
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 28375-28886/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28887-29398
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: orld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storag
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 28887-29398/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29399-29910
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: e test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 29399-29910/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29911-30422
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stor'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 29911-30422/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:37 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30423-30934
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: age test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshel
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 30423-30934/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30935-31446
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: lo world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python st
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 30935-31446/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31447-31958
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: orage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunksh
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 31447-31958/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31959-32470
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: 'ello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 31959-32470/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32471-32982
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunk
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 32471-32982/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32983-33494
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: shello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pytho
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 32983-33494/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33495-34006
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: n storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chu
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 33495-34006/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34007-34518
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: nkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyt
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 34007-34518/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34519-35030
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hon storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test c
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 34519-35030/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35031-35542
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: hunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world p
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 35031-35542/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35543-36054
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ython storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 35543-36054/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:38 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36055-36566
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 36055-36566/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36567-37078
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: ' python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage te'
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 36567-37078/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37079-37590
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: st chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wor
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 37079-37590/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37591-38102
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: 'ld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage '
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 37591-38102/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38103-38614
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello w
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '512'
+ content-range:
+ - bytes 38103-38614/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ If-Match:
+ - '"0x8D8EF29F3431255"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38615-38911
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/container980f2543/testiteratechunks980f2543
+ response:
+ body:
+ string: orld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges:
+ - bytes
+ content-length:
+ - '297'
+ content-range:
+ - bytes 38615-38911/38912
+ content-type:
+ - application/octet-stream
+ date:
+ - Thu, 25 Mar 2021 01:04:39 GMT
+ etag:
+ - '"0x8D8EF29F3431255"'
+ last-modified:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ server:
+ - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary:
+ - Origin
+ x-ms-blob-content-md5:
+ - vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-creation-time:
+ - Thu, 25 Mar 2021 01:04:32 GMT
+ x-ms-lease-state:
+ - available
+ x-ms-lease-status:
+ - unlocked
+ x-ms-server-encrypted:
+ - 'true'
+ x-ms-version:
+ - '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+version: 1
diff --git a/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_delete_blobs_and_snapshot_using_sas.yaml b/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_delete_blobs_and_snapshot_using_sas.yaml
new file mode 100644
index 000000000000..6d48ecd890d5
--- /dev/null
+++ b/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_delete_blobs_and_snapshot_using_sas.yaml
@@ -0,0 +1,345 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: http://storagename.blob.core.windows.net/acontainer956191d?restype=container&se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ etag: '"0x8D8EF3F0F8CA8A8"'
+ last-modified: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d?restype=container&se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+- request:
+ body: hello world
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '11'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: http://storagename.blob.core.windows.net/acontainer956191d/bloba?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ content-md5: XrY7u+Ae7tCTyyK7j1rNww==
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ etag: '"0x8D8EF3F0F91091B"'
+ last-modified: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64: vo7q9sPVKY0=
+ x-ms-request-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d/bloba?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: http://storagename.blob.core.windows.net/acontainer956191d/bloba?comp=snapshot&se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ etag: '"0x8D8EF3F0F91091B"'
+ last-modified: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-request-server-encrypted: 'false'
+ x-ms-snapshot: '2021-03-25T03:35:39.6266777Z'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d/bloba?comp=snapshot&se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+- request:
+ body: hello world
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '11'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: http://storagename.blob.core.windows.net/acontainer956191d/blobb?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ content-md5: XrY7u+Ae7tCTyyK7j1rNww==
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ etag: '"0x8D8EF3F0F97734B"'
+ last-modified: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64: vo7q9sPVKY0=
+ x-ms-request-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d/blobb?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+- request:
+ body: hello world
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '11'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: http://storagename.blob.core.windows.net/acontainer956191d/blobc?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ content-md5: XrY7u+Ae7tCTyyK7j1rNww==
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ etag: '"0x8D8EF3F0F9B44C9"'
+ last-modified: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64: vo7q9sPVKY0=
+ x-ms-request-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d/blobc?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+- request:
+ body: hello world
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '11'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: http://storagename.blob.core.windows.net/acontainer956191d/blobd?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ content-md5: XrY7u+Ae7tCTyyK7j1rNww==
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ etag: '"0x8D8EF3F0F9EA0FF"'
+ last-modified: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64: vo7q9sPVKY0=
+ x-ms-request-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d/blobd?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-lease-action:
+ - acquire
+ x-ms-lease-duration:
+ - '-1'
+ x-ms-proposed-lease-id:
+ - 2cfeefa2-5599-4cb8-b731-f79daee222e0
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: http://storagename.blob.core.windows.net/acontainer956191d/blobd?comp=lease&se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ etag: '"0x8D8EF3F0F9EA0FF"'
+ last-modified: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-lease-id: 2cfeefa2-5599-4cb8-b731-f79daee222e0
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d/blobd?comp=lease&se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: HEAD
+ uri: http://storagename.blob.core.windows.net/acontainer956191d/bloba?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+ response:
+ body:
+ string: ''
+ headers:
+ accept-ranges: bytes
+ content-length: '11'
+ content-md5: XrY7u+Ae7tCTyyK7j1rNww==
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ etag: '"0x8D8EF3F0F91091B"'
+ last-modified: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-access-tier: Hot
+ x-ms-access-tier-inferred: 'true'
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 200
+ message: OK
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d/bloba?se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D
+- request:
+ body: "--===============4684875350643819622==\r\nContent-Type: application/http\r\nContent-Transfer-Encoding:
+ binary\r\nContent-ID: 0\r\n\r\nDELETE /acontainer956191d/bloba?snapshot=2021-03-25T03%3A35%3A39.6266777Z&se=2021-03-25T04%3A35%3A39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3%2F3OWDUZx8ozgQ4%3D
+ HTTP/1.1\r\nIf-Match: \"0x8D8EF3F0F91091B\"\r\nx-ms-date: Thu, 25 Mar 2021 03:35:39
+ GMT\r\nx-ms-client-request-id: 2b77aa74-8d1b-11eb-bb19-001a7dda7113\r\n\r\n\r\n--===============4684875350643819622==\r\nContent-Type:
+ application/http\r\nContent-Transfer-Encoding: binary\r\nContent-ID: 1\r\n\r\nDELETE
+ /acontainer956191d/blobb?se=2021-03-25T04%3A35%3A39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3%2F3OWDUZx8ozgQ4%3D
+ HTTP/1.1\r\nx-ms-date: Thu, 25 Mar 2021 03:35:39 GMT\r\nx-ms-client-request-id:
+ 2b77aa75-8d1b-11eb-99ac-001a7dda7113\r\n\r\n\r\n--===============4684875350643819622==\r\nContent-Type:
+ application/http\r\nContent-Transfer-Encoding: binary\r\nContent-ID: 2\r\n\r\nDELETE
+ /acontainer956191d/blobc?se=2021-03-25T04%3A35%3A39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3%2F3OWDUZx8ozgQ4%3D
+ HTTP/1.1\r\nx-ms-date: Thu, 25 Mar 2021 03:35:39 GMT\r\nx-ms-client-request-id:
+ 2b77aa76-8d1b-11eb-a0c6-001a7dda7113\r\n\r\n\r\n--===============4684875350643819622==\r\nContent-Type:
+ application/http\r\nContent-Transfer-Encoding: binary\r\nContent-ID: 3\r\n\r\nDELETE
+ /acontainer956191d/blobd?se=2021-03-25T04%3A35%3A39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3%2F3OWDUZx8ozgQ4%3D
+ HTTP/1.1\r\nx-ms-delete-snapshots: include\r\nx-ms-lease-id: 2cfeefa2-5599-4cb8-b731-f79daee222e0\r\nx-ms-date:
+ Thu, 25 Mar 2021 03:35:39 GMT\r\nx-ms-client-request-id: 2b77aa77-8d1b-11eb-9485-001a7dda7113\r\n\r\n\r\n--===============4684875350643819622==--\r\n"
+ headers:
+ Content-Length:
+ - '1756'
+ Content-Type:
+ - multipart/mixed; boundary================4684875350643819622==
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:35:39 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: POST
+ uri: http://storagename.blob.core.windows.net/acontainer956191d?restype=container&comp=batch&se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D&timeout=3
+ response:
+ body:
+ string: "--batchresponse_aefa14db-4476-4358-942f-460322b6be92\r\nContent-Type:
+ application/http\r\nContent-ID: 0\r\n\r\nHTTP/1.1 202 Accepted\r\nx-ms-delete-type-permanent:
+ true\r\nx-ms-request-id: 13cc6f80-201e-0052-2127-212f1c1e5f75\r\nx-ms-version:
+ 2020-06-12\r\nx-ms-client-request-id: 2b77aa74-8d1b-11eb-bb19-001a7dda7113\r\nServer:
+ Windows-Azure-Blob/1.0\r\n\r\n--batchresponse_aefa14db-4476-4358-942f-460322b6be92\r\nContent-Type:
+ application/http\r\nContent-ID: 1\r\n\r\nHTTP/1.1 202 Accepted\r\nx-ms-delete-type-permanent:
+ true\r\nx-ms-request-id: 13cc6f80-201e-0052-2127-212f1c1e5f77\r\nx-ms-version:
+ 2020-06-12\r\nx-ms-client-request-id: 2b77aa75-8d1b-11eb-99ac-001a7dda7113\r\nServer:
+ Windows-Azure-Blob/1.0\r\n\r\n--batchresponse_aefa14db-4476-4358-942f-460322b6be92\r\nContent-Type:
+ application/http\r\nContent-ID: 2\r\n\r\nHTTP/1.1 202 Accepted\r\nx-ms-delete-type-permanent:
+ true\r\nx-ms-request-id: 13cc6f80-201e-0052-2127-212f1c1e5f78\r\nx-ms-version:
+ 2020-06-12\r\nx-ms-client-request-id: 2b77aa76-8d1b-11eb-a0c6-001a7dda7113\r\nServer:
+ Windows-Azure-Blob/1.0\r\n\r\n--batchresponse_aefa14db-4476-4358-942f-460322b6be92\r\nContent-Type:
+ application/http\r\nContent-ID: 3\r\n\r\nHTTP/1.1 202 Accepted\r\nx-ms-delete-type-permanent:
+ true\r\nx-ms-request-id: 13cc6f80-201e-0052-2127-212f1c1e5f79\r\nx-ms-version:
+ 2020-06-12\r\nx-ms-client-request-id: 2b77aa77-8d1b-11eb-9485-001a7dda7113\r\nServer:
+ Windows-Azure-Blob/1.0\r\n\r\n--batchresponse_aefa14db-4476-4358-942f-460322b6be92--"
+ headers:
+ content-type: multipart/mixed; boundary=batchresponse_aefa14db-4476-4358-942f-460322b6be92
+ date: Thu, 25 Mar 2021 03:35:39 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ x-ms-version: '2020-06-12'
+ status:
+ code: 202
+ message: Accepted
+ url: http://emilydevtest.blob.core.windows.net/acontainer956191d?restype=container&comp=batch&se=2021-03-25T04:35:39Z&sp=rwdl&sv=2020-06-12&ss=b&srt=co&sig=GuMhFpFfZ7a41YwwitRoiiNBFvak3/3OWDUZx8ozgQ4%3D&timeout=3
+version: 1
diff --git a/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_is_multiple_of_chunksize.yaml b/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_is_multiple_of_chunksize.yaml
new file mode 100644
index 000000000000..72cde814b4d3
--- /dev/null
+++ b/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_is_multiple_of_chunksize.yaml
@@ -0,0 +1,4259 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:33 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/acontainera995282d?restype=container
+ response:
+ body:
+ string: "\uFEFFContainerAlreadyExists
The
+ specified container already exists.\nRequestId:e44226a1-b01e-00a4-5128-215a52000000\nTime:2021-03-25T03:37:33.9090656Z"
+ headers:
+ content-length: '230'
+ content-type: application/xml
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-error-code: ContainerAlreadyExists
+ x-ms-version: '2020-06-12'
+ status:
+ code: 409
+ message: The specified container already exists.
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d?restype=container
+- request:
+ body: hello world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '38912'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64: qq6el7P81mY=
+ x-ms-request-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=0-1023
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chun
+ headers:
+ accept-ranges: bytes
+ content-length: '1024'
+ content-range: bytes 0-1023/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1024-1535
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 1024-1535/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:33 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1536-2047
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 1536-2047/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2048-2559
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 2048-2559/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2560-3071
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: 'thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 2560-3071/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3072-3583
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: 'chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 3072-3583/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3584-4095
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 3584-4095/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4096-4607
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: t chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 4096-4607/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4608-5119
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 4608-5119/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5120-5631
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wo
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 5120-5631/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5632-6143
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 5632-6143/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6144-6655
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 6144-6655/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6656-7167
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 6656-7167/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7168-7679
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 7168-7679/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7680-8191
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python sto
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 7680-8191/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8192-8703
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 8192-8703/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8704-9215
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 8704-9215/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9216-9727
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 9216-9727/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9728-10239
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 9728-10239/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10240-10751
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 10240-10751/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10752-11263
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 10752-11263/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11264-11775
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 11264-11775/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11776-12287
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 11776-12287/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12288-12799
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: 'thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 12288-12799/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12800-13311
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: 'chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 12800-13311/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13312-13823
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 13312-13823/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13824-14335
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: t chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 13824-14335/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14336-14847
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 14336-14847/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14848-15359
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wo
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 14848-15359/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15360-15871
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 15360-15871/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15872-16383
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 15872-16383/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16384-16895
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 16384-16895/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16896-17407
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 16896-17407/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17408-17919
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python sto
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 17408-17919/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17920-18431
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 17920-18431/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18432-18943
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 18432-18943/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18944-19455
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 18944-19455/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19456-19967
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 19456-19967/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19968-20479
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 19968-20479/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:33 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20480-20991
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 20480-20991/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20992-21503
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 20992-21503/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21504-22015
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 21504-22015/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22016-22527
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: 'thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 22016-22527/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22528-23039
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: 'chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 22528-23039/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23040-23551
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 23040-23551/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23552-24063
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: t chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 23552-24063/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24064-24575
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 24064-24575/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24576-25087
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wo
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 24576-25087/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25088-25599
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 25088-25599/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25600-26111
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 25600-26111/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26112-26623
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 26112-26623/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26624-27135
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 26624-27135/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27136-27647
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python sto
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 27136-27647/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27648-28159
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 27648-28159/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28160-28671
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 28160-28671/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28672-29183
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 28672-29183/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29184-29695
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 29184-29695/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29696-30207
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 29696-30207/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30208-30719
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 30208-30719/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30720-31231
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 30720-31231/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31232-31743
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 31232-31743/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31744-32255
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: 'thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 31744-32255/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32256-32767
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: 'chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 32256-32767/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32768-33279
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 32768-33279/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33280-33791
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: t chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 33280-33791/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33792-34303
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 33792-34303/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34304-34815
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wo
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 34304-34815/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34816-35327
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 34816-35327/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35328-35839
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 35328-35839/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:34 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35840-36351
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 35840-36351/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36352-36863
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 36352-36863/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36864-37375
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python sto
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 36864-37375/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37376-37887
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 37376-37887/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37888-38399
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 37888-38399/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F53B52D30"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:35 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38400-38911
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 38400-38911/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:34 GMT
+ etag: '"0x8D8EF3F53B52D30"'
+ last-modified: Thu, 25 Mar 2021 03:37:33 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:36:44 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainera995282d/testiteratechunksa995282d
+version: 1
diff --git a/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_not_multiple_of_chunksize.yaml b/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_not_multiple_of_chunksize.yaml
new file mode 100644
index 000000000000..fe414f719d21
--- /dev/null
+++ b/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_not_multiple_of_chunksize.yaml
@@ -0,0 +1,3539 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2?restype=container
+ response:
+ body:
+ string: "\uFEFFContainerAlreadyExists
The
+ specified container already exists.\nRequestId:ef1a77e7-201e-0099-8028-212c49000000\nTime:2021-03-25T03:37:41.0766541Z"
+ headers:
+ content-length: '230'
+ content-type: application/xml
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-error-code: ContainerAlreadyExists
+ x-ms-version: '2020-06-12'
+ status:
+ code: 409
+ message: The specified container already exists.
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2?restype=container
+- request:
+ body: hello world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '38912'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64: qq6el7P81mY=
+ x-ms-request-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=0-1023
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chun
+ headers:
+ accept-ranges: bytes
+ content-length: '1024'
+ content-range: bytes 0-1023/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1024-1689
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 1024-1689/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1690-2355
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 1690-2355/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2356-3021
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 2356-3021/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3022-3687
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 3022-3687/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3688-4353
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 3688-4353/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4354-5019
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 4354-5019/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5020-5685
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 5020-5685/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5686-6351
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 5686-6351/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6352-7017
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 6352-7017/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7018-7683
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 7018-7683/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7684-8349
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 7684-8349/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8350-9015
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 8350-9015/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9016-9681
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 9016-9681/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9682-10347
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 9682-10347/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10348-11013
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 10348-11013/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11014-11679
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 11014-11679/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11680-12345
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 11680-12345/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12346-13011
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 12346-13011/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13012-13677
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 13012-13677/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13678-14343
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 13678-14343/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14344-15009
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 14344-15009/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15010-15675
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 15010-15675/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15676-16341
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 15676-16341/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16342-17007
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 16342-17007/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17008-17673
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 17008-17673/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17674-18339
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 17674-18339/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18340-19005
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 18340-19005/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19006-19671
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 19006-19671/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:40 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19672-20337
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 19672-20337/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20338-21003
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 20338-21003/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21004-21669
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 21004-21669/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21670-22335
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 21670-22335/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22336-23001
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 22336-23001/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23002-23667
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 23002-23667/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23668-24333
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 23668-24333/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24334-24999
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 24334-24999/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25000-25665
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 25000-25665/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25666-26331
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chun
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 25666-26331/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26332-26997
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: kshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 26332-26997/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26998-27663
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: ' storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks'
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 26998-27663/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27664-28329
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python s
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 27664-28329/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28330-28995
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: torage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshe
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 28330-28995/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28996-29661
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: llo world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python sto
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 28996-29661/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29662-30327
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: rage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshell
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 29662-30327/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30328-30993
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: o world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stora
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 30328-30993/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30994-31659
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 'ge test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 30994-31659/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31660-32325
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 31660-32325/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32326-32991
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: ' test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello wo'
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 32326-32991/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32992-33657
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: rld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage t
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 32992-33657/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33658-34323
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: est chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello worl
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 33658-34323/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34324-34989
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: d python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage tes
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 34324-34989/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34990-35655
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 't chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 34990-35655/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35656-36321
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: 'python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test '
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 35656-36321/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36322-36987
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world py
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 36322-36987/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36988-37653
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: thon storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test ch
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 36988-37653/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37654-38319
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: unkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyth
+ headers:
+ accept-ranges: bytes
+ content-length: '666'
+ content-range: bytes 37654-38319/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F57FA710F"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:41 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38320-38911
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+ response:
+ body:
+ string: on storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges: bytes
+ content-length: '592'
+ content-range: bytes 38320-38911/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:41 GMT
+ etag: '"0x8D8EF3F57FA710F"'
+ last-modified: Thu, 25 Mar 2021 03:37:41 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:21:54 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainerd31928a2/testiteratechunksd31928a2
+version: 1
diff --git a/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_smallert_than_chunksize.yaml b/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_smallert_than_chunksize.yaml
new file mode 100644
index 000000000000..b8b6e59f3e55
--- /dev/null
+++ b/sdk/storage/azure-storage-blob/tests/recordings/test_container_async.test_download_blob_in_chunks_where_maxsinglegetsize_smallert_than_chunksize.yaml
@@ -0,0 +1,4343 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0?restype=container
+ response:
+ body:
+ string: "\uFEFFContainerAlreadyExists
The
+ specified container already exists.\nRequestId:4749bcae-b01e-0040-2728-2154cc000000\nTime:2021-03-25T03:37:47.6820703Z"
+ headers:
+ content-length: '230'
+ content-type: application/xml
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-error-code: ContainerAlreadyExists
+ x-ms-version: '2020-06-12'
+ status:
+ code: 409
+ message: The specified container already exists.
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0?restype=container
+- request:
+ body: hello world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '38912'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-blob-type:
+ - BlockBlob
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-version:
+ - '2020-06-12'
+ method: PUT
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ x-ms-content-crc64: qq6el7P81mY=
+ x-ms-request-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 201
+ message: Created
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=0-214
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storag
+ headers:
+ accept-ranges: bytes
+ content-length: '215'
+ content-range: bytes 0-214/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=215-726
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: e test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 215-726/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=727-1238
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stor'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 727-1238/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1239-1750
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: age test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshel
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 1239-1750/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=1751-2262
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: lo world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python st
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 1751-2262/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2263-2774
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: orage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunksh
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 2263-2774/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=2775-3286
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: 'ello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 2775-3286/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3287-3798
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunk
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 3287-3798/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=3799-4310
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: shello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pytho
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 3799-4310/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4311-4822
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: n storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chu
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 4311-4822/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=4823-5334
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: nkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyt
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 4823-5334/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5335-5846
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hon storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test c
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 5335-5846/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=5847-6358
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world p
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 5847-6358/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6359-6870
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ython storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 6359-6870/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=6871-7382
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 6871-7382/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7383-7894
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage te'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 7383-7894/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=7895-8406
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: st chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wor
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 7895-8406/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8407-8918
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: 'ld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 8407-8918/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=8919-9430
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello w
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 8919-9430/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9431-9942
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: orld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storag
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 9431-9942/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=9943-10454
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: e test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 9943-10454/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10455-10966
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stor'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 10455-10966/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=10967-11478
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: age test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshel
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 10967-11478/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11479-11990
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: lo world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python st
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 11479-11990/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:47 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=11991-12502
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: orage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunksh
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 11991-12502/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=12503-13014
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: 'ello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 12503-13014/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13015-13526
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunk
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 13015-13526/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=13527-14038
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: shello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pytho
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 13527-14038/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14039-14550
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: n storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chu
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 14039-14550/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:47 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=14551-15062
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: nkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyt
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 14551-15062/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15063-15574
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hon storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test c
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 15063-15574/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=15575-16086
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world p
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 15575-16086/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16087-16598
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ython storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 16087-16598/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=16599-17110
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 16599-17110/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17111-17622
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage te'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 17111-17622/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=17623-18134
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: st chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wor
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 17623-18134/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18135-18646
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: 'ld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 18135-18646/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=18647-19158
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello w
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 18647-19158/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19159-19670
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: orld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storag
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 19159-19670/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=19671-20182
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: e test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 19671-20182/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20183-20694
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stor'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 20183-20694/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=20695-21206
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: age test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshel
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 20695-21206/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21207-21718
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: lo world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python st
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 21207-21718/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=21719-22230
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: orage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunksh
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 21719-22230/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22231-22742
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: 'ello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 22231-22742/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=22743-23254
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunk
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 22743-23254/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23255-23766
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: shello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pytho
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 23255-23766/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=23767-24278
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: n storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chu
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 23767-24278/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24279-24790
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: nkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyt
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 24279-24790/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=24791-25302
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hon storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test c
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 24791-25302/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25303-25814
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world p
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 25303-25814/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=25815-26326
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ython storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 25815-26326/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26327-26838
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 26327-26838/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=26839-27350
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage te'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 26839-27350/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27351-27862
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: st chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wor
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 27351-27862/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=27863-28374
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: 'ld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 27863-28374/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28375-28886
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello w
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 28375-28886/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=28887-29398
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: orld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storag
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 28887-29398/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29399-29910
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: e test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 29399-29910/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=29911-30422
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python stor'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 29911-30422/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30423-30934
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: age test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshel
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 30423-30934/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=30935-31446
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: lo world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python st
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 30935-31446/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31447-31958
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: orage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunksh
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 31447-31958/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=31959-32470
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: 'ello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 31959-32470/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32471-32982
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunk
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 32471-32982/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=32983-33494
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: shello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world python storage test
+ chunkshello world python storage test chunkshello world pytho
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 32983-33494/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=33495-34006
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: n storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chu
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 33495-34006/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34007-34518
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: nkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world pyt
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 34007-34518/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=34519-35030
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hon storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test chunkshello world
+ python storage test chunkshello world python storage test c
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 34519-35030/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35031-35542
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: hunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world p
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 35031-35542/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=35543-36054
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ython storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 35543-36054/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36055-36566
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 36055-36566/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=36567-37078
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: ' python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage te'
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 36567-37078/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37079-37590
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: st chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello world python storage
+ test chunkshello world python storage test chunkshello wor
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 37079-37590/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=37591-38102
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: 'ld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage '
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 37591-38102/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38103-38614
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello world python
+ storage test chunkshello world python storage test chunkshello w
+ headers:
+ accept-ranges: bytes
+ content-length: '512'
+ content-range: bytes 38103-38614/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ If-Match:
+ - '"0x8D8EF3F5BEA5477"'
+ User-Agent:
+ - azsdk-python-storage-blob/12.8.0b1 Python/3.7.3 (Windows-10-10.0.19041-SP0)
+ x-ms-date:
+ - Thu, 25 Mar 2021 03:37:48 GMT
+ x-ms-encryption-algorithm:
+ - AES256
+ x-ms-range:
+ - bytes=38615-38911
+ x-ms-version:
+ - '2020-06-12'
+ method: GET
+ uri: https://storagename.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+ response:
+ body:
+ string: orld python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunkshello
+ world python storage test chunkshello world python storage test chunks
+ headers:
+ accept-ranges: bytes
+ content-length: '297'
+ content-range: bytes 38615-38911/38912
+ content-type: application/octet-stream
+ date: Thu, 25 Mar 2021 03:37:48 GMT
+ etag: '"0x8D8EF3F5BEA5477"'
+ last-modified: Thu, 25 Mar 2021 03:37:47 GMT
+ server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
+ vary: Origin
+ x-ms-blob-content-md5: vy0YNCvfM9WjHsBwSB71jw==
+ x-ms-blob-type: BlockBlob
+ x-ms-creation-time: Thu, 25 Mar 2021 03:01:12 GMT
+ x-ms-lease-state: available
+ x-ms-lease-status: unlocked
+ x-ms-server-encrypted: 'true'
+ x-ms-version: '2020-06-12'
+ status:
+ code: 206
+ message: Partial Content
+ url: https://emilydevtest.blob.core.windows.net/acontainer812127c0/testiteratechunks812127c0
+version: 1
diff --git a/sdk/storage/azure-storage-blob/tests/test_container.py b/sdk/storage/azure-storage-blob/tests/test_container.py
index be6ee50efc4c..4608f7a7bc17 100644
--- a/sdk/storage/azure-storage-blob/tests/test_container.py
+++ b/sdk/storage/azure-storage-blob/tests/test_container.py
@@ -1836,3 +1836,78 @@ def test_download_blob(self, resource_group, location, storage_account, storage_
downloaded = container.download_blob(blob_name)
assert downloaded.readall() == data
+
+ @GlobalStorageAccountPreparer()
+ def test_download_blob_in_chunks_where_maxsinglegetsize_is_multiple_of_chunksize(self, resource_group, location, storage_account, storage_account_key):
+ bsc = BlobServiceClient(self.account_url(storage_account, "blob"), storage_account_key,
+ max_single_get_size=1024,
+ max_chunk_get_size=512)
+ container = self._create_container(bsc)
+ data = b'hello world python storage test chunks' * 1024
+ blob_name = self.get_resource_name("testiteratechunks")
+
+ container.get_blob_client(blob_name).upload_blob(data, overwrite=True)
+
+ # Act
+ downloader= container.download_blob(blob_name)
+ downloaded_data = b''
+ chunk_size_list = list()
+ for chunk in downloader.chunks():
+ chunk_size_list.append(len(chunk))
+ downloaded_data += chunk
+
+ # the last chunk is not guaranteed to be 666
+ for i in range(0, len(chunk_size_list) - 1):
+ self.assertEqual(chunk_size_list[i], 512)
+
+ self.assertEqual(downloaded_data, data)
+
+ @GlobalStorageAccountPreparer()
+ def test_download_blob_in_chunks_where_maxsinglegetsize_not_multiple_of_chunksize(self, resource_group, location, storage_account, storage_account_key):
+ bsc = BlobServiceClient(self.account_url(storage_account, "blob"), storage_account_key,
+ max_single_get_size=1024,
+ max_chunk_get_size=666)
+ container = self._create_container(bsc)
+ data = b'hello world python storage test chunks' * 1024
+ blob_name = self.get_resource_name("testiteratechunks")
+
+ container.get_blob_client(blob_name).upload_blob(data, overwrite=True)
+
+ # Act
+ downloader= container.download_blob(blob_name)
+ downloaded_data = b''
+ chunk_size_list = list()
+ for chunk in downloader.chunks():
+ chunk_size_list.append(len(chunk))
+ downloaded_data += chunk
+
+ # the last chunk is not guaranteed to be 666
+ for i in range(0, len(chunk_size_list) - 1):
+ self.assertEqual(chunk_size_list[i], 666)
+
+ self.assertEqual(downloaded_data, data)
+
+ @GlobalStorageAccountPreparer()
+ def test_download_blob_in_chunks_where_maxsinglegetsize_smallert_than_chunksize(self, resource_group, location, storage_account, storage_account_key):
+ bsc = BlobServiceClient(self.account_url(storage_account, "blob"), storage_account_key,
+ max_single_get_size=215,
+ max_chunk_get_size=512)
+ container = self._create_container(bsc)
+ data = b'hello world python storage test chunks' * 1024
+ blob_name = self.get_resource_name("testiteratechunks")
+
+ container.get_blob_client(blob_name).upload_blob(data, overwrite=True)
+
+ # Act
+ downloader= container.download_blob(blob_name)
+ downloaded_data = b''
+ chunk_size_list = list()
+ for chunk in downloader.chunks():
+ chunk_size_list.append(len(chunk))
+ downloaded_data += chunk
+
+ # the last chunk is not guaranteed to be 666
+ for i in range(0, len(chunk_size_list) - 1):
+ self.assertEqual(chunk_size_list[i], 512)
+
+ self.assertEqual(downloaded_data, data)
diff --git a/sdk/storage/azure-storage-blob/tests/test_container_async.py b/sdk/storage/azure-storage-blob/tests/test_container_async.py
index 273b76b8a9d4..c6d60e99ddd9 100644
--- a/sdk/storage/azure-storage-blob/tests/test_container_async.py
+++ b/sdk/storage/azure-storage-blob/tests/test_container_async.py
@@ -1813,7 +1813,7 @@ async def test_download_blob_async(self, resource_group, location, storage_accou
bsc = BlobServiceClient(self.account_url(storage_account, "blob"), storage_account_key, transport=AiohttpTestTransport())
container = await self._create_container(bsc)
data = b'hello world'
- blob_name = self.get_resource_name("blob")
+ blob_name = self.get_resource_name("blob")
blob = container.get_blob_client(blob_name)
await blob.upload_blob(data)
@@ -1822,4 +1822,83 @@ async def test_download_blob_async(self, resource_group, location, storage_accou
downloaded = await container.download_blob(blob_name)
raw = await downloaded.readall()
assert raw == data
+
+ @GlobalStorageAccountPreparer()
+ async def test_download_blob_in_chunks_where_maxsinglegetsize_is_multiple_of_chunksize(self, resource_group, location, storage_account, storage_account_key):
+ bsc = BlobServiceClient(self.account_url(storage_account, "blob"), storage_account_key,
+ transport=AiohttpTestTransport(),
+ max_single_get_size=1024,
+ max_chunk_get_size=512)
+ container = await self._create_container(bsc)
+ data = b'hello world python storage test chunks' * 1024
+ blob_name = self.get_resource_name("testiteratechunks")
+
+ await container.get_blob_client(blob_name).upload_blob(data, overwrite=True)
+
+ # Act
+ downloader = await container.download_blob(blob_name)
+ downloaded_data = b''
+ chunk_size_list = list()
+ async for chunk in downloader.chunks():
+ chunk_size_list.append(len(chunk))
+ downloaded_data += chunk
+
+ # the last chunk is not guaranteed to be 666
+ for i in range(0, len(chunk_size_list) - 1):
+ self.assertEqual(chunk_size_list[i], 512)
+
+ self.assertEqual(downloaded_data, data)
+
+ @GlobalStorageAccountPreparer()
+ async def test_download_blob_in_chunks_where_maxsinglegetsize_not_multiple_of_chunksize(self, resource_group, location, storage_account, storage_account_key):
+ bsc = BlobServiceClient(self.account_url(storage_account, "blob"), storage_account_key,
+ transport=AiohttpTestTransport(),
+ max_single_get_size=1024,
+ max_chunk_get_size=666)
+ container = await self._create_container(bsc)
+ data = b'hello world python storage test chunks' * 1024
+ blob_name = self.get_resource_name("testiteratechunks")
+
+ await container.get_blob_client(blob_name).upload_blob(data, overwrite=True)
+
+ # Act
+ downloader= await container.download_blob(blob_name)
+ downloaded_data = b''
+ chunk_size_list = list()
+ async for chunk in downloader.chunks():
+ chunk_size_list.append(len(chunk))
+ downloaded_data += chunk
+
+ # the last chunk is not guaranteed to be 666
+ for i in range(0, len(chunk_size_list) - 1):
+ self.assertEqual(chunk_size_list[i], 666)
+
+ self.assertEqual(downloaded_data, data)
+
+ @GlobalStorageAccountPreparer()
+ async def test_download_blob_in_chunks_where_maxsinglegetsize_smallert_than_chunksize(self, resource_group, location, storage_account, storage_account_key):
+ bsc = BlobServiceClient(self.account_url(storage_account, "blob"), storage_account_key,
+ transport=AiohttpTestTransport(),
+ max_single_get_size=215,
+ max_chunk_get_size=512)
+ container = await self._create_container(bsc)
+ data = b'hello world python storage test chunks' * 1024
+ blob_name = self.get_resource_name("testiteratechunks")
+
+ blob_client = container.get_blob_client(blob_name)
+ await blob_client.upload_blob(data, overwrite=True)
+
+ downloader = await container.download_blob(blob_name)
+ downloaded_data = b''
+ chunk_size_list = list()
+ async for chunk in downloader.chunks():
+ chunk_size_list.append(len(chunk))
+ downloaded_data += chunk
+
+ # the last chunk is not guaranteed to be 666
+ for i in range(0, len(chunk_size_list) - 1):
+ self.assertEqual(chunk_size_list[i], 512)
+
+ self.assertEqual(downloaded_data, data)
+
#------------------------------------------------------------------------------
diff --git a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_data_lake_file_client.py b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_data_lake_file_client.py
index c88f655abd15..e15842dc3b6d 100644
--- a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_data_lake_file_client.py
+++ b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_data_lake_file_client.py
@@ -557,7 +557,7 @@ def download_file(self, offset=None, length=None, **kwargs):
# type: (Optional[int], Optional[int], Any) -> StorageStreamDownloader
"""Downloads a file to the StorageStreamDownloader. The readall() method must
be used to read all the content, or readinto() must be used to download the file into
- a stream.
+ a stream. Using chunks() returns an iterator which allows the user to iterate over the content in chunks.
:param int offset:
Start of byte range to use for downloading a section of the file.
diff --git a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_download.py b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_download.py
index e4efd8c23dba..61716d3cdb50 100644
--- a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_download.py
+++ b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/_download.py
@@ -3,6 +3,8 @@
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
+from typing import Iterator
+
from ._deserialize import from_blob_properties
@@ -29,6 +31,11 @@ def __len__(self):
return self.size
def chunks(self):
+ # type: () -> Iterator[bytes]
+ """Iterate over chunks in the download stream.
+
+ :rtype: Iterator[bytes]
+ """
return self._downloader.chunks()
def readall(self):
diff --git a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/aio/_data_lake_file_client_async.py b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/aio/_data_lake_file_client_async.py
index 4f3bec3397b5..df25ecf51f98 100644
--- a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/aio/_data_lake_file_client_async.py
+++ b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/aio/_data_lake_file_client_async.py
@@ -431,7 +431,7 @@ async def download_file(self, offset=None, length=None, **kwargs):
# type: (Optional[int], Optional[int], Any) -> StorageStreamDownloader
"""Downloads a file to the StorageStreamDownloader. The readall() method must
be used to read all the content, or readinto() must be used to download the file into
- a stream.
+ a stream. Using chunks() returns an async iterator which allows the user to iterate over the content in chunks.
:param int offset:
Start of byte range to use for downloading a section of the file.
diff --git a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/aio/_download_async.py b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/aio/_download_async.py
index ea27438b19da..5685478d3e2b 100644
--- a/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/aio/_download_async.py
+++ b/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake/aio/_download_async.py
@@ -3,6 +3,8 @@
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
+from typing import AsyncIterator
+
from .._deserialize import from_blob_properties
@@ -29,6 +31,11 @@ def __len__(self):
return self.size
def chunks(self):
+ # type: () -> AsyncIterator[bytes]
+ """Iterate over chunks in the download stream.
+
+ :rtype: AsyncIterator[bytes]
+ """
return self._downloader.chunks()
async def readall(self):
diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_download.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_download.py
index d32ed2b1c3c4..8f47bee6e165 100644
--- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_download.py
+++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_download.py
@@ -8,6 +8,7 @@
import threading
import warnings
from io import BytesIO
+from typing import Iterator
from azure.core.exceptions import HttpResponseError
from azure.core.tracing.common import with_current_context
@@ -171,8 +172,9 @@ def _download_chunk(self, chunk_start, chunk_end):
class _ChunkIterator(object):
"""Async iterator for chunks in blob download stream."""
- def __init__(self, size, content, downloader):
+ def __init__(self, size, content, downloader, chunk_size):
self.size = size
+ self._chunk_size = chunk_size
self._current_content = content
self._iter_downloader = downloader
self._iter_chunks = None
@@ -189,21 +191,37 @@ def __next__(self):
if self._complete:
raise StopIteration("Download complete")
if not self._iter_downloader:
- # If no iterator was supplied, the download completed with
- # the initial GET, so we just return that data
+ # cut the data obtained from initial GET into chunks
+ if len(self._current_content) > self._chunk_size:
+ return self._get_chunk_data()
self._complete = True
return self._current_content
if not self._iter_chunks:
self._iter_chunks = self._iter_downloader.get_chunk_offsets()
- else:
+
+ # initial GET result still has more than _chunk_size bytes of data
+ if len(self._current_content) >= self._chunk_size:
+ return self._get_chunk_data()
+
+ try:
chunk = next(self._iter_chunks)
- self._current_content = self._iter_downloader.yield_chunk(chunk)
+ self._current_content += self._iter_downloader.yield_chunk(chunk)
+ except StopIteration as e:
+ self._complete = True
+ if self._current_content:
+ return self._current_content
+ raise e
- return self._current_content
+ return self._get_chunk_data()
next = __next__ # Python 2 compatibility.
+ def _get_chunk_data(self):
+ chunk_data = self._current_content[: self._chunk_size]
+ self._current_content = self._current_content[self._chunk_size:]
+ return chunk_data
+
class StorageStreamDownloader(object): # pylint: disable=too-many-instance-attributes
"""A streaming object to download from Azure Storage.
@@ -371,6 +389,11 @@ def _initial_request(self):
return response
def chunks(self):
+ # type: () -> Iterator[bytes]
+ """Iterate over chunks in the download stream.
+
+ :rtype: Iterator[bytes]
+ """
if self.size == 0 or self._download_complete:
iter_downloader = None
else:
@@ -395,7 +418,8 @@ def chunks(self):
return _ChunkIterator(
size=self.size,
content=self._current_content,
- downloader=iter_downloader)
+ downloader=iter_downloader,
+ chunk_size=self._config.max_chunk_get_size)
def readall(self):
"""Download the contents of this file.
diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_file_client.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_file_client.py
index acd4c99dd3eb..6ac6dc09fdcf 100644
--- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_file_client.py
+++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_file_client.py
@@ -687,8 +687,10 @@ def download_file(
length=None, # type: Optional[int]
**kwargs
):
- # type: (...) -> Iterable[bytes]
- """Downloads a file to a stream with automatic chunking.
+ # type: (Optional[int], Optional[int], Any) -> StorageStreamDownloader
+ """Downloads a file to the StorageStreamDownloader. The readall() method must
+ be used to read all the content or readinto() must be used to download the file into
+ a stream. Using chunks() returns an iterator which allows the user to iterate over the content in chunks.
:param int offset:
Start of byte range to use for downloading a section of the file.
@@ -716,7 +718,8 @@ def download_file(
:paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str
:keyword int timeout:
The timeout parameter is expressed in seconds.
- :returns: A iterable data generator (stream)
+ :returns: A streaming object (StorageStreamDownloader)
+ :rtype: ~azure.storage.fileshare.StorageStreamDownloader
.. admonition:: Example:
diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_download_async.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_download_async.py
index c0db16d6f7a2..b046fc059803 100644
--- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_download_async.py
+++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_download_async.py
@@ -10,6 +10,7 @@
from itertools import islice
import warnings
+from typing import AsyncIterator
from azure.core.exceptions import HttpResponseError
from .._shared.encryption import decrypt_blob
from .._shared.request_handlers import validate_and_format_range_headers
@@ -101,10 +102,11 @@ async def _download_chunk(self, chunk_start, chunk_end):
class _AsyncChunkIterator(object):
- """Async iterator for chunks in file download stream."""
+ """Async iterator for chunks in blob download stream."""
- def __init__(self, size, content, downloader):
+ def __init__(self, size, content, downloader, chunk_size):
self.size = size
+ self._chunk_size = chunk_size
self._current_content = content
self._iter_downloader = downloader
self._iter_chunks = None
@@ -124,21 +126,35 @@ async def __anext__(self):
if self._complete:
raise StopAsyncIteration("Download complete")
if not self._iter_downloader:
- # If no iterator was supplied, the download completed with
- # the initial GET, so we just return that data
+ # cut the data obtained from initial GET into chunks
+ if len(self._current_content) > self._chunk_size:
+ return self._get_chunk_data()
self._complete = True
return self._current_content
if not self._iter_chunks:
self._iter_chunks = self._iter_downloader.get_chunk_offsets()
- else:
- try:
- chunk = next(self._iter_chunks)
- except StopIteration:
- raise StopAsyncIteration("Download complete")
- self._current_content = await self._iter_downloader.yield_chunk(chunk)
- return self._current_content
+ # initial GET result still has more than _chunk_size bytes of data
+ if len(self._current_content) >= self._chunk_size:
+ return self._get_chunk_data()
+
+ try:
+ chunk = next(self._iter_chunks)
+ self._current_content += await self._iter_downloader.yield_chunk(chunk)
+ except StopIteration:
+ self._complete = True
+ # it's likely that there some data left in self._current_content
+ if self._current_content:
+ return self._current_content
+ raise StopAsyncIteration("Download complete")
+
+ return self._get_chunk_data()
+
+ def _get_chunk_data(self):
+ chunk_data = self._current_content[: self._chunk_size]
+ self._current_content = self._current_content[self._chunk_size:]
+ return chunk_data
class StorageStreamDownloader(object): # pylint: disable=too-many-instance-attributes
@@ -304,9 +320,10 @@ async def _initial_request(self):
return response
def chunks(self):
+ # type: () -> AsyncIterator[bytes]
"""Iterate over chunks in the download stream.
- :rtype: Iterable[bytes]
+ :rtype: AsyncIterator[bytes]
"""
if self.size == 0 or self._download_complete:
iter_downloader = None
@@ -331,7 +348,9 @@ def chunks(self):
return _AsyncChunkIterator(
size=self.size,
content=self._current_content,
- downloader=iter_downloader)
+ downloader=iter_downloader,
+ chunk_size=self._config.max_chunk_get_size
+ )
async def readall(self):
"""Download the contents of this file.
diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_file_client_async.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_file_client_async.py
index ef8e770f4b06..6c21d22eccc5 100644
--- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_file_client_async.py
+++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_file_client_async.py
@@ -561,8 +561,10 @@ async def download_file(
length=None, # type: Optional[int]
**kwargs
):
- # type: (...) -> Iterable[bytes]
- """Downloads a file to a stream with automatic chunking.
+ # type: (Optional[int], Optional[int], Any) -> StorageStreamDownloader
+ """Downloads a file to the StorageStreamDownloader. The readall() method must
+ be used to read all the content or readinto() must be used to download the file into
+ a stream. Using chunks() returns an async iterator which allows the user to iterate over the content in chunks.
:param int offset:
Start of byte range to use for downloading a section of the file.
@@ -590,7 +592,8 @@ async def download_file(
:paramtype lease: ~azure.storage.fileshare.aio.ShareLeaseClient or str
:keyword int timeout:
The timeout parameter is expressed in seconds.
- :returns: A iterable data generator (stream)
+ :returns: A streaming object (StorageStreamDownloader)
+ :rtype: ~azure.storage.fileshare.aio.StorageStreamDownloader
.. admonition:: Example:
diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_get_file.test_get_file_with_iter.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_get_file.test_get_file_with_iter.yaml
index 2ea676b9f154..e8f076055283 100644
--- a/sdk/storage/azure-storage-file-share/tests/recordings/test_get_file.test_get_file_with_iter.yaml
+++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_get_file.test_get_file_with_iter.yaml
@@ -3,7 +3,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/xml
Accept-Encoding:
- gzip, deflate
Connection:
@@ -11,11 +11,11 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:42 GMT
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: PUT
uri: https://storagename.file.core.windows.net/utshare1dfc0f19?restype=share
response:
@@ -25,15 +25,15 @@ interactions:
content-length:
- '0'
date:
- - Wed, 15 Jan 2020 23:52:25 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
etag:
- - '"0x8D79A15F94569FF"'
+ - '"0x8D8EFE7D337FAAE"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 201
message: Created
@@ -41,7 +41,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/xml
Accept-Encoding:
- gzip, deflate
Connection:
@@ -49,9 +49,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
x-ms-file-attributes:
- none
x-ms-file-creation-time:
@@ -61,7 +61,7 @@ interactions:
x-ms-file-permission:
- inherit
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: PUT
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19?restype=directory
response:
@@ -71,31 +71,31 @@ interactions:
content-length:
- '0'
date:
- - Wed, 15 Jan 2020 23:52:25 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
etag:
- - '"0x8D79A15F953EEE4"'
+ - '"0x8D8EFE7D3A58FA8"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
x-ms-file-attributes:
- Directory
x-ms-file-change-time:
- - '2020-01-15T23:52:26.4232676Z'
+ - '2021-03-25T23:43:44.0251816Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.4232676Z'
+ - '2021-03-25T23:43:44.0251816Z'
x-ms-file-id:
- '13835128424026341376'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.4232676Z'
+ - '2021-03-25T23:43:44.0251816Z'
x-ms-file-parent-id:
- '0'
x-ms-file-permission-key:
- - 10306785916763839378*16704459309046467611
+ - 17913408918638655783*10394889115079208622
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 201
message: Created
@@ -103,7 +103,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/xml
Accept-Encoding:
- gzip, deflate
Connection:
@@ -111,11 +111,11 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-content-length:
- '65541'
x-ms-date:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
x-ms-file-attributes:
- none
x-ms-file-creation-time:
@@ -127,7 +127,7 @@ interactions:
x-ms-type:
- file
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: PUT
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -137,31 +137,31 @@ interactions:
content-length:
- '0'
date:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
etag:
- - '"0x8D79A15F98EB80F"'
+ - '"0x8D8EFE7D3CD93C9"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 201
message: Created
@@ -169,7 +169,7 @@ interactions:
body: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
Accept:
- - '*/*'
+ - application/xml
Accept-Encoding:
- gzip, deflate
Connection:
@@ -179,13 +179,13 @@ interactions:
Content-Type:
- application/octet-stream
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
x-ms-range:
- bytes=0-65540
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
x-ms-write:
- update
method: PUT
@@ -199,17 +199,17 @@ interactions:
content-md5:
- uKHXKnfsrxcvqdhaQZ9EcQ==
date:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-server-encrypted:
- 'true'
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 201
message: Created
@@ -223,13 +223,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
x-ms-range:
- bytes=0-32767
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -245,11 +245,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -257,17 +257,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -277,7 +277,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -291,13 +291,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
x-ms-range:
- bytes=32768-36863
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -313,11 +313,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -325,17 +325,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -345,7 +345,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -359,13 +359,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
x-ms-range:
- bytes=36864-40959
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -381,11 +381,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -393,17 +393,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -413,7 +413,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -427,13 +427,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
x-ms-range:
- bytes=40960-45055
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -449,11 +449,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -461,17 +461,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -481,7 +481,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -495,13 +495,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
x-ms-range:
- bytes=45056-49151
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -517,11 +517,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:43 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -529,17 +529,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -549,7 +549,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -563,13 +563,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
x-ms-range:
- bytes=49152-53247
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -585,11 +585,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -597,17 +597,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -617,7 +617,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -631,13 +631,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:28 GMT
+ - Thu, 25 Mar 2021 23:43:45 GMT
x-ms-range:
- bytes=53248-57343
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -653,11 +653,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -665,17 +665,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -685,7 +685,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -699,13 +699,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:28 GMT
+ - Thu, 25 Mar 2021 23:43:45 GMT
x-ms-range:
- bytes=57344-61439
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -721,11 +721,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:27 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -733,17 +733,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -753,7 +753,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -767,13 +767,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:28 GMT
+ - Thu, 25 Mar 2021 23:43:45 GMT
x-ms-range:
- bytes=61440-65535
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -789,11 +789,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:28 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -801,17 +801,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -821,7 +821,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
@@ -835,13 +835,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:52:28 GMT
+ - Thu, 25 Mar 2021 23:43:45 GMT
x-ms-range:
- bytes=65536-65540
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utshare1dfc0f19/utdir1dfc0f19/bytefile1dfc0f19
response:
@@ -857,11 +857,11 @@ interactions:
content-type:
- application/octet-stream
date:
- - Wed, 15 Jan 2020 23:52:28 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
etag:
- - '"0x8D79A15F9AAF779"'
+ - '"0x8D8EFE7D3DEFD2E"'
last-modified:
- - Wed, 15 Jan 2020 23:52:26 GMT
+ - Thu, 25 Mar 2021 23:43:44 GMT
server:
- Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary:
@@ -869,17 +869,17 @@ interactions:
x-ms-file-attributes:
- Archive
x-ms-file-change-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-creation-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-id:
- '13835093239654252544'
x-ms-file-last-write-time:
- - '2020-01-15T23:52:26.8085263Z'
+ - '2021-03-25T23:43:44.2874313Z'
x-ms-file-parent-id:
- '13835128424026341376'
x-ms-file-permission-key:
- - 5724850820508509333*16704459309046467611
+ - 4099112195243312672*10394889115079208622
x-ms-lease-state:
- available
x-ms-lease-status:
@@ -889,7 +889,7 @@ interactions:
x-ms-type:
- File
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
status:
code: 206
message: Partial Content
diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_get_file_async.test_get_file_with_iter_async.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_get_file_async.test_get_file_with_iter_async.yaml
index 712c2928b7ac..e726c5221d03 100644
--- a/sdk/storage/azure-storage-file-share/tests/recordings/test_get_file_async.test_get_file_with_iter_async.yaml
+++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_get_file_async.test_get_file_with_iter_async.yaml
@@ -2,42 +2,39 @@ interactions:
- request:
body: null
headers:
+ Accept:
+ - application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:22 GMT
+ - Thu, 25 Mar 2021 23:45:25 GMT
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: PUT
uri: https://storagename.file.core.windows.net/utsharef49c1413?restype=share
response:
body:
string: ''
headers:
- Content-Length: '0'
- date: Wed, 15 Jan 2020 23:53:22 GMT
- etag: '"0x8D79A161B14959C"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ content-length: '0'
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810AFEE80"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 201
message: Created
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413
- - restype=share
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413?restype=share
- request:
body: null
headers:
+ Accept:
+ - application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:26 GMT
x-ms-file-attributes:
- none
x-ms-file-creation-time:
@@ -47,47 +44,42 @@ interactions:
x-ms-file-permission:
- inherit
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: PUT
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413?restype=directory
response:
body:
string: ''
headers:
- Content-Length: '0'
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B1EC959"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ content-length: '0'
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810B5166B"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
x-ms-file-attributes: Directory
- x-ms-file-change-time: '2020-01-15T23:53:23.1175001Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.1175001Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.4679531Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.4679531Z'
x-ms-file-id: '13835128424026341376'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.1175001Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.4679531Z'
x-ms-file-parent-id: '0'
- x-ms-file-permission-key: 10306785916763839378*16704459309046467611
+ x-ms-file-permission-key: 17913408918638655783*10394889115079208622
x-ms-request-server-encrypted: 'true'
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 201
message: Created
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413
- - restype=directory
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413?restype=directory
- request:
body: null
headers:
+ Accept:
+ - application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-content-length:
- '65541'
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:26 GMT
x-ms-file-attributes:
- none
x-ms-file-creation-time:
@@ -99,53 +91,48 @@ interactions:
x-ms-type:
- file
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: PUT
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
body:
string: ''
headers:
- Content-Length: '0'
- date: Wed, 15 Jan 2020 23:53:22 GMT
- etag: '"0x8D79A161B3B56F5"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ content-length: '0'
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810C4354C"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-request-server-encrypted: 'true'
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 201
message: Created
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
+ Accept:
+ - application/xml
Content-Length:
- '65541'
Content-Type:
- application/octet-stream
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:26 GMT
x-ms-range:
- bytes=0-65540
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
x-ms-write:
- update
method: PUT
@@ -154,38 +141,31 @@ interactions:
body:
string: ''
headers:
- Content-Length: '0'
+ content-length: '0'
content-md5: uKHXKnfsrxcvqdhaQZ9EcQ==
- date: Wed, 15 Jan 2020 23:53:22 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-server-encrypted: 'true'
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 201
message: Created
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - comp=range
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413?comp=range
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:26 GMT
x-ms-range:
- bytes=0-32767
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -193,50 +173,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '32768'
- Content-Range: bytes 0-32767/65541
+ content-length: '32768'
+ content-range: bytes 0-32767/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=32768-36863
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -244,50 +217,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '4096'
- Content-Range: bytes 32768-36863/65541
+ content-length: '4096'
+ content-range: bytes 32768-36863/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=36864-40959
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -295,50 +261,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '4096'
- Content-Range: bytes 36864-40959/65541
+ content-length: '4096'
+ content-range: bytes 36864-40959/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=40960-45055
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -346,50 +305,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '4096'
- Content-Range: bytes 40960-45055/65541
+ content-length: '4096'
+ content-range: bytes 40960-45055/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=45056-49151
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -397,50 +349,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '4096'
- Content-Range: bytes 45056-49151/65541
+ content-length: '4096'
+ content-range: bytes 45056-49151/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=49152-53247
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -448,50 +393,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '4096'
- Content-Range: bytes 49152-53247/65541
+ content-length: '4096'
+ content-range: bytes 49152-53247/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=53248-57343
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -499,50 +437,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '4096'
- Content-Range: bytes 53248-57343/65541
+ content-length: '4096'
+ content-range: bytes 53248-57343/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:23 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=57344-61439
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -550,50 +481,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '4096'
- Content-Range: bytes 57344-61439/65541
+ content-length: '4096'
+ content-range: bytes 57344-61439/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:24 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=61440-65535
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -601,50 +525,43 @@ interactions:
string: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
headers:
accept-ranges: bytes
- Content-Length: '4096'
- Content-Range: bytes 61440-65535/65541
+ content-length: '4096'
+ content-range: bytes 61440-65535/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0)
+ - azsdk-python-storage-file-share/12.4.2 Python/3.7.3 (Windows-10-10.0.19041-SP0)
x-ms-date:
- - Wed, 15 Jan 2020 23:53:24 GMT
+ - Thu, 25 Mar 2021 23:45:27 GMT
x-ms-range:
- bytes=65536-65540
x-ms-version:
- - '2019-02-02'
+ - '2020-04-08'
method: GET
uri: https://storagename.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
response:
@@ -652,35 +569,28 @@ interactions:
string: aaaaa
headers:
accept-ranges: bytes
- Content-Length: '5'
- Content-Range: bytes 65536-65540/65541
+ content-length: '5'
+ content-range: bytes 65536-65540/65541
content-type: application/octet-stream
- date: Wed, 15 Jan 2020 23:53:23 GMT
- etag: '"0x8D79A161B4F096B"'
- last-modified: Wed, 15 Jan 2020 23:53:23 GMT
+ date: Thu, 25 Mar 2021 23:45:26 GMT
+ etag: '"0x8D8EFE810CE22C9"'
+ last-modified: Thu, 25 Mar 2021 23:45:26 GMT
server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0
vary: Origin
x-ms-file-attributes: Archive
- x-ms-file-change-time: '2020-01-15T23:53:23.3046261Z'
- x-ms-file-creation-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-change-time: '2021-03-25T23:45:26.5670476Z'
+ x-ms-file-creation-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-id: '13835093239654252544'
- x-ms-file-last-write-time: '2020-01-15T23:53:23.3046261Z'
+ x-ms-file-last-write-time: '2021-03-25T23:45:26.5670476Z'
x-ms-file-parent-id: '13835128424026341376'
- x-ms-file-permission-key: 5724850820508509333*16704459309046467611
+ x-ms-file-permission-key: 4099112195243312672*10394889115079208622
x-ms-lease-state: available
x-ms-lease-status: unlocked
x-ms-server-encrypted: 'true'
x-ms-type: File
- x-ms-version: '2019-02-02'
+ x-ms-version: '2020-04-08'
status:
code: 206
message: Partial Content
- url: !!python/object/new:yarl.URL
- state: !!python/tuple
- - !!python/object/new:urllib.parse.SplitResult
- - https
- - pyacrstorage43x4qoc3y4bx.file.core.windows.net
- - /utsharef49c1413/utdirf49c1413/bytefilef49c1413
- - ''
- - ''
+ url: https://emilydevtest.file.core.windows.net/utsharef49c1413/utdirf49c1413/bytefilef49c1413
version: 1
diff --git a/sdk/storage/azure-storage-file-share/tests/test_get_file.py b/sdk/storage/azure-storage-file-share/tests/test_get_file.py
index e4c005359943..80bde38e0882 100644
--- a/sdk/storage/azure-storage-file-share/tests/test_get_file.py
+++ b/sdk/storage/azure-storage-file-share/tests/test_get_file.py
@@ -287,9 +287,14 @@ def test_get_file_with_iter(self, resource_group, location, storage_account, sto
max_chunk_get_size=self.MAX_CHUNK_GET_SIZE)
# Act
+ chunk_size_list = list()
with open(FILE_PATH, 'wb') as stream:
for data in file_client.download_file().chunks():
+ chunk_size_list.append(len(data))
stream.write(data)
+
+ for i in range(0, len(chunk_size_list) - 1):
+ self.assertEqual(chunk_size_list[i], self.MAX_CHUNK_GET_SIZE)
# Assert
with open(FILE_PATH, 'rb') as stream:
actual = stream.read()
diff --git a/sdk/storage/azure-storage-file-share/tests/test_get_file_async.py b/sdk/storage/azure-storage-file-share/tests/test_get_file_async.py
index 4c6ca16674b3..9a9047d57cad 100644
--- a/sdk/storage/azure-storage-file-share/tests/test_get_file_async.py
+++ b/sdk/storage/azure-storage-file-share/tests/test_get_file_async.py
@@ -354,10 +354,16 @@ async def test_get_file_with_iter_async(self, resource_group, location, storage_
max_chunk_get_size=self.MAX_CHUNK_GET_SIZE)
# Act
+ chunk_size_list = list()
with open(FILE_PATH, 'wb') as stream:
download = await file_client.download_file()
async for data in download.chunks():
+ chunk_size_list.append(len(data))
stream.write(data)
+
+ for i in range(0, len(chunk_size_list) - 1):
+ self.assertEqual(chunk_size_list[i], self.MAX_CHUNK_GET_SIZE)
+
# Assert
with open(FILE_PATH, 'rb') as stream:
actual = stream.read()