Merge pull request #307 from Azure/dev

Dev to Master
This commit is contained in:
Ze Qian Zhang 2017-06-14 00:15:08 -07:00 коммит произвёл GitHub
Родитель c9655db4aa 405f78a4a0
Коммит 11d0f03790
616 изменённых файлов: 39371 добавлений и 90906 удалений

Просмотреть файл

@ -2,6 +2,10 @@
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
## Version 0.34.3:
- All: Made the socket timeout configurable. Increased the default socket timeout to 20 seconds.
- All: Fixed a bug where SAS tokens were being duplicated on retries
## Version 0.34.2:
### All:

Просмотреть файл

@ -113,6 +113,10 @@ class _StorageSASAuthentication(object):
self.sas_token = sas_token
def sign_request(self, request):
# if 'sig=' is present, then the request has already been signed
# as is the case when performing retries
if 'sig=' in request.path:
return
if '?' in request.path:
request.path += '&'
else:

Просмотреть файл

@ -47,8 +47,8 @@ _CONNECTION_ENDPONTS = {
}
class _ServiceParameters(object):
def __init__(self, service, account_name=None, account_key=None, sas_token=None,
is_emulated=False, protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
def __init__(self, service, account_name=None, account_key=None, sas_token=None,
is_emulated=False, protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
custom_domain=None):
self.account_name = account_name
@ -83,9 +83,9 @@ class _ServiceParameters(object):
self.protocol = self.protocol if parsed_url.scheme is '' else parsed_url.scheme
else:
if not self.account_name:
raise ValueError(_ERROR_STORAGE_MISSING_INFO)
raise ValueError(_ERROR_STORAGE_MISSING_INFO)
self.primary_endpoint = '{}.{}.{}'.format(self.account_name, service, endpoint_suffix)
# Setup the secondary endpoint
if self.account_name:
self.secondary_endpoint = '{}-secondary.{}.{}'.format(self.account_name, service, endpoint_suffix)
@ -93,26 +93,27 @@ class _ServiceParameters(object):
self.secondary_endpoint = None
@staticmethod
def get_service_parameters(service, account_name=None, account_key=None, sas_token=None, is_emulated=None,
protocol=None, endpoint_suffix=None, custom_domain=None, request_session=None,
connection_string=None):
def get_service_parameters(service, account_name=None, account_key=None, sas_token=None, is_emulated=None,
protocol=None, endpoint_suffix=None, custom_domain=None, request_session=None,
connection_string=None, socket_timeout=None):
if connection_string:
params = _ServiceParameters._from_connection_string(connection_string, service)
elif is_emulated:
params = _ServiceParameters(service, is_emulated=True)
elif account_name:
params = _ServiceParameters(service,
account_name=account_name,
account_key=account_key,
sas_token=sas_token,
is_emulated=is_emulated,
protocol=protocol,
account_name=account_name,
account_key=account_key,
sas_token=sas_token,
is_emulated=is_emulated,
protocol=protocol,
endpoint_suffix=endpoint_suffix,
custom_domain=custom_domain)
else:
raise ValueError(_ERROR_STORAGE_MISSING_INFO)
params.request_session = request_session
params.socket_timeout = socket_timeout
return params
@staticmethod
@ -136,10 +137,10 @@ class _ServiceParameters(object):
endpoint = config.get(_CONNECTION_ENDPONTS[service])
return _ServiceParameters(service,
account_name=account_name,
account_key=account_key,
sas_token=sas_token,
is_emulated=is_emulated,
protocol=protocol,
account_name=account_name,
account_key=account_key,
sas_token=sas_token,
is_emulated=is_emulated,
protocol=protocol,
endpoint_suffix=endpoint_suffix,
custom_domain=endpoint)

Просмотреть файл

@ -15,7 +15,7 @@
import platform
__author__ = 'Microsoft Corp. <ptvshelp@microsoft.com>'
__version__ = '0.34.2'
__version__ = '0.34.3'
# x-ms-version for storage service.
X_MS_VERSION = '2016-05-31'
@ -36,8 +36,8 @@ DEV_TABLE_HOST = '127.0.0.1:10002'
DEV_ACCOUNT_NAME = 'devstoreaccount1'
DEV_ACCOUNT_KEY = 'Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=='
# Socket timeout in seconds is 11
SOCKET_TIMEOUT = 11
# Socket timeout in seconds
DEFAULT_SOCKET_TIMEOUT = 20
#Encryption constants
_ENCRYPTION_PROTOCOL_V1 = '1.0'

Просмотреть файл

@ -74,7 +74,7 @@ class AppendBlobService(BaseBlobService):
def __init__(self, account_name=None, account_key=None, sas_token=None,
is_emulated=False, protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
custom_domain=None, request_session=None, connection_string=None):
custom_domain=None, request_session=None, connection_string=None, socket_timeout=None):
'''
:param str account_name:
The storage account name. This is used to authenticate requests
@ -110,11 +110,14 @@ class AppendBlobService(BaseBlobService):
request session. See
http://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/
for the connection string format.
:param int socket_timeout:
If specified, this will override the default socket timeout. The timeout specified is in seconds.
See DEFAULT_SOCKET_TIMEOUT in _constants.py for the default value.
'''
self.blob_type = _BlobTypes.AppendBlob
super(AppendBlobService, self).__init__(
account_name, account_key, sas_token, is_emulated, protocol, endpoint_suffix,
custom_domain, request_session, connection_string)
custom_domain, request_session, connection_string, socket_timeout)
def create_blob(self, container_name, blob_name, content_settings=None,
metadata=None, lease_id=None,

Просмотреть файл

@ -150,7 +150,7 @@ class BaseBlobService(StorageClient):
def __init__(self, account_name=None, account_key=None, sas_token=None,
is_emulated=False, protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
custom_domain=None, request_session=None, connection_string=None):
custom_domain=None, request_session=None, connection_string=None, socket_timeout=None):
'''
:param str account_name:
The storage account name. This is used to authenticate requests
@ -186,6 +186,9 @@ class BaseBlobService(StorageClient):
request session. See
http://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/
for the connection string format
:param int socket_timeout:
If specified, this will override the default socket timeout. The timeout specified is in seconds.
See DEFAULT_SOCKET_TIMEOUT in _constants.py for the default value.
'''
service_params = _ServiceParameters.get_service_parameters(
'blob',
@ -197,7 +200,8 @@ class BaseBlobService(StorageClient):
endpoint_suffix=endpoint_suffix,
custom_domain=custom_domain,
request_session=request_session,
connection_string=connection_string)
connection_string=connection_string,
socket_timeout=socket_timeout)
super(BaseBlobService, self).__init__(service_params)

Просмотреть файл

@ -104,7 +104,7 @@ class BlockBlobService(BaseBlobService):
def __init__(self, account_name=None, account_key=None, sas_token=None,
is_emulated=False, protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
custom_domain=None, request_session=None, connection_string=None):
custom_domain=None, request_session=None, connection_string=None, socket_timeout=None):
'''
:param str account_name:
The storage account name. This is used to authenticate requests
@ -140,11 +140,14 @@ class BlockBlobService(BaseBlobService):
request session. See
http://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/
for the connection string format.
:param int socket_timeout:
If specified, this will override the default socket timeout. The timeout specified is in seconds.
See DEFAULT_SOCKET_TIMEOUT in _constants.py for the default value.
'''
self.blob_type = _BlobTypes.BlockBlob
super(BlockBlobService, self).__init__(
account_name, account_key, sas_token, is_emulated, protocol, endpoint_suffix,
custom_domain, request_session, connection_string)
custom_domain, request_session, connection_string, socket_timeout)
def put_block(self, container_name, blob_name, block, block_id,
validate_content=False, lease_id=None, timeout=None):

Просмотреть файл

@ -88,7 +88,7 @@ class PageBlobService(BaseBlobService):
def __init__(self, account_name=None, account_key=None, sas_token=None,
is_emulated=False, protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
custom_domain=None, request_session=None, connection_string=None):
custom_domain=None, request_session=None, connection_string=None, socket_timeout=None):
'''
:param str account_name:
The storage account name. This is used to authenticate requests
@ -124,11 +124,14 @@ class PageBlobService(BaseBlobService):
request session. See
http://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/
for the connection string format.
:param int socket_timeout:
If specified, this will override the default socket timeout. The timeout specified is in seconds.
See DEFAULT_SOCKET_TIMEOUT in _constants.py for the default value.
'''
self.blob_type = _BlobTypes.PageBlob
super(PageBlobService, self).__init__(
account_name, account_key, sas_token, is_emulated, protocol, endpoint_suffix,
custom_domain, request_session, connection_string)
custom_domain, request_session, connection_string, socket_timeout)
def create_blob(
self, container_name, blob_name, content_length, content_settings=None,

Просмотреть файл

@ -124,7 +124,7 @@ class FileService(StorageClient):
def __init__(self, account_name=None, account_key=None, sas_token=None,
protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
request_session=None, connection_string=None):
request_session=None, connection_string=None, socket_timeout=None):
'''
:param str account_name:
The storage account name. This is used to authenticate requests
@ -149,6 +149,9 @@ class FileService(StorageClient):
request session. See
http://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/
for the connection string format.
:param int socket_timeout:
If specified, this will override the default socket timeout. The timeout specified is in seconds.
See DEFAULT_SOCKET_TIMEOUT in _constants.py for the default value.
'''
service_params = _ServiceParameters.get_service_parameters(
'file',
@ -158,7 +161,8 @@ class FileService(StorageClient):
protocol=protocol,
endpoint_suffix=endpoint_suffix,
request_session=request_session,
connection_string=connection_string)
connection_string=connection_string,
socket_timeout=socket_timeout)
super(FileService, self).__init__(service_params)

Просмотреть файл

@ -132,7 +132,7 @@ class QueueService(StorageClient):
def __init__(self, account_name=None, account_key=None, sas_token=None,
is_emulated=False, protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
request_session=None, connection_string=None):
request_session=None, connection_string=None, socket_timeout=None):
'''
:param str account_name:
The storage account name. This is used to authenticate requests
@ -161,6 +161,9 @@ class QueueService(StorageClient):
request session. See
http://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/
for the connection string format.
:param int socket_timeout:
If specified, this will override the default socket timeout. The timeout specified is in seconds.
See DEFAULT_SOCKET_TIMEOUT in _constants.py for the default value.
'''
service_params = _ServiceParameters.get_service_parameters(
'queue',
@ -171,7 +174,8 @@ class QueueService(StorageClient):
protocol=protocol,
endpoint_suffix=endpoint_suffix,
request_session=request_session,
connection_string=connection_string)
connection_string=connection_string,
socket_timeout=socket_timeout)
super(QueueService, self).__init__(service_params)

Просмотреть файл

@ -29,7 +29,7 @@ from .models import (
)
from .retry import ExponentialRetry
from ._constants import (
SOCKET_TIMEOUT
DEFAULT_SOCKET_TIMEOUT
)
from ._http import HTTPError
from ._http.httpclient import _HTTPClient
@ -113,10 +113,11 @@ class StorageClient(object):
protocol = connection_params.protocol
request_session = connection_params.request_session or requests.Session()
socket_timeout = connection_params.socket_timeout or DEFAULT_SOCKET_TIMEOUT
self._httpclient = _HTTPClient(
protocol=protocol,
session=request_session,
timeout=SOCKET_TIMEOUT,
timeout=socket_timeout,
)
self.retry = ExponentialRetry().retry
@ -126,6 +127,14 @@ class StorageClient(object):
self.response_callback = None
self.retry_callback = None
@property
def socket_timeout(self):
return self._httpclient.timeout
@socket_timeout.setter
def socket_timeout(self, value):
self._httpclient.timeout = value
@property
def protocol(self):
return self._httpclient.protocol

Просмотреть файл

@ -126,7 +126,7 @@ class TableService(StorageClient):
def __init__(self, account_name=None, account_key=None, sas_token=None,
is_emulated=False, protocol=DEFAULT_PROTOCOL, endpoint_suffix=SERVICE_HOST_BASE,
request_session=None, connection_string=None):
request_session=None, connection_string=None, socket_timeout=None):
'''
:param str account_name:
The storage account name. This is used to authenticate requests
@ -155,6 +155,9 @@ class TableService(StorageClient):
request session. See
http://azure.microsoft.com/en-us/documentation/articles/storage-configure-connection-string/
for the connection string format.
:param int socket_timeout:
If specified, this will override the default socket timeout. The timeout specified is in seconds.
See DEFAULT_SOCKET_TIMEOUT in _constants.py for the default value.
'''
service_params = _ServiceParameters.get_service_parameters(
'table',
@ -165,7 +168,8 @@ class TableService(StorageClient):
protocol=protocol,
endpoint_suffix=endpoint_suffix,
request_session=request_session,
connection_string=connection_string)
connection_string=connection_string,
socket_timeout=socket_timeout)
super(TableService, self).__init__(service_params)

Просмотреть файл

@ -53,9 +53,9 @@ copyright = u'2015, Microsoft'
# built documents.
#
# The short X.Y version.
version = '0.34.2'
version = '0.34.3'
# The full version, including alpha/beta/rc tags.
release = '0.34.2'
release = '0.34.3'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

Просмотреть файл

@ -41,7 +41,7 @@ except ImportError:
setup(
name='azure-storage',
version='0.34.2',
version='0.34.3',
description='Microsoft Azure Storage Client Library for Python',
long_description=open('README.rst', 'r').read(),
license='Apache License 2.0',

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [8ab27b92-f4a8-11e6-9f63-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:20 GMT']
x-ms-client-request-id: [255945f0-50c8-11e7-b725-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:20 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer927f11f2/blob927f11f2
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:32:20 GMT']
ETag: ['"0x8D456CC6EF93A35"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:20 GMT']
Date: ['Wed, 14 Jun 2017 06:10:20 GMT']
ETag: ['"0x8D4B2EC094B990B"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:20 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [aeab51c2-0001-000c-66b5-880533000000]
x-ms-request-id: [f04e1aa7-0001-0053-5ed4-e448db000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -28,9 +28,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['26']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [8aebe8dc-f4a8-11e6-b209-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:20 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [256c4ce8-50c8-11e7-b2d8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:20 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer927f11f2/blob927f11f2?comp=appendblock
@ -38,14 +38,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [w/zT12GS5AB9+0lsymfhOw==]
Date: ['Fri, 17 Feb 2017 00:32:20 GMT']
ETag: ['"0x8D456CC6F06F5FE"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:20 GMT']
Date: ['Wed, 14 Jun 2017 06:10:20 GMT']
ETag: ['"0x8D4B2EC09507BE9"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:20 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [aeab51e6-0001-000c-06b5-880533000000]
x-ms-request-id: [f04e1ab1-0001-0053-64d4-e448db000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -53,9 +53,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [8af96c40-f4a8-11e6-a3db-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:20 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [2571383a-50c8-11e7-92b9-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:20 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -67,97 +67,16 @@ interactions:
Content-Length: ['26']
Content-Range: [bytes 0-25/26]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:32:20 GMT']
ETag: ['"0x8D456CC6F06F5FE"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:20 GMT']
Date: ['Wed, 14 Jun 2017 06:10:20 GMT']
ETag: ['"0x8D4B2EC09507BE9"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:20 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [aeab51f8-0001-000c-16b5-880533000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [ac0bd37e-f4ac-11e6-88fa-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:01:53 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer927f11f2/blob927f11f2
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:01:53 GMT']
ETag: ['"0x8D456D0905E3949"']
Last-Modified: ['Fri, 17 Feb 2017 01:01:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [d598bc80-0001-0023-2cb9-8808f8000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: abcdefghijklmnopqrstuvwxyz
headers:
Connection: [keep-alive]
Content-Length: ['26']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ac4f2cd0-f4ac-11e6-8992-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:01:54 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer927f11f2/blob927f11f2?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [w/zT12GS5AB9+0lsymfhOw==]
Date: ['Fri, 17 Feb 2017 01:01:53 GMT']
ETag: ['"0x8D456D09070FE64"']
Last-Modified: ['Fri, 17 Feb 2017 01:01:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [d598bc87-0001-0023-32b9-8808f8000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ac618b58-f4ac-11e6-8ebd-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:01:54 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer927f11f2/blob927f11f2
response:
body: {string: abcdefghijklmnopqrstuvwxyz}
headers:
Accept-Ranges: [bytes]
Content-Length: ['26']
Content-Range: [bytes 0-25/26]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 01:01:53 GMT']
ETag: ['"0x8D456D09070FE64"']
Last-Modified: ['Fri, 17 Feb 2017 01:01:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [d598bc91-0001-0023-3ab9-8808f8000000]
x-ms-request-id: [f04e1aba-0001-0053-6ad4-e448db000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [8f0bdcc6-f4a8-11e6-beb7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:27 GMT']
x-ms-client-request-id: [273cb628-50c8-11e7-8a6f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:24 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer73451684/blob73451684
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:32:26 GMT']
ETag: ['"0x8D456CC7352210D"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:27 GMT']
Date: ['Wed, 14 Jun 2017 06:10:23 GMT']
ETag: ['"0x8D4B2EC0B323B36"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:23 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [6e677492-0001-0000-67b5-88923b000000]
x-ms-request-id: [2ebbb67e-0001-0089-20d4-e4edf0000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -28,9 +28,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['23']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [8f45a22e-f4a8-11e6-8b0d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:27 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [27532d82-50c8-11e7-84d1-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:24 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer73451684/blob73451684?comp=appendblock
@ -38,14 +38,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [B/3psgzlibEznuDABJiKeQ==]
Date: ['Fri, 17 Feb 2017 00:32:26 GMT']
ETag: ['"0x8D456CC7361B1C3"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:27 GMT']
Date: ['Wed, 14 Jun 2017 06:10:23 GMT']
ETag: ['"0x8D4B2EC0B387DE2"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:23 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [6e6774a4-0001-0000-78b5-88923b000000]
x-ms-request-id: [2ebbb6a3-0001-0089-3ed4-e4edf0000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -53,9 +53,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [8f54d394-f4a8-11e6-8146-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:27 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [275931d8-50c8-11e7-942f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:24 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -67,97 +67,16 @@ interactions:
Content-Length: ['23']
Content-Range: [bytes 0-22/23]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:32:26 GMT']
ETag: ['"0x8D456CC7361B1C3"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:27 GMT']
Date: ['Wed, 14 Jun 2017 06:10:23 GMT']
ETag: ['"0x8D4B2EC0B387DE2"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:23 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [6e6774c1-0001-0000-11b5-88923b000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [b0f1729c-f4ac-11e6-b2b6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:02 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer73451684/blob73451684
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:02:02 GMT']
ETag: ['"0x8D456D0953D1BA2"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [595d1b67-0001-0046-22b9-88a6bc000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: defghijklmnopqrstuvwxyz
headers:
Connection: [keep-alive]
Content-Length: ['23']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b12cb0fa-f4ac-11e6-a987-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:02 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer73451684/blob73451684?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [B/3psgzlibEznuDABJiKeQ==]
Date: ['Fri, 17 Feb 2017 01:02:02 GMT']
ETag: ['"0x8D456D0954B9AD7"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [595d1b75-0001-0046-2db9-88a6bc000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b13b700c-f4ac-11e6-8171-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:02 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer73451684/blob73451684
response:
body: {string: defghijklmnopqrstuvwxyz}
headers:
Accept-Ranges: [bytes]
Content-Length: ['23']
Content-Range: [bytes 0-22/23]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 01:02:02 GMT']
ETag: ['"0x8D456D0954B9AD7"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [595d1b84-0001-0046-3bb9-88a6bc000000]
x-ms-request-id: [2ebbb6bf-0001-0089-59d4-e4edf0000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [8fd3845c-f4a8-11e6-a72f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:28 GMT']
x-ms-client-request-id: [27ae2cdc-50c8-11e7-830d-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:24 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6a5b1a9e/blob6a5b1a9e
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:32:27 GMT']
ETag: ['"0x8D456CC74143C20"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:28 GMT']
Date: ['Wed, 14 Jun 2017 06:10:23 GMT']
ETag: ['"0x8D4B2EC0BA200B6"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:24 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [98b91cbc-0001-002f-3eb5-889ff0000000]
x-ms-request-id: [618ae4b0-0001-00df-03d4-e40580000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -28,9 +28,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['5']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [900a3676-f4a8-11e6-bf3c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:28 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [27c2dd30-50c8-11e7-a263-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:24 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6a5b1a9e/blob6a5b1a9e?comp=appendblock
@ -38,14 +38,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [hl9cx/vXhUkC6unYIR8Xig==]
Date: ['Fri, 17 Feb 2017 00:32:27 GMT']
ETag: ['"0x8D456CC74255371"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:28 GMT']
Date: ['Wed, 14 Jun 2017 06:10:23 GMT']
ETag: ['"0x8D4B2EC0BA70AAB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:24 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [98b91cd1-0001-002f-50b5-889ff0000000]
x-ms-request-id: [618ae4bb-0001-00df-0bd4-e40580000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -53,9 +53,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [9017b9de-f4a8-11e6-8923-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:29 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [27c7d0c2-50c8-11e7-9c1e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:24 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -67,97 +67,16 @@ interactions:
Content-Length: ['5']
Content-Range: [bytes 0-4/5]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:32:27 GMT']
ETag: ['"0x8D456CC74255371"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:28 GMT']
Date: ['Wed, 14 Jun 2017 06:10:23 GMT']
ETag: ['"0x8D4B2EC0BA70AAB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:24 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [98b91ce3-0001-002f-61b5-889ff0000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [b1cb9ff6-f4ac-11e6-9a07-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:03 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6a5b1a9e/blob6a5b1a9e
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:02:02 GMT']
ETag: ['"0x8D456D09616DDD0"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [b8d1703d-0001-0014-41b9-88da54000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: defgh
headers:
Connection: [keep-alive]
Content-Length: ['5']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b207ca5e-f4ac-11e6-b924-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:03 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6a5b1a9e/blob6a5b1a9e?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [hl9cx/vXhUkC6unYIR8Xig==]
Date: ['Fri, 17 Feb 2017 01:02:02 GMT']
ETag: ['"0x8D456D09629067F"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [b8d17046-0001-0014-49b9-88da54000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b219599e-f4ac-11e6-be5c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:04 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer6a5b1a9e/blob6a5b1a9e
response:
body: {string: defgh}
headers:
Accept-Ranges: [bytes]
Content-Length: ['5']
Content-Range: [bytes 0-4/5]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 01:02:02 GMT']
ETag: ['"0x8D456D09629067F"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [b8d1704b-0001-0014-4db9-88da54000000]
x-ms-request-id: [618ae4ca-0001-00df-18d4-e40580000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [9092b4c8-f4a8-11e6-8d09-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:29 GMT']
x-ms-client-request-id: [27f3baa4-50c8-11e7-b371-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:25 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerb9e117e1/blobb9e117e1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:32:29 GMT']
ETag: ['"0x8D456CC74D5E1F4"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:29 GMT']
Date: ['Wed, 14 Jun 2017 06:10:24 GMT']
ETag: ['"0x8D4B2EC0BE53015"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:24 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [2844183e-0001-0040-75b5-889503000000]
x-ms-request-id: [ed89c30c-0001-013d-45d4-e4a7a7000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -28,9 +28,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['26']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [90c915ca-f4a8-11e6-bd25-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:30 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [2806331e-50c8-11e7-a503-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:25 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerb9e117e1/blobb9e117e1?comp=appendblock
@ -38,14 +38,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [w/zT12GS5AB9+0lsymfhOw==]
Date: ['Fri, 17 Feb 2017 00:32:29 GMT']
ETag: ['"0x8D456CC74E43A09"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:30 GMT']
Date: ['Wed, 14 Jun 2017 06:10:24 GMT']
ETag: ['"0x8D4B2EC0BEA6121"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:24 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [2844184d-0001-0040-03b5-889503000000]
x-ms-request-id: [ed89c31e-0001-013d-54d4-e4a7a7000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -53,9 +53,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [90d78180-f4a8-11e6-b748-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:30 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [280b42b6-50c8-11e7-9a9d-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:25 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -67,97 +67,16 @@ interactions:
Content-Length: ['26']
Content-Range: [bytes 0-25/26]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:32:29 GMT']
ETag: ['"0x8D456CC74E43A09"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:30 GMT']
Date: ['Wed, 14 Jun 2017 06:10:24 GMT']
ETag: ['"0x8D4B2EC0BEA6121"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:24 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [2844185e-0001-0040-13b5-889503000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [b29b5ee6-f4ac-11e6-ac61-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:04 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerb9e117e1/blobb9e117e1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:02:04 GMT']
ETag: ['"0x8D456D096ECA855"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [af966c71-0001-0039-33b9-886927000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: abcdefghijklmnopqrstuvwxyz
headers:
Connection: [keep-alive]
Content-Length: ['26']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b2dcfa14-f4ac-11e6-b4b4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:05 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerb9e117e1/blobb9e117e1?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [w/zT12GS5AB9+0lsymfhOw==]
Date: ['Fri, 17 Feb 2017 01:02:04 GMT']
ETag: ['"0x8D456D096FC8707"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [af966c77-0001-0039-38b9-886927000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b2ed32e4-f4ac-11e6-8ec0-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:05 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainerb9e117e1/blobb9e117e1
response:
body: {string: abcdefghijklmnopqrstuvwxyz}
headers:
Accept-Ranges: [bytes]
Content-Length: ['26']
Content-Range: [bytes 0-25/26]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 01:02:04 GMT']
ETag: ['"0x8D456D096FC8707"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [af966c86-0001-0039-46b9-886927000000]
x-ms-request-id: [ed89c330-0001-013d-65d4-e4a7a7000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a1396774-f4a8-11e6-ad2b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:57 GMT']
x-ms-client-request-id: [2f750340-50c8-11e7-9751-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:37 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer80b01190/blob80b01190
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:32:57 GMT']
ETag: ['"0x8D456CC857FA05F"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:57 GMT']
Date: ['Wed, 14 Jun 2017 06:10:37 GMT']
ETag: ['"0x8D4B2EC1367E6CB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:37 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [42bada2b-0001-0026-12b5-88da23000000]
x-ms-request-id: [8b229da9-0001-0010-15d4-e46232000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -28,9 +28,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['27']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a172d5de-f4a8-11e6-a88f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:58 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [2f88a60a-50c8-11e7-91fd-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:37 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer80b01190/blob80b01190?comp=appendblock
@ -38,14 +38,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [1dmqejQJFCXZC/Jqkmc1Lw==]
Date: ['Fri, 17 Feb 2017 00:32:57 GMT']
ETag: ['"0x8D456CC858EE2E0"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:58 GMT']
Date: ['Wed, 14 Jun 2017 06:10:37 GMT']
ETag: ['"0x8D4B2EC136CA296"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:37 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [42bada43-0001-0026-29b5-88da23000000]
x-ms-request-id: [8b229db5-0001-0010-1fd4-e46232000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -53,9 +53,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a181f3be-f4a8-11e6-ae2d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:32:58 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [2f8d40f4-50c8-11e7-a170-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:37 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -67,97 +67,16 @@ interactions:
Content-Length: ['27']
Content-Range: [bytes 0-26/27]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:32:57 GMT']
ETag: ['"0x8D456CC858EE2E0"']
Last-Modified: ['Fri, 17 Feb 2017 00:32:58 GMT']
Date: ['Wed, 14 Jun 2017 06:10:37 GMT']
ETag: ['"0x8D4B2EC136CA296"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:37 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [42bada5f-0001-0026-43b5-88da23000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [c4f58d28-f4ac-11e6-be1b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:35 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer80b01190/blob80b01190
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:02:35 GMT']
ETag: ['"0x8D456D0A941FB9F"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:35 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9b24d0fd-0001-0015-6fb9-888588000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: "hello \u554A\u9F44\u4E02\u72DB\u72DC world"
headers:
Connection: [keep-alive]
Content-Length: ['27']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c5328a2e-f4ac-11e6-bbc3-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:36 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer80b01190/blob80b01190?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [1dmqejQJFCXZC/Jqkmc1Lw==]
Date: ['Fri, 17 Feb 2017 01:02:35 GMT']
ETag: ['"0x8D456D0A95312DB"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:36 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [9b24d112-0001-0015-01b9-888588000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c543e588-f4ac-11e6-b5b3-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:36 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer80b01190/blob80b01190
response:
body: {string: "hello \u554A\u9F44\u4E02\u72DB\u72DC world"}
headers:
Accept-Ranges: [bytes]
Content-Length: ['27']
Content-Range: [bytes 0-26/27]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 01:02:35 GMT']
ETag: ['"0x8D456D0A95312DB"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:36 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [9b24d123-0001-0015-11b9-888588000000]
x-ms-request-id: [8b229dbb-0001-0010-24d4-e46232000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a439ac30-f4a8-11e6-93db-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:02 GMT']
x-ms-client-request-id: [30c11112-50c8-11e7-b298-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:39 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1e01751/bloba1e01751
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:02 GMT']
ETag: ['"0x8D456CC88809257"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:02 GMT']
Date: ['Wed, 14 Jun 2017 06:10:38 GMT']
ETag: ['"0x8D4B2EC14B33EF6"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:39 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [a695a162-0001-0041-5cb5-88cadf000000]
x-ms-request-id: [5d6e065f-0001-011f-3cd4-e4c991000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -29,9 +29,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['36']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a47474f0-f4a8-11e6-a2c8-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:03 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [30d44746-50c8-11e7-846a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:40 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1e01751/bloba1e01751?comp=appendblock
@ -39,14 +39,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==]
Date: ['Fri, 17 Feb 2017 00:33:03 GMT']
ETag: ['"0x8D456CC8890BF4B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:03 GMT']
Date: ['Wed, 14 Jun 2017 06:10:38 GMT']
ETag: ['"0x8D4B2EC14B90C5E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:39 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [a695a179-0001-0041-71b5-88cadf000000]
x-ms-request-id: [5d6e066d-0001-011f-45d4-e4c991000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -54,9 +54,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a483b9dc-f4a8-11e6-8bf7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:03 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [30da1662-50c8-11e7-b5f3-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:40 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -70,100 +70,16 @@ interactions:
Content-Length: ['36']
Content-Range: [bytes 0-35/36]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:03 GMT']
ETag: ['"0x8D456CC8890BF4B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:03 GMT']
Date: ['Wed, 14 Jun 2017 06:10:38 GMT']
ETag: ['"0x8D4B2EC14B90C5E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:39 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [a695a18e-0001-0041-03b5-88cadf000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [c83b3440-f4ac-11e6-9f74-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1e01751/bloba1e01751
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:02:40 GMT']
ETag: ['"0x8D456D0AC866042"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f3693f04-0001-0008-7fb9-888834000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: !!binary |
//5oAGUAbABsAG8AIABKVUSfAk7bctxyIAB3AG8AcgBsAGQA
headers:
Connection: [keep-alive]
Content-Length: ['36']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c8785dd0-f4ac-11e6-8915-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1e01751/bloba1e01751?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==]
Date: ['Fri, 17 Feb 2017 01:02:40 GMT']
ETag: ['"0x8D456D0AC97ECCE"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [f3693f10-0001-0008-0ab9-888834000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c8886568-f4ac-11e6-a236-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:41 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainera1e01751/bloba1e01751
response:
body:
string: !!binary |
//5oAGUAbABsAG8AIABKVUSfAk7bctxyIAB3AG8AcgBsAGQA
headers:
Accept-Ranges: [bytes]
Content-Length: ['36']
Content-Range: [bytes 0-35/36]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 01:02:40 GMT']
ETag: ['"0x8D456D0AC97ECCE"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [f3693f1d-0001-0008-16b9-888834000000]
x-ms-request-id: [5d6e0675-0001-011f-4cd4-e4c991000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a4ff7bc8-f4a8-11e6-8856-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:04 GMT']
x-ms-client-request-id: [310d9818-50c8-11e7-bbb4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:40 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf5ef1cb7/blobf5ef1cb7
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:03 GMT']
ETag: ['"0x8D456CC8942D45C"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:04 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC14FF709C"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:40 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [92eacee7-0001-0017-4db5-883b30000000]
x-ms-request-id: [82955c95-0001-012d-6cd4-e49141000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -29,9 +29,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['36']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a535fef0-f4a8-11e6-83fe-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:04 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [312021f8-50c8-11e7-83ab-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:40 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf5ef1cb7/blobf5ef1cb7?comp=appendblock
@ -39,65 +39,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==]
Date: ['Fri, 17 Feb 2017 00:33:03 GMT']
ETag: ['"0x8D456CC8951538C"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:04 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC1504C8BB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:40 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [92eacf07-0001-0017-6cb5-883b30000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [c90ae62c-f4ac-11e6-8c11-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:42 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf5ef1cb7/blobf5ef1cb7
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:02:42 GMT']
ETag: ['"0x8D456D0AD563742"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:42 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5a8c390a-0001-0012-4eb9-88e9eb000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: !!binary |
//5oAGUAbABsAG8AIABKVUSfAk7bctxyIAB3AG8AcgBsAGQA
headers:
Connection: [keep-alive]
Content-Length: ['36']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c946c78c-f4ac-11e6-b085-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:42 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf5ef1cb7/blobf5ef1cb7?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [O7c5HRnUhbM5yD4T1wnm/w==]
Date: ['Fri, 17 Feb 2017 01:02:42 GMT']
ETag: ['"0x8D456D0AD67005E"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:42 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [5a8c3910-0001-0012-53b9-88e9eb000000]
x-ms-request-id: [82955ca1-0001-012d-77d4-e49141000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a5b172ae-f4a8-11e6-bb0e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:05 GMT']
x-ms-client-request-id: [3151397a-50c8-11e7-9f97-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:40 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6f1410d9/blob6f1410d9
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:04 GMT']
ETag: ['"0x8D456CC89F6220E"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:05 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC1543FFD2"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:40 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [fe8e0b93-0001-0020-5cb5-88e99c000000]
x-ms-request-id: [11fdade0-0001-009b-0ed4-e4d9ec000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -29,9 +29,9 @@ interactions:
Connection: [keep-alive]
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a5e94282-f4a8-11e6-8ab1-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:05 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3164f486-50c8-11e7-9a71-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6f1410d9/blob6f1410d9?comp=appendblock
@ -39,116 +39,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:05 GMT']
ETag: ['"0x8D456CC8A047A28"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:05 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC154909BE"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:40 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [fe8e0ba5-0001-0020-6db5-88e99c000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [c9d41bb0-f4ac-11e6-8987-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:43 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6f1410d9/blob6f1410d9
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:02:43 GMT']
ETag: ['"0x8D456D0AE1FF377"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:44 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [86ac2692-0001-0042-13b9-882bbb000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: hello world
headers:
Connection: [keep-alive]
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ca0ff2d2-f4ac-11e6-bbd6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:02:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6f1410d9/blob6f1410d9?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 01:02:43 GMT']
ETag: ['"0x8D456D0AE30E3B7"']
Last-Modified: ['Fri, 17 Feb 2017 01:02:44 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [86ac269c-0001-0042-1ab9-882bbb000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: null
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [08935034-f4ad-11e6-a414-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:04:29 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6f1410d9/blob6f1410d9
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 01:04:29 GMT']
ETag: ['"0x8D456D0ECE497FD"']
Last-Modified: ['Fri, 17 Feb 2017 01:04:29 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [c2d2fbc1-0001-0049-16b9-88d0d0000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
body: hello world
headers:
Connection: [keep-alive]
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [08d50848-f4ad-11e6-aa4d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 01:04:29 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6f1410d9/blob6f1410d9?comp=appendblock
response:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 01:04:29 GMT']
ETag: ['"0x8D456D0ECF5D654"']
Last-Modified: ['Fri, 17 Feb 2017 01:04:29 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [c2d2fbd2-0001-0049-26b9-88d0d0000000]
x-ms-request-id: [11fdadea-0001-009b-17d4-e4d9ec000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a663df22-f4a8-11e6-a021-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:06 GMT']
x-ms-client-request-id: [318e6ea2-50c8-11e7-a255-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:05 GMT']
ETag: ['"0x8D456CC8AAA3304"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:06 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC157EC949"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:40 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [b8ce5e8f-0001-0014-35b5-88da54000000]
x-ms-request-id: [daeb4933-0001-006d-19d4-e4fefa000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -28,9 +28,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a69d5c62-f4a8-11e6-b71b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:06 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [319fa19c-50c8-11e7-9cdc-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock
@ -38,14 +38,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==]
Date: ['Fri, 17 Feb 2017 00:33:05 GMT']
ETag: ['"0x8D456CC8AB94E84"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:06 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC15846F89"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:40 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [b8ce5eb0-0001-0014-53b5-88da54000000]
x-ms-request-id: [daeb493f-0001-006d-23d4-e4fefa000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -54,9 +54,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a6ac65f0-f4a8-11e6-8f8a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:06 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [31a5a3e4-50c8-11e7-aaa4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock
@ -64,14 +64,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==]
Date: ['Fri, 17 Feb 2017 00:33:05 GMT']
ETag: ['"0x8D456CC8AC81BDB"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:06 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC158AD94B"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:40 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['7']
x-ms-blob-committed-block-count: ['2']
x-ms-request-id: [b8ce5ecb-0001-0014-6bb5-88da54000000]
x-ms-request-id: [daeb4956-0001-006d-35d4-e4fefa000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -80,9 +80,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a6bb359e-f4a8-11e6-9e1d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:07 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [31abfa36-50c8-11e7-b103-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock
@ -90,14 +90,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [giBgEwOK96+T6eqweyrlNg==]
Date: ['Fri, 17 Feb 2017 00:33:05 GMT']
ETag: ['"0x8D456CC8AD6E937"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:06 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC15911BFA"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:40 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['14']
x-ms-blob-committed-block-count: ['3']
x-ms-request-id: [b8ce5edf-0001-0014-7eb5-88da54000000]
x-ms-request-id: [daeb495b-0001-006d-3ad4-e4fefa000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -106,9 +106,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a6ca0548-f4a8-11e6-a4d5-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:07 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [31b1d836-50c8-11e7-990f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock
@ -116,14 +116,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==]
Date: ['Fri, 17 Feb 2017 00:33:06 GMT']
ETag: ['"0x8D456CC8AE5B673"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:06 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC15964D05"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['21']
x-ms-blob-committed-block-count: ['4']
x-ms-request-id: [b8ce5ef7-0001-0014-15b5-88da54000000]
x-ms-request-id: [daeb4966-0001-006d-43d4-e4fefa000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -132,9 +132,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a6d8c168-f4a8-11e6-91e6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:07 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [31b71858-50c8-11e7-8ee1-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:41 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf23c0dc5/blobf23c0dc5?comp=appendblock
@ -142,14 +142,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==]
Date: ['Fri, 17 Feb 2017 00:33:06 GMT']
ETag: ['"0x8D456CC8AF483D8"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:07 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC159BF359"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['28']
x-ms-blob-committed-block-count: ['5']
x-ms-request-id: [b8ce5f08-0001-0014-24b5-88da54000000]
x-ms-request-id: [daeb496c-0001-006d-49d4-e4fefa000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -157,9 +157,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a6e7910c-f4a8-11e6-94a8-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:07 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [31bcc73a-50c8-11e7-bffe-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:41 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -171,16 +171,16 @@ interactions:
Content-Length: ['35']
Content-Range: [bytes 0-34/35]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:06 GMT']
ETag: ['"0x8D456CC8AF483D8"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:07 GMT']
Date: ['Wed, 14 Jun 2017 06:10:40 GMT']
ETag: ['"0x8D4B2EC159BF359"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['5']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [b8ce5f19-0001-0014-35b5-88da54000000]
x-ms-request-id: [daeb4977-0001-006d-52d4-e4fefa000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a76b4480-f4a8-11e6-91f0-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:08 GMT']
x-ms-client-request-id: [31f737f6-50c8-11e7-a99f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:42 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6f45110b/blob6f45110b
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:07 GMT']
ETag: ['"0x8D456CC8BB20AE9"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:08 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC15EC4469"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [af935357-0001-0039-55b5-886927000000]
x-ms-request-id: [7eb9ecc3-0001-0040-3ed4-e47d3a000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a80f96ba-f4a8-11e6-b9db-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:09 GMT']
x-ms-client-request-id: [32316d5a-50c8-11e7-8e69-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:42 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer80a61145/blob80a61145
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:09 GMT']
ETag: ['"0x8D456CC8C53A50C"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:09 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC16238AC4"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5e514a3c-0001-0005-4eb5-8840e0000000]
x-ms-request-id: [9fbde54d-0001-008a-2bd4-e4eef7000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -29,9 +29,9 @@ interactions:
Connection: [keep-alive]
Content-Length: ['5']
Content-MD5: [FFEfL1VkZQ0SnKfKvDMyeA==]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a846d54c-f4a8-11e6-9fcd-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:09 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3244340a-50c8-11e7-912e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:42 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer80a61145/blob80a61145?comp=appendblock
@ -39,14 +39,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [FFEfL1VkZQ0SnKfKvDMyeA==]
Date: ['Fri, 17 Feb 2017 00:33:09 GMT']
ETag: ['"0x8D456CC8C62C07F"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:09 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC162894BD"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:41 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [5e514a4b-0001-0005-5cb5-8840e0000000]
x-ms-request-id: [9fbde560-0001-008a-3cd4-e4eef7000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a8c262f8-f4a8-11e6-b18a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:10 GMT']
x-ms-client-request-id: [3275359e-50c8-11e7-a627-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:42 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainere44d0d55/blobe44d0d55
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:10 GMT']
ETag: ['"0x8D456CC8D05BA23"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:10 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC1669A0DB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:42 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [992abd22-0001-0018-38b5-884d5c000000]
x-ms-request-id: [a492f5e8-0001-0020-43d4-e43818000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -27,9 +27,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a8f8e8dc-f4a8-11e6-a0d6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:10 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [328a8270-50c8-11e7-aba8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:42 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainere44d0d55/blobe44d0d55
@ -39,16 +39,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['0']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:10 GMT']
ETag: ['"0x8D456CC8D05BA23"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:10 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC1669A0DB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:42 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['0']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [992abd31-0001-0018-46b5-884d5c000000]
x-ms-request-id: [a492f5f6-0001-0020-4cd4-e43818000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}

Просмотреть файл

@ -4,22 +4,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a970f3d2-f4a8-11e6-8b08-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:11 GMT']
x-ms-client-request-id: [32bcdeb6-50c8-11e7-82b2-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:43 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerca1d1305/blobca1d1305
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:11 GMT']
ETag: ['"0x8D456CC8DB473D4"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:11 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC16AF8FD1"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:42 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [40f62357-0001-0002-27b5-882c83000000]
x-ms-request-id: [4f8a2aeb-0001-0006-0ad4-e4a3ac000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -28,9 +28,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a9a78802-f4a8-11e6-aa6a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:11 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [32d04a28-50c8-11e7-9c85-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:43 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-version: ['2016-05-31']
@ -39,13 +39,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:11 GMT']
ETag: ['"0x8D456CC8DB473D4"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:11 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC16AF8FD1"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:42 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-id: [e0d238c4-6d25-485b-8d31-387017ee2170]
x-ms-request-id: [40f62365-0001-0002-32b5-882c83000000]
x-ms-lease-id: [9df32344-6c21-4316-ba3d-671ff745ff71]
x-ms-request-id: [4f8a2af8-0001-0006-15d4-e4a3ac000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -53,23 +53,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [a9b5cfba-f4a8-11e6-8984-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:12 GMT']
x-ms-lease-id: [e0d238c4-6d25-485b-8d31-387017ee2170]
x-ms-client-request-id: [32d5ddf0-50c8-11e7-849f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:43 GMT']
x-ms-lease-id: [9df32344-6c21-4316-ba3d-671ff745ff71]
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerca1d1305/blobca1d1305
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:11 GMT']
ETag: ['"0x8D456CC8DD0FD21"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:11 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC16BB9FE7"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:42 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [40f62374-0001-0002-3eb5-882c83000000]
x-ms-request-id: [4f8a2b15-0001-0006-2bd4-e4a3ac000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -77,9 +77,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [a9c41698-f4a8-11e6-9e3c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:12 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [32dc7390-50c8-11e7-81d7-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:43 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerca1d1305/blobca1d1305
@ -89,9 +89,9 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['0']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:11 GMT']
ETag: ['"0x8D456CC8DD0FD21"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:11 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC16BB9FE7"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:42 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['0']
@ -99,7 +99,7 @@ interactions:
x-ms-lease-duration: [infinite]
x-ms-lease-state: [leased]
x-ms-lease-status: [locked]
x-ms-request-id: [40f62385-0001-0002-4eb5-882c83000000]
x-ms-request-id: [4f8a2b25-0001-0006-3ad4-e4a3ac000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}

Просмотреть файл

@ -4,10 +4,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [aa3ee23a-f4a8-11e6-99b9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:12 GMT']
x-ms-client-request-id: [33099ac6-50c8-11e7-85c3-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:43 GMT']
x-ms-meta-hello: [world]
x-ms-meta-number: ['42']
x-ms-version: ['2016-05-31']
@ -16,12 +16,12 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:12 GMT']
ETag: ['"0x8D456CC8E829D14"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:13 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC16FA1380"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [e8cf46ad-0001-000a-42b5-88368c000000]
x-ms-request-id: [e7fc0730-0001-012c-12d4-e490bc000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -29,24 +29,24 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [aa75c6dc-f4a8-11e6-89e7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:13 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [331ac28c-50c8-11e7-ba6c-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:43 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainerca521310/blobca521310?comp=metadata
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:12 GMT']
ETag: ['"0x8D456CC8E829D14"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:13 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC16FA1380"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-meta-hello: [world]
x-ms-meta-number: ['42']
x-ms-request-id: [e8cf46ba-0001-000a-4eb5-88368c000000]
x-ms-request-id: [e7fc0743-0001-012c-21d4-e490bc000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [aac2b35c-f4a8-11e6-a5da-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:13 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3331c68c-50c8-11e7-979f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:13 GMT']
ETag: ['"0x8D456CC8F01AC29"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:13 GMT']
Date: ['Wed, 14 Jun 2017 06:10:42 GMT']
ETag: ['"0x8D4B2EC172C59CF"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [28443035-0001-0040-12b5-889503000000]
x-ms-request-id: [98d62f52-0001-00f3-66d4-e487bd000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [aafc7a1a-f4a8-11e6-8599-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:14 GMT']
x-ms-client-request-id: [3343d3f6-50c8-11e7-89c0-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:13 GMT']
ETag: ['"0x8D456CC8F41AACF"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:14 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC173467AE"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [7a557d3b-0001-0007-15b5-88fe58000000]
x-ms-request-id: [fd1ddb05-0001-0112-06d4-e4269d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -49,9 +49,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ab3582a2-f4a8-11e6-ae41-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:14 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [33552cba-50c8-11e7-8812-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1
@ -61,16 +61,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['0']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:13 GMT']
ETag: ['"0x8D456CC8F41AACF"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:14 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC173467AE"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['0']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [7a557d52-0001-0007-2bb5-88fe58000000]
x-ms-request-id: [fd1ddb11-0001-0112-0dd4-e4269d000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -79,10 +79,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Match: ['"0x8D456CC8F41AACF"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ab43dd12-f4a8-11e6-9d9d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:14 GMT']
If-Match: ['"0x8D4B2EC173467AE"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3359ab0c-50c8-11e7-92aa-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock
@ -90,14 +90,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==]
Date: ['Fri, 17 Feb 2017 00:33:13 GMT']
ETag: ['"0x8D456CC8F5F6C87"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:14 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC173DB825"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [7a557d65-0001-0007-3db5-88fe58000000]
x-ms-request-id: [fd1ddb21-0001-0112-19d4-e4269d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -105,9 +105,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ab52e74c-f4a8-11e6-aec1-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:14 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [335e9728-50c8-11e7-a195-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1
@ -117,16 +117,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['7']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:13 GMT']
ETag: ['"0x8D456CC8F5F6C87"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:14 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC173DB825"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['1']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [7a557d75-0001-0007-4db5-88fe58000000]
x-ms-request-id: [fd1ddb2c-0001-0112-24d4-e4269d000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -135,10 +135,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Match: ['"0x8D456CC8F5F6C87"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ab61071a-f4a8-11e6-831f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:14 GMT']
If-Match: ['"0x8D4B2EC173DB825"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3362ce08-50c8-11e7-8266-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock
@ -146,14 +146,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==]
Date: ['Fri, 17 Feb 2017 00:33:13 GMT']
ETag: ['"0x8D456CC8F7C6AF3"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:14 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC1746BA70"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['7']
x-ms-blob-committed-block-count: ['2']
x-ms-request-id: [7a557d85-0001-0007-5db5-88fe58000000]
x-ms-request-id: [fd1ddb2f-0001-0112-27d4-e4269d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -161,9 +161,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ab6f6902-f4a8-11e6-9bef-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:14 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [33674bdc-50c8-11e7-84e9-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1
@ -173,16 +173,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['14']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:13 GMT']
ETag: ['"0x8D456CC8F7C6AF3"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:14 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC1746BA70"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['2']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [7a557d96-0001-0007-6eb5-88fe58000000]
x-ms-request-id: [fd1ddb3a-0001-0112-32d4-e4269d000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -191,10 +191,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Match: ['"0x8D456CC8F7C6AF3"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ab7dafde-f4a8-11e6-8e55-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:15 GMT']
If-Match: ['"0x8D4B2EC1746BA70"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [336b9a34-50c8-11e7-a921-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock
@ -202,14 +202,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [giBgEwOK96+T6eqweyrlNg==]
Date: ['Fri, 17 Feb 2017 00:33:14 GMT']
ETag: ['"0x8D456CC8F991B32"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:14 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC174F959D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['14']
x-ms-blob-committed-block-count: ['3']
x-ms-request-id: [7a557dad-0001-0007-80b5-88fe58000000]
x-ms-request-id: [fd1ddb3e-0001-0112-36d4-e4269d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -217,9 +217,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ab8c1dcc-f4a8-11e6-8d37-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:15 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [33705e00-50c8-11e7-9faf-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1
@ -229,16 +229,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['21']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:14 GMT']
ETag: ['"0x8D456CC8F991B32"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:14 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC174F959D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['3']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [7a557dcd-0001-0007-1eb5-88fe58000000]
x-ms-request-id: [fd1ddb43-0001-0112-3bd4-e4269d000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -247,10 +247,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Match: ['"0x8D456CC8F991B32"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ab9a7842-f4a8-11e6-9984-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:15 GMT']
If-Match: ['"0x8D4B2EC174F959D"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [33779452-50c8-11e7-b84a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock
@ -258,14 +258,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==]
Date: ['Fri, 17 Feb 2017 00:33:14 GMT']
ETag: ['"0x8D456CC8FB5CB75"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:15 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC175B5781"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['21']
x-ms-blob-committed-block-count: ['4']
x-ms-request-id: [7a557de3-0001-0007-31b5-88fe58000000]
x-ms-request-id: [fd1ddb46-0001-0112-3ed4-e4269d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -273,9 +273,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [aba8e626-f4a8-11e6-985b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:15 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [337c0cc2-50c8-11e7-b6f8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1
@ -285,16 +285,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['28']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:14 GMT']
ETag: ['"0x8D456CC8FB5CB75"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:15 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC175B5781"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:43 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['4']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [7a557df3-0001-0007-41b5-88fe58000000]
x-ms-request-id: [fd1ddb4c-0001-0112-42d4-e4269d000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -303,10 +303,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Match: ['"0x8D456CC8FB5CB75"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [abb705e4-f4a8-11e6-8a2f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:15 GMT']
If-Match: ['"0x8D4B2EC175B5781"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3388b476-50c8-11e7-98f6-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd31a180d/blob1?comp=appendblock
@ -314,14 +314,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==]
Date: ['Fri, 17 Feb 2017 00:33:14 GMT']
ETag: ['"0x8D456CC8FD27BAB"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:15 GMT']
Date: ['Wed, 14 Jun 2017 06:10:43 GMT']
ETag: ['"0x8D4B2EC176C7186"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:44 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['28']
x-ms-blob-committed-block-count: ['5']
x-ms-request-id: [7a557e02-0001-0007-50b5-88fe58000000]
x-ms-request-id: [fd1ddb64-0001-0112-54d4-e4269d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -329,9 +329,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [abc5ae7a-f4a8-11e6-85f9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:15 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [338d5ab8-50c8-11e7-8513-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -343,16 +343,16 @@ interactions:
Content-Length: ['35']
Content-Range: [bytes 0-34/35]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:14 GMT']
ETag: ['"0x8D456CC8FD27BAB"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:15 GMT']
Date: ['Wed, 14 Jun 2017 06:10:44 GMT']
ETag: ['"0x8D4B2EC176C7186"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:44 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['5']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [28443105-0001-0040-58b5-889503000000]
x-ms-request-id: [98d63079-0001-00f3-74d4-e487bd000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ac0c0276-f4a8-11e6-8ba6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:15 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [33b76e24-50c8-11e7-a804-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:44 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer513e1a08?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:15 GMT']
ETag: ['"0x8D456CC90537BBE"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:16 GMT']
Date: ['Wed, 14 Jun 2017 06:10:44 GMT']
ETag: ['"0x8D4B2EC18151571"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [24028ff2-0001-0027-67b5-8885ff000000]
x-ms-request-id: [fbdede90-0001-009d-3ad4-e42e94000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [ac433542-f4a8-11e6-ae78-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:16 GMT']
x-ms-client-request-id: [33caccac-50c8-11e7-8dff-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer513e1a08/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:16 GMT']
ETag: ['"0x8D456CC9085F080"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:16 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC17BF5B1B"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:44 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [fd48fdcf-0001-0048-3db5-888f0c000000]
x-ms-request-id: [b8a745ea-0001-00d1-21d4-e4e98b000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,21 +51,22 @@ interactions:
Connection: [keep-alive]
Content-Length: ['7']
If-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ac786be6-f4a8-11e6-9b43-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:16 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [33e029e8-50c8-11e7-ad1d-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer513e1a08/blob1?comp=appendblock
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>OutOfRangeInput</Code><Message>One
of the request inputs is out of range.\nRequestId:fd48fddf-0001-0048-4cb5-888f0c000000\nTime:2017-02-17T00:33:16.7596890Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>OutOfRangeInput</Code><Message>One\
\ of the request inputs is out of range.\nRequestId:b8a745f2-0001-00d1-28d4-e4e98b000000\n\
Time:2017-06-14T06:10:45.8087389Z</Message></Error>"}
headers:
Content-Length: ['226']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:16 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [fd48fddf-0001-0048-4cb5-888f0c000000]
x-ms-request-id: [b8a745f2-0001-00d1-28d4-e4e98b000000]
x-ms-version: ['2016-05-31']
status: {code: 400, message: One of the request inputs is out of range.}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ace487d2-f4a8-11e6-b19f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:17 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34173b5a-50c8-11e7-8460-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1dd11941?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:16 GMT']
ETag: ['"0x8D456CC91235854"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:17 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC183EB9B6"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [b3bfba0d-0001-0011-4ab5-88088f000000]
x-ms-request-id: [32185270-0001-0083-0dd4-e4f479000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [ad1ec706-f4a8-11e6-b6f1-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:17 GMT']
x-ms-client-request-id: [342c68c0-50c8-11e7-8d49-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:17 GMT']
ETag: ['"0x8D456CC9165F485"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:17 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC181D1C08"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [359c688d-0001-0009-5eb5-88d7e8000000]
x-ms-request-id: [dcac121e-0001-002b-1cd4-e4206c000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:18 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ad591b1c-f4a8-11e6-aa38-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:18 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:45 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [343de77a-50c8-11e7-b2a9-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock
@ -61,14 +61,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==]
Date: ['Fri, 17 Feb 2017 00:33:17 GMT']
ETag: ['"0x8D456CC91755DEF"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:17 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC1821D7D3"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [359c68a1-0001-0009-71b5-88d7e8000000]
x-ms-request-id: [dcac1227-0001-002b-24d4-e4206c000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -77,10 +77,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:18 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ad68876e-f4a8-11e6-a0b8-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:18 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:45 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3442b1b6-50c8-11e7-a07c-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock
@ -88,14 +88,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==]
Date: ['Fri, 17 Feb 2017 00:33:17 GMT']
ETag: ['"0x8D456CC9184C772"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:18 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC18266C82"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['7']
x-ms-blob-committed-block-count: ['2']
x-ms-request-id: [359c68b6-0001-0009-05b5-88d7e8000000]
x-ms-request-id: [dcac1239-0001-002b-33d4-e4206c000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -104,10 +104,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:18 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ad77dfec-f4a8-11e6-a1af-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:18 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:45 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34475dda-50c8-11e7-a680-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock
@ -115,14 +115,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [giBgEwOK96+T6eqweyrlNg==]
Date: ['Fri, 17 Feb 2017 00:33:17 GMT']
ETag: ['"0x8D456CC919409FF"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:18 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC182BEBBB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['14']
x-ms-blob-committed-block-count: ['3']
x-ms-request-id: [359c68c8-0001-0009-16b5-88d7e8000000]
x-ms-request-id: [dcac1252-0001-002b-47d4-e4206c000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -131,10 +131,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:18 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ad8774d0-f4a8-11e6-b3c7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:18 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:45 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [344ee64c-50c8-11e7-bc5b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock
@ -142,14 +142,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==]
Date: ['Fri, 17 Feb 2017 00:33:17 GMT']
ETag: ['"0x8D456CC91A39A94"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:18 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC1833DC5E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['21']
x-ms-blob-committed-block-count: ['4']
x-ms-request-id: [359c68e0-0001-0009-2eb5-88d7e8000000]
x-ms-request-id: [dcac126e-0001-002b-63d4-e4206c000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -158,10 +158,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:18 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ad96cd68-f4a8-11e6-9284-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:18 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:45 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3454c162-50c8-11e7-a933-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:45 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1dd11941/blob1?comp=appendblock
@ -169,14 +169,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==]
Date: ['Fri, 17 Feb 2017 00:33:18 GMT']
ETag: ['"0x8D456CC91B2DD38"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:18 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC18390D6D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['28']
x-ms-blob-committed-block-count: ['5']
x-ms-request-id: [359c68f1-0001-0009-3fb5-88d7e8000000]
x-ms-request-id: [dcac127f-0001-002b-73d4-e4206c000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -184,9 +184,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ada5feca-f4a8-11e6-ba84-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:18 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3459cc46-50c8-11e7-8d51-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -198,16 +198,16 @@ interactions:
Content-Length: ['35']
Content-Range: [bytes 0-34/35]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:17 GMT']
ETag: ['"0x8D456CC91B2DD38"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:18 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC18390D6D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['5']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [b3bfbb02-0001-0011-39b5-88088f000000]
x-ms-request-id: [321852b0-0001-0083-3fd4-e4f479000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [adf1cea2-f4a8-11e6-9bae-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:19 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [347b3c00-50c8-11e7-9d5a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1ea1b3c?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:18 GMT']
ETag: ['"0x8D456CC92323FAF"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:19 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC1892328F"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9885ca76-0001-0036-58b5-881f4b000000]
x-ms-request-id: [90f03f83-0001-002e-70d4-e4d413000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [ae2892ba-f4a8-11e6-8067-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:19 GMT']
x-ms-client-request-id: [348f1052-50c8-11e7-820f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1ea1b3c/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:19 GMT']
ETag: ['"0x8D456CC926D7E03"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:19 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
ETag: ['"0x8D4B2EC187FBFD5"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [d5ba41a2-0001-0010-5fb5-885753000000]
x-ms-request-id: [bf11ccb5-0001-0039-7cd4-e41470000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,22 +50,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Modified-Since: ['Fri, 17 Feb 2017 00:48:19 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ae5fee40-f4a8-11e6-adba-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:19 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 06:25:46 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34a0cea6-50c8-11e7-bd90-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1ea1b3c/blob1?comp=appendblock
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:d5ba41ae-0001-0010-6ab5-885753000000\nTime:2017-02-17T00:33:19.6660065Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:bf11ccbe-0001-0039-04d4-e41470000000\n\
Time:2017-06-14T06:10:46.5656305Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:19 GMT']
Date: ['Wed, 14 Jun 2017 06:10:45 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [d5ba41ae-0001-0010-6ab5-885753000000]
x-ms-request-id: [bf11ccbe-0001-0039-04d4-e41470000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [aeacfca6-f4a8-11e6-830d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:20 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34bf8a48-50c8-11e7-adf1-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:20 GMT']
ETag: ['"0x8D456CC93024252"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:20 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC191771F4"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f3a795f6-0001-0004-75b5-881f3c000000]
x-ms-request-id: [647bc56d-0001-003c-02d4-e4e00f000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [aee7794c-f4a8-11e6-94e1-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:20 GMT']
x-ms-client-request-id: [34d28b4c-50c8-11e7-a628-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:19 GMT']
ETag: ['"0x8D456CC932C3D96"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:20 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC18C4EB77"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [287f1a85-0001-002e-0bb5-88c02c000000]
x-ms-request-id: [ae5d80d2-0001-0097-79d4-e4371d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
Connection: [keep-alive]
Content-Length: ['7']
If-None-Match: ['0x8D2C9167D53FC2C']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [af1e8464-f4a8-11e6-8f40-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:21 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34e5a28c-50c8-11e7-bfa0-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock
@ -61,14 +61,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==]
Date: ['Fri, 17 Feb 2017 00:33:20 GMT']
ETag: ['"0x8D456CC933ABCCB"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:20 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC18C9CE40"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [287f1a9c-0001-002e-1fb5-88c02c000000]
x-ms-request-id: [ae5d80e2-0001-0097-08d4-e4371d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
Connection: [keep-alive]
Content-Length: ['7']
If-None-Match: ['0x8D2C9167D53FC2C']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [af2d679a-f4a8-11e6-970e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:21 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34ea63e2-50c8-11e7-8d4f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock
@ -88,14 +88,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==]
Date: ['Fri, 17 Feb 2017 00:33:20 GMT']
ETag: ['"0x8D456CC93496319"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:21 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC18CE14C1"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['7']
x-ms-blob-committed-block-count: ['2']
x-ms-request-id: [287f1aae-0001-002e-30b5-88c02c000000]
x-ms-request-id: [ae5d80ef-0001-0097-14d4-e4371d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -105,9 +105,9 @@ interactions:
Connection: [keep-alive]
Content-Length: ['7']
If-None-Match: ['0x8D2C9167D53FC2C']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [af3bae74-f4a8-11e6-87ca-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:21 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34eed074-50c8-11e7-a6ba-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:46 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock
@ -115,14 +115,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [giBgEwOK96+T6eqweyrlNg==]
Date: ['Fri, 17 Feb 2017 00:33:20 GMT']
ETag: ['"0x8D456CC9358096C"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:21 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC18D2825E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['14']
x-ms-blob-committed-block-count: ['3']
x-ms-request-id: [287f1ac0-0001-002e-42b5-88c02c000000]
x-ms-request-id: [ae5d80f7-0001-0097-1bd4-e4371d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -132,9 +132,9 @@ interactions:
Connection: [keep-alive]
Content-Length: ['7']
If-None-Match: ['0x8D2C9167D53FC2C']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [af4a4378-f4a8-11e6-872e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:21 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34f34200-50c8-11e7-b51f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock
@ -142,14 +142,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==]
Date: ['Fri, 17 Feb 2017 00:33:20 GMT']
ETag: ['"0x8D456CC93666177"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:21 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC18D7170D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['21']
x-ms-blob-committed-block-count: ['4']
x-ms-request-id: [287f1ad2-0001-002e-54b5-88c02c000000]
x-ms-request-id: [ae5d8102-0001-0097-25d4-e4371d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -159,9 +159,9 @@ interactions:
Connection: [keep-alive]
Content-Length: ['7']
If-None-Match: ['0x8D2C9167D53FC2C']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [af58c592-f4a8-11e6-adab-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:21 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34f80c4c-50c8-11e7-ac9a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer51c91a1c/blob1?comp=appendblock
@ -169,14 +169,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==]
Date: ['Fri, 17 Feb 2017 00:33:20 GMT']
ETag: ['"0x8D456CC9374E0AF"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:21 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC18DC9642"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['28']
x-ms-blob-committed-block-count: ['5']
x-ms-request-id: [287f1ae7-0001-002e-69b5-88c02c000000]
x-ms-request-id: [ae5d8112-0001-0097-35d4-e4371d000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -184,9 +184,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [af6732e6-f4a8-11e6-9f60-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:21 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [34fdb8f4-50c8-11e7-86e5-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -198,16 +198,16 @@ interactions:
Content-Length: ['35']
Content-Range: [bytes 0-34/35]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:21 GMT']
ETag: ['"0x8D456CC9374E0AF"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:21 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC18DC9642"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['5']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [f3a796a4-0001-0004-21b5-881f3c000000]
x-ms-request-id: [647bc5b6-0001-003c-41d4-e4e00f000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [afadaafe-f4a8-11e6-8433-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:22 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [351bb488-50c8-11e7-9d84-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerda291c17?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:21 GMT']
ETag: ['"0x8D456CC93F23D42"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:22 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC196B9E6D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [e0050a94-0001-0001-44b5-88cde7000000]
x-ms-request-id: [fe9d465e-0001-00d6-36d4-e41f0e000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [afe773dc-f4a8-11e6-9df8-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:22 GMT']
x-ms-client-request-id: [352f0000-50c8-11e7-8c78-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerda291c17/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:21 GMT']
ETag: ['"0x8D456CC942F0C45"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:22 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC192061F7"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [573e8a3f-0001-0003-15b5-88735f000000]
x-ms-request-id: [c5d142ba-0001-0041-25d4-e47cc7000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -49,9 +49,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b02205dc-f4a8-11e6-a92c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:22 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [35412c00-50c8-11e7-b6ee-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerda291c17/blob1
@ -61,16 +61,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['0']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:21 GMT']
ETag: ['"0x8D456CC942F0C45"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:22 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
ETag: ['"0x8D4B2EC192061F7"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['0']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [573e8a51-0001-0003-26b5-88735f000000]
x-ms-request-id: [c5d142d0-0001-0041-38d4-e47cc7000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -79,22 +79,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-None-Match: ['"0x8D456CC942F0C45"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b030e912-f4a8-11e6-a11d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:22 GMT']
If-None-Match: ['"0x8D4B2EC192061F7"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [354594ba-50c8-11e7-8536-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerda291c17/blob1?comp=appendblock
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:573e8a6a-0001-0003-3ab5-88735f000000\nTime:2017-02-17T00:33:22.7890986Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:c5d142dd-0001-0041-44d4-e47cc7000000\n\
Time:2017-06-14T06:10:47.2103085Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:21 GMT']
Date: ['Wed, 14 Jun 2017 06:10:46 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [573e8a6a-0001-0003-3ab5-88735f000000]
x-ms-request-id: [c5d142dd-0001-0041-44d4-e47cc7000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b07a05d0-f4a8-11e6-9227-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:23 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [35624cfa-50c8-11e7-aad1-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer52411a24?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:23 GMT']
ETag: ['"0x8D456CC94BED0F2"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:23 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC19BED825"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:48 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [a1e0fa31-0001-001d-60b5-889f87000000]
x-ms-request-id: [481416de-0001-00a8-20d4-e480c1000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [b0b251c2-f4a8-11e6-b57a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:23 GMT']
x-ms-client-request-id: [3575ba0c-50c8-11e7-8281-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:23 GMT']
ETag: ['"0x8D456CC94F34A3B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:23 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC19669F28"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9b211872-0001-0015-59b5-888588000000]
x-ms-request-id: [32bde2d2-0001-009f-30d4-e42c6e000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:24 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b0e58830-f4a8-11e6-9a80-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:24 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:47 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [35875c6c-50c8-11e7-bedb-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:47 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock
@ -61,14 +61,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [TjjhPkKeLS6Els52i6m9Bg==]
Date: ['Fri, 17 Feb 2017 00:33:23 GMT']
ETag: ['"0x8D456CC9502DAE8"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:23 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC196BA92E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['0']
x-ms-blob-committed-block-count: ['1']
x-ms-request-id: [9b211885-0001-0015-6bb5-888588000000]
x-ms-request-id: [32bde2e4-0001-009f-3dd4-e42c6e000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -77,10 +77,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:24 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b0f863b6-f4a8-11e6-b4d1-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:24 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:47 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [358c59d4-50c8-11e7-8977-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock
@ -88,14 +88,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [ZOnmAD+J5F2p66g8NFSefA==]
Date: ['Fri, 17 Feb 2017 00:33:23 GMT']
ETag: ['"0x8D456CC9513A428"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:24 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC197016BA"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['7']
x-ms-blob-committed-block-count: ['2']
x-ms-request-id: [9b2118ab-0001-0015-0cb5-888588000000]
x-ms-request-id: [32bde2fa-0001-009f-51d4-e42c6e000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -104,10 +104,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:24 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b1066c58-f4a8-11e6-b2ed-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:24 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:47 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3590d30c-50c8-11e7-afe1-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock
@ -115,14 +115,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [giBgEwOK96+T6eqweyrlNg==]
Date: ['Fri, 17 Feb 2017 00:33:23 GMT']
ETag: ['"0x8D456CC9521AE0F"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:24 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC1974844E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['14']
x-ms-blob-committed-block-count: ['3']
x-ms-request-id: [9b2118bf-0001-0015-20b5-888588000000]
x-ms-request-id: [32bde315-0001-009f-69d4-e42c6e000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -131,10 +131,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:24 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b113fede-f4a8-11e6-8bc7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:24 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:47 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [35954cf8-50c8-11e7-9705-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock
@ -142,14 +142,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [FDhv5/Vy34Z9KKvEnjH2lQ==]
Date: ['Fri, 17 Feb 2017 00:33:23 GMT']
ETag: ['"0x8D456CC952F1BDC"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:24 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC197918F9"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['21']
x-ms-blob-committed-block-count: ['4']
x-ms-request-id: [9b2118d7-0001-0015-38b5-888588000000]
x-ms-request-id: [32bde327-0001-009f-7ad4-e42c6e000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -158,10 +158,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:24 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b1216eba-f4a8-11e6-b7b9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:24 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:47 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3599b9e8-50c8-11e7-ab6b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer52411a24/blob1?comp=appendblock
@ -169,14 +169,14 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [jkC3Z8KTocewrRQF+tkxeA==]
Date: ['Fri, 17 Feb 2017 00:33:23 GMT']
ETag: ['"0x8D456CC953CB0A0"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:24 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC197D8691"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-append-offset: ['28']
x-ms-blob-committed-block-count: ['5']
x-ms-request-id: [9b2118e7-0001-0015-48b5-888588000000]
x-ms-request-id: [32bde336-0001-009f-09d4-e42c6e000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -184,9 +184,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b12ef226-f4a8-11e6-9cf7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:24 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [359e30ee-50c8-11e7-acdf-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -198,16 +198,16 @@ interactions:
Content-Length: ['35']
Content-Range: [bytes 0-34/35]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:24 GMT']
ETag: ['"0x8D456CC953CB0A0"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:24 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC197D8691"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-committed-block-count: ['5']
x-ms-blob-type: [AppendBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [a1e0fae3-0001-001d-0eb5-889f87000000]
x-ms-request-id: [48141727-0001-00a8-5ed4-e480c1000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b1801310-f4a8-11e6-8d1b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:25 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [35bdc554-50c8-11e7-a66a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerdac91c1f?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:24 GMT']
ETag: ['"0x8D456CC95AF1304"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:25 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC1997B66F"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3933e931-0001-0013-5bb5-88b637000000]
x-ms-request-id: [3e72cdae-0001-012e-67d4-e49246000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,22 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [AppendBlob]
x-ms-client-request-id: [b1b77cdc-f4a8-11e6-869d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:25 GMT']
x-ms-client-request-id: [35d0b0fa-50c8-11e7-89ea-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerdac91c1f/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:25 GMT']
ETag: ['"0x8D456CC95FD6C11"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:25 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC19C6AA6C"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:48 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f365ad37-0001-0008-1bb5-888834000000]
x-ms-request-id: [fc2eb3c9-0001-00c2-7bd4-e4dc6a000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,22 +50,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['7']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:18:25 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b1f06934-f4a8-11e6-beb4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:25 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 05:55:48 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [35e7b0be-50c8-11e7-9fe0-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerdac91c1f/blob1?comp=appendblock
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:f365ad45-0001-0008-29b5-888834000000\nTime:2017-02-17T00:33:25.7083827Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:fc2eb3e4-0001-00c2-12d4-e4dc6a000000\n\
Time:2017-06-14T06:10:48.3641006Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:25 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [f365ad45-0001-0008-29b5-888834000000]
x-ms-request-id: [fc2eb3e4-0001-00c2-12d4-e4dc6a000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b2348210-f4a8-11e6-8159-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:26 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [35ff0558-50c8-11e7-943a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerba52179c?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:25 GMT']
ETag: ['"0x8D456CC967CE7C5"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:26 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC1A0F0B19"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:48 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3fcf6f87-0001-002b-0eb5-8812f7000000]
x-ms-request-id: [fc829f3f-0001-0025-60d4-e4cc67000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b26e1c0a-f4a8-11e6-a89e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:26 GMT']
x-ms-client-request-id: [36106f02-50c8-11e7-a85b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerba52179c/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:25 GMT']
ETag: ['"0x8D456CC968A1E4E"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:26 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC19F47944"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:48 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3fcf6f95-0001-002b-1ab5-8812f7000000]
x-ms-request-id: [fc829f4a-0001-0025-68d4-e4cc67000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b27d39e2-f4a8-11e6-83f8-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:26 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [36153018-50c8-11e7-8fe6-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerba52179c/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:25 GMT']
ETag: ['"0x8D456CC968A1E4E"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:26 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
ETag: ['"0x8D4B2EC19F47944"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:48 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [3fcf6fa3-0001-002b-28b5-8812f7000000]
x-ms-request-id: [fc829f55-0001-0025-72d4-e4cc67000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -80,20 +80,20 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Match: ['"0x8D456CC968A1E4E"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b28be276-f4a8-11e6-a78e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:26 GMT']
If-Match: ['"0x8D4B2EC19F47944"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [36198276-50c8-11e7-8aae-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:48 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainerba52179c/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:26 GMT']
Date: ['Wed, 14 Jun 2017 06:10:47 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3fcf6fad-0001-002b-32b5-8812f7000000]
x-ms-request-id: [fc829f5c-0001-0025-78d4-e4cc67000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b2d3a670-f4a8-11e6-b471-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:27 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [363153e2-50c8-11e7-a187-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer36411997?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:26 GMT']
ETag: ['"0x8D456CC971699EB"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:27 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1ACBDDD9"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5a88b983-0001-0012-2bb5-88e9eb000000]
x-ms-request-id: [7950ede6-0001-004f-4fd4-e490cc000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b30a16d8-f4a8-11e6-b2a2-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:27 GMT']
x-ms-client-request-id: [36467648-50c8-11e7-913a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer36411997/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:26 GMT']
ETag: ['"0x8D456CC972612F3"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:27 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1A2A86F1"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:48 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5a88b9a1-0001-0012-45b5-88e9eb000000]
x-ms-request-id: [7950edfd-0001-004f-5fd4-e490cc000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -52,21 +52,22 @@ interactions:
Connection: [keep-alive]
Content-Length: ['0']
If-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b31870ba-f4a8-11e6-8d7d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:27 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [364b8ab6-50c8-11e7-9a10-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainer36411997/blob1
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:5a88b9b5-0001-0012-59b5-88e9eb000000\nTime:2017-02-17T00:33:27.6130594Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:7950ee10-0001-004f-6fd4-e490cc000000\n\
Time:2017-06-14T06:10:49.8357261Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:26 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [5a88b9b5-0001-0012-59b5-88e9eb000000]
x-ms-request-id: [7950ee10-0001-004f-6fd4-e490cc000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b35d26ec-f4a8-11e6-8f3c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:28 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [36655534-50c8-11e7-a3aa-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer3b618d0?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:27 GMT']
ETag: ['"0x8D456CC9794994D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:28 GMT']
Date: ['Wed, 14 Jun 2017 06:10:48 GMT']
ETag: ['"0x8D4B2EC1A54FBF7"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:48 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ba961610-0001-0021-70b5-88b640000000]
x-ms-request-id: [6336900f-0001-011a-46d4-e43dee000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b39480da-f4a8-11e6-baaf-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:28 GMT']
x-ms-client-request-id: [367839ca-50c8-11e7-bdaf-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer3b618d0/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:27 GMT']
ETag: ['"0x8D456CC97B0A231"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:28 GMT']
Date: ['Wed, 14 Jun 2017 06:10:48 GMT']
ETag: ['"0x8D4B2EC1A5CEA7C"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ba961620-0001-0021-7eb5-88b640000000]
x-ms-request-id: [6336902e-0001-011a-60d4-e43dee000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,20 +51,20 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:28 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b3a31854-f4a8-11e6-ac7c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:28 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:49 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [367e2dfa-50c8-11e7-8326-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainer3b618d0/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:27 GMT']
Date: ['Wed, 14 Jun 2017 06:10:48 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ba96163d-0001-0021-1bb5-88b640000000]
x-ms-request-id: [63369047-0001-011a-78d4-e43dee000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b3ee4424-f4a8-11e6-af92-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:29 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [369eb99c-50c8-11e7-8806-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer859a1acb?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:28 GMT']
ETag: ['"0x8D456CC98336AE6"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:29 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1AC7D02F"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [42baf218-0001-0026-50b5-88da23000000]
x-ms-request-id: [153f6450-0001-0131-02d4-e44956000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b4256364-f4a8-11e6-a550-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:29 GMT']
x-ms-client-request-id: [36b0b92e-50c8-11e7-a6a5-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer859a1acb/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:28 GMT']
ETag: ['"0x8D456CC9840AFC5"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:29 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1A95427D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [42baf22c-0001-0026-62b5-88da23000000]
x-ms-request-id: [153f6462-0001-0131-0cd4-e44956000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,22 +51,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Modified-Since: ['Fri, 17 Feb 2017 00:48:29 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b4340bf0-f4a8-11e6-8c2e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:29 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 06:25:49 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [36b6c08c-50c8-11e7-88b4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:49 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainer859a1acb/blob1
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:42baf246-0001-0026-7cb5-88da23000000\nTime:2017-02-17T00:33:29.4876360Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:153f6473-0001-0131-19d4-e44956000000\n\
Time:2017-06-14T06:10:49.8181663Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:28 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [42baf246-0001-0026-7cb5-88da23000000]
x-ms-request-id: [153f6473-0001-0131-19d4-e44956000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b47a839a-f4a8-11e6-b7fb-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:30 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [36d4c602-50c8-11e7-b1a2-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer36cc19ab?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:30 GMT']
ETag: ['"0x8D456CC98C33E8A"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:30 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1B165888"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [d594f505-0001-0023-7eb5-8808f8000000]
x-ms-request-id: [1e5e08b1-0001-006c-1ed4-e4ff07000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b4b46276-f4a8-11e6-8151-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:30 GMT']
x-ms-client-request-id: [36e88c18-50c8-11e7-ade0-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer36cc19ab/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:30 GMT']
ETag: ['"0x8D456CC98D06F47"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:30 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1ACCD713"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [d594f519-0001-0023-0fb5-8808f8000000]
x-ms-request-id: [1e5e08c2-0001-006c-2dd4-e4ff07000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -52,19 +52,19 @@ interactions:
Connection: [keep-alive]
Content-Length: ['0']
If-None-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b4c3baec-f4a8-11e6-ad9e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:30 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [36edaa78-50c8-11e7-bac4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainer36cc19ab/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:30 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [d594f52e-0001-0023-24b5-8808f8000000]
x-ms-request-id: [1e5e08cc-0001-006c-36d4-e4ff07000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b5080f66-f4a8-11e6-81b5-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:31 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [37081ffa-50c8-11e7-acd0-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerbcf71ba6?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:30 GMT']
ETag: ['"0x8D456CC99486407"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:31 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1B079C13"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [15d986bc-0001-0028-4bb5-88f393000000]
x-ms-request-id: [b1d2c2c7-0001-0046-16d4-e48a42000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b53f1b22-f4a8-11e6-991a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:31 GMT']
x-ms-client-request-id: [371acc88-50c8-11e7-982c-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerbcf71ba6/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:30 GMT']
ETag: ['"0x8D456CC995A6243"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:31 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1AFFD6F1"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [15d986d4-0001-0028-61b5-88f393000000]
x-ms-request-id: [b1d2c2df-0001-0046-2cd4-e48a42000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b54d5d46-f4a8-11e6-b853-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:31 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3720da86-50c8-11e7-8e89-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerbcf71ba6/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:30 GMT']
ETag: ['"0x8D456CC995A6243"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:31 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
ETag: ['"0x8D4B2EC1AFFD6F1"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [15d986ef-0001-0028-7bb5-88f393000000]
x-ms-request-id: [b1d2c2ef-0001-0046-3bd4-e48a42000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -80,22 +80,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-None-Match: ['"0x8D456CC995A6243"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b55b5776-f4a8-11e6-aafc-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:31 GMT']
If-None-Match: ['"0x8D4B2EC1AFFD6F1"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3725cbba-50c8-11e7-9f2e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainerbcf71ba6/blob1
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:15d98705-0001-0028-11b5-88f393000000\nTime:2017-02-17T00:33:31.3878033Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:b1d2c2fd-0001-0046-49d4-e48a42000000\n\
Time:2017-06-14T06:10:50.2652831Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:30 GMT']
Date: ['Wed, 14 Jun 2017 06:10:49 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [15d98705-0001-0028-11b5-88f393000000]
x-ms-request-id: [b1d2c2fd-0001-0046-49d4-e48a42000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b5a340ec-f4a8-11e6-a81f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:32 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3740a110-50c8-11e7-97d8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer374419b3?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:32 GMT']
ETag: ['"0x8D456CC99E57246"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:32 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
ETag: ['"0x8D4B2EC1B61CD5A"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [a695b5e3-0001-0041-51b5-88cadf000000]
x-ms-request-id: [3f344961-0001-00d5-12d4-e41c09000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b5da1278-f4a8-11e6-b812-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:32 GMT']
x-ms-client-request-id: [375393c2-50c8-11e7-8601-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:50 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer374419b3/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:32 GMT']
ETag: ['"0x8D456CC99F56C9D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:32 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
ETag: ['"0x8D4B2EC1B3AA069"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [a695b5f9-0001-0041-65b5-88cadf000000]
x-ms-request-id: [3f344974-0001-00d5-21d4-e41c09000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,20 +51,20 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:32 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b5e88066-f4a8-11e6-8cd7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:32 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:50 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [375bae5c-50c8-11e7-9961-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:51 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainer374419b3/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:32 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [a695b60b-0001-0041-77b5-88cadf000000]
x-ms-request-id: [3f34498a-0001-00d5-34d4-e41c09000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b6311b5e-f4a8-11e6-8806-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:32 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3778621e-50c8-11e7-a80a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:51 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerbd971bae?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:33 GMT']
ETag: ['"0x8D456CC9A7618D1"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:33 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
ETag: ['"0x8D4B2EC1B9123A2"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:51 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ccde61f2-0001-0032-6bb5-88924c000000]
x-ms-request-id: [cdd3bbb3-0001-0060-31d4-e411f6000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b66a3d34-f4a8-11e6-8762-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:33 GMT']
x-ms-client-request-id: [378bbc10-50c8-11e7-b7f4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:51 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerbd971bae/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:33 GMT']
ETag: ['"0x8D456CC9A85C83D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:33 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
ETag: ['"0x8D4B2EC1B6FEA9F"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ccde620c-0001-0032-02b5-88924c000000]
x-ms-request-id: [cdd3bbc0-0001-0060-3ad4-e411f6000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,22 +51,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:18:32 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b678e5b4-f4a8-11e6-9cf8-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:33 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 05:55:51 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3790a43a-50c8-11e7-a077-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:51 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainerbd971bae/blob1
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:ccde6220-0001-0032-16b5-88924c000000\nTime:2017-02-17T00:33:33.2760639Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:cdd3bbc8-0001-0060-42d4-e411f6000000\n\
Time:2017-06-14T06:10:51.1245669Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:33 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [ccde6220-0001-0032-16b5-88924c000000]
x-ms-request-id: [cdd3bbc8-0001-0060-42d4-e411f6000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b6be866e-f4a8-11e6-b632-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:33 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [37a86530-50c8-11e7-9ac2-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:51 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer88321af4?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:33 GMT']
ETag: ['"0x8D456CC9B00C0C5"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:33 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
ETag: ['"0x8D4B2EC1BCF1D9D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:51 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5ee6f76c-0001-002d-0fb5-882148000000]
x-ms-request-id: [32a04736-0001-0063-1fd4-e412f1000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,42 +26,43 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:34 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b6f6338c-f4a8-11e6-a8e4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:34 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:51 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [37baded8-50c8-11e7-aaa6-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:51 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainer88321af4?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:33 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5ee6f789-0001-002d-2ab5-882148000000]
x-ms-request-id: [32a04740-0001-0063-26d4-e412f1000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b707af4a-f4a8-11e6-9665-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:34 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [37bf2cc0-50c8-11e7-82f4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:51 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer88321af4?restype=container
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ContainerNotFound</Code><Message>The
specified container does not exist.\nRequestId:5ee6f7a7-0001-002d-48b5-882148000000\nTime:2017-02-17T00:33:34.2047641Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ContainerNotFound</Code><Message>The\
\ specified container does not exist.\nRequestId:32a0474f-0001-0063-32d4-e412f1000000\n\
Time:2017-06-14T06:10:51.5257344Z</Message></Error>"}
headers:
Content-Length: ['225']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:33 GMT']
Date: ['Wed, 14 Jun 2017 06:10:50 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [5ee6f7a7-0001-002d-48b5-882148000000]
x-ms-request-id: [32a0474f-0001-0063-32d4-e412f1000000]
x-ms-version: ['2016-05-31']
status: {code: 404, message: The specified container does not exist.}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b74e1376-f4a8-11e6-9ef7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:34 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [37d881d8-50c8-11e7-a1b8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:51 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer14d91cef?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:34 GMT']
ETag: ['"0x8D456CC9B9320CA"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:34 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
ETag: ['"0x8D4B2EC1C44BB7E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [59598903-0001-0046-74b5-88a6bc000000]
x-ms-request-id: [3d276592-0001-002a-77d4-e42191000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Modified-Since: ['Fri, 17 Feb 2017 00:48:35 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b785bb8a-f4a8-11e6-ba32-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:35 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 06:25:52 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [37ed2734-50c8-11e7-8db1-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainer14d91cef?restype=container
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:5959891f-0001-0046-0bb5-88a6bc000000\nTime:2017-02-17T00:33:35.0480460Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:3d2765a7-0001-002a-07d4-e42191000000\n\
Time:2017-06-14T06:10:52.2695264Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:34 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [5959891f-0001-0046-0bb5-88a6bc000000]
x-ms-request-id: [3d2765a7-0001-002a-07d4-e42191000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b7cb4cd2-f4a8-11e6-a51c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:35 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [380bb4a8-50c8-11e7-86da-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerc0081bd7?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:35 GMT']
ETag: ['"0x8D456CC9C0F1E82"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:35 GMT']
Date: ['Wed, 14 Jun 2017 06:10:51 GMT']
ETag: ['"0x8D4B2EC1C2273FA"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [cc0f5dcf-0001-0044-48b5-881804000000]
x-ms-request-id: [ce470fc9-0001-00f4-3fd4-e47138000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,42 +26,43 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:36 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b801f6cc-f4a8-11e6-a951-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:36 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:52 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [381d3eac-50c8-11e7-9b3c-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainerc0081bd7?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:35 GMT']
Date: ['Wed, 14 Jun 2017 06:10:51 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [cc0f5de0-0001-0044-57b5-881804000000]
x-ms-request-id: [ce470fd4-0001-00f4-46d4-e47138000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
- request:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b81064ba-f4a8-11e6-a237-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:36 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [38225ce8-50c8-11e7-aa9b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainerc0081bd7?restype=container
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ContainerNotFound</Code><Message>The
specified container does not exist.\nRequestId:cc0f5dee-0001-0044-64b5-881804000000\nTime:2017-02-17T00:33:35.9536388Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ContainerNotFound</Code><Message>The\
\ specified container does not exist.\nRequestId:ce470fdf-0001-00f4-50d4-e47138000000\n\
Time:2017-06-14T06:10:52.0798968Z</Message></Error>"}
headers:
Content-Length: ['225']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:35 GMT']
Date: ['Wed, 14 Jun 2017 06:10:51 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [cc0f5dee-0001-0044-64b5-881804000000]
x-ms-request-id: [ce470fdf-0001-00f4-50d4-e47138000000]
x-ms-version: ['2016-05-31']
status: {code: 404, message: The specified container does not exist.}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b85505f6-f4a8-11e6-83b6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:36 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3839132e-50c8-11e7-8362-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer511e1dd2?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:36 GMT']
ETag: ['"0x8D456CC9C9EE693"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:36 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
ETag: ['"0x8D4B2EC1C4DFE98"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [aeab82b4-0001-000c-46b5-880533000000]
x-ms-request-id: [098afa95-0001-00cf-48d4-e43366000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,22 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:18:36 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b88f06c0-f4a8-11e6-9df9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:36 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 05:55:52 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [384e6730-50c8-11e7-af9d-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: DELETE
uri: https://storagename.blob.core.windows.net/utcontainer511e1dd2?restype=container
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:aeab82d4-0001-000c-62b5-880533000000\nTime:2017-02-17T00:33:36.8079176Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:098afaa5-0001-00cf-55d4-e43366000000\n\
Time:2017-06-14T06:10:52.3362310Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:36 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [aeab82d4-0001-000c-62b5-880533000000]
x-ms-request-id: [098afaa5-0001-00cf-55d4-e43366000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b8d81ae8-f4a8-11e6-b1f6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:37 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3868e2f6-50c8-11e7-b6b5-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer505b1a09?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:36 GMT']
ETag: ['"0x8D456CC9D1E3968"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:37 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
ETag: ['"0x8D4B2EC1C8D764D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [af9361e3-0001-0039-66b5-886927000000]
x-ms-request-id: [6b372590-0001-0122-6fd4-e47cb7000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b90c6bb4-f4a8-11e6-9297-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:37 GMT']
x-ms-client-request-id: [387dabe4-50c8-11e7-9f82-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer505b1a09/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:36 GMT']
ETag: ['"0x8D456CC9D27F6B0"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:37 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
ETag: ['"0x8D4B2EC1C61C85B"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [af9361f3-0001-0039-72b5-886927000000]
x-ms-request-id: [6b37259d-0001-0122-78d4-e47cb7000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b91a3d48-f4a8-11e6-9c95-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:37 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [38828dfe-50c8-11e7-9d4c-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:52 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer505b1a09/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:36 GMT']
ETag: ['"0x8D456CC9D27F6B0"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:37 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
ETag: ['"0x8D4B2EC1C61C85B"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [af9361fe-0001-0039-7cb5-886927000000]
x-ms-request-id: [6b3725af-0001-0122-07d4-e47cb7000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -79,23 +79,23 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Match: ['"0x8D456CC9D27F6B0"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b9278610-f4a8-11e6-ac60-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:37 GMT']
If-Match: ['"0x8D4B2EC1C61C85B"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [38874906-50c8-11e7-a6c8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer505b1a09/blob1?comp=metadata
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:36 GMT']
ETag: ['"0x8D456CC9D27F6B0"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:37 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
ETag: ['"0x8D4B2EC1C61C85B"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-request-id: [af936208-0001-0039-06b5-886927000000]
x-ms-request-id: [6b3725bd-0001-0122-15d4-e47cb7000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b96fcc1c-f4a8-11e6-85f8-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:38 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [38a1e2f4-50c8-11e7-afd7-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd85c1c04?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:38 GMT']
ETag: ['"0x8D456CC9DAB0312"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:38 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
ETag: ['"0x8D4B2EC1D1397D6"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:53 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [93c38984-0001-001b-30b5-88ac38000000]
x-ms-request-id: [0153b657-0001-0071-0bd4-e426ed000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [b9a3e4d0-f4a8-11e6-bf0c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:38 GMT']
x-ms-client-request-id: [38b7f952-50c8-11e7-aef7-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd85c1c04/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:38 GMT']
ETag: ['"0x8D456CC9DBF7E82"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:38 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
ETag: ['"0x8D4B2EC1C9D7C57"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [93c3899a-0001-001b-44b5-88ac38000000]
x-ms-request-id: [0153b66a-0001-0071-1ad4-e426ed000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,22 +51,23 @@ interactions:
headers:
Connection: [keep-alive]
If-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b9b1dd78-f4a8-11e6-bf37-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:38 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [38be6828-50c8-11e7-a76e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainerd85c1c04/blob1?comp=metadata
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:93c389ac-0001-001b-55b5-88ac38000000\nTime:2017-02-17T00:33:38.6610122Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:0153b67a-0001-0071-27d4-e426ed000000\n\
Time:2017-06-14T06:10:53.6712422Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:38 GMT']
Date: ['Wed, 14 Jun 2017 06:10:52 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [93c389ac-0001-001b-55b5-88ac38000000]
x-ms-request-id: [0153b67a-0001-0071-27d4-e426ed000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [b9f9675a-f4a8-11e6-ab82-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:39 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [38d6d0be-50c8-11e7-9350-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera0f71b3d?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:39 GMT']
ETag: ['"0x8D456CC9E33431D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:39 GMT']
Date: ['Wed, 14 Jun 2017 06:10:53 GMT']
ETag: ['"0x8D4B2EC1D6EA93D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [1938800c-0001-0016-2cb5-8864ec000000]
x-ms-request-id: [4405de54-0001-0087-46d4-e401fb000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [ba2d7d7e-f4a8-11e6-a9cd-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:39 GMT']
x-ms-client-request-id: [38e897fe-50c8-11e7-9dcb-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera0f71b3d/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:39 GMT']
ETag: ['"0x8D456CC9E48D52D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:39 GMT']
Date: ['Wed, 14 Jun 2017 06:10:53 GMT']
ETag: ['"0x8D4B2EC1CCC83E6"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:53 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [19388020-0001-0016-3cb5-8864ec000000]
x-ms-request-id: [4405de7a-0001-0087-66d4-e401fb000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,23 +50,23 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:39 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ba3b6294-f4a8-11e6-a673-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:39 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:53 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [38ed5252-50c8-11e7-9da8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainera0f71b3d/blob1?comp=metadata
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:39 GMT']
ETag: ['"0x8D456CC9E48D52D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:39 GMT']
Date: ['Wed, 14 Jun 2017 06:10:53 GMT']
ETag: ['"0x8D4B2EC1CCC83E6"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:53 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-request-id: [1938802c-0001-0016-48b5-8864ec000000]
x-ms-request-id: [4405de92-0001-0087-7cd4-e401fb000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ba7d45a4-f4a8-11e6-bfb6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:40 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3904b836-50c8-11e7-9a96-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer2f0b1d38?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:40 GMT']
ETag: ['"0x8D456CC9EC6E05B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:40 GMT']
Date: ['Wed, 14 Jun 2017 06:10:53 GMT']
ETag: ['"0x8D4B2EC1D308A4C"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:53 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [6e67af3d-0001-0000-46b5-88923b000000]
x-ms-request-id: [579feca7-0001-000c-1ed4-e4ba25000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bab6e458-f4a8-11e6-9b43-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:40 GMT']
x-ms-client-request-id: [39161ed8-50c8-11e7-aead-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer2f0b1d38/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:40 GMT']
ETag: ['"0x8D456CC9ED2EF3E"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:40 GMT']
Date: ['Wed, 14 Jun 2017 06:10:53 GMT']
ETag: ['"0x8D4B2EC1CFA52BE"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:53 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [6e67af53-0001-0000-5ab5-88923b000000]
x-ms-request-id: [579fecb8-0001-000c-2bd4-e4ba25000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Modified-Since: ['Fri, 17 Feb 2017 00:48:40 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bac615b8-f4a8-11e6-828a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:40 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 06:25:53 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [391b4f0c-50c8-11e7-a4bf-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:53 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer2f0b1d38/blob1?comp=metadata
@ -61,10 +61,10 @@ interactions:
body: {string: ''}
headers:
Content-Length: ['0']
Date: ['Fri, 17 Feb 2017 00:33:40 GMT']
Date: ['Wed, 14 Jun 2017 06:10:53 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [6e67af62-0001-0000-69b5-88923b000000]
x-ms-request-id: [579fecc7-0001-000c-36d4-e4ba25000000]
x-ms-version: ['2016-05-31']
status: {code: 304, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bb0e9d30-f4a8-11e6-8a09-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:41 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3936ebde-50c8-11e7-b122-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd8e71c18?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:41 GMT']
ETag: ['"0x8D456CC9F51D932"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:41 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1DC11781"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [fcbc8989-0001-0022-1db5-885724000000]
x-ms-request-id: [52948bfb-0001-00af-24d4-e47644000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bb4515be-f4a8-11e6-8315-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:41 GMT']
x-ms-client-request-id: [394adf7a-50c8-11e7-82b3-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd8e71c18/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:41 GMT']
ETag: ['"0x8D456CC9F61281B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:41 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1D2F4ECB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:53 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [fcbc899c-0001-0022-2cb5-885724000000]
x-ms-request-id: [52948c0f-0001-00af-34d4-e47644000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,22 +51,22 @@ interactions:
headers:
Connection: [keep-alive]
If-None-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bb535c9a-f4a8-11e6-b8b2-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:41 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3950b614-50c8-11e7-a713-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainerd8e71c18/blob1?comp=metadata
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:41 GMT']
ETag: ['"0x8D456CC9F61281B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:41 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1D2F4ECB"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:53 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-request-id: [fcbc89a8-0001-0022-38b5-885724000000]
x-ms-request-id: [52948c1a-0001-00af-3dd4-e47644000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bb9e2ec8-f4a8-11e6-9e3e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:42 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3967cd08-50c8-11e7-b12e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6b421e13?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:41 GMT']
ETag: ['"0x8D456CC9FE43635"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:42 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1DBD52BE"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [e8cf5925-0001-000a-3cb5-88368c000000]
x-ms-request-id: [bdcdcf57-0001-0062-69d4-e4130c000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bbd4b1ba-f4a8-11e6-b1ed-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:42 GMT']
x-ms-client-request-id: [39794574-50c8-11e7-a15e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6b421e13/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:41 GMT']
ETag: ['"0x8D456CC9FEFFD3B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:42 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1D5D44BE"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [e8cf5937-0001-000a-4cb5-88368c000000]
x-ms-request-id: [bdcdcf5d-0001-0062-6dd4-e4130c000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bbe2f88a-f4a8-11e6-a765-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:42 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [397e0dc0-50c8-11e7-a1ed-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer6b421e13/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:41 GMT']
ETag: ['"0x8D456CC9FEFFD3B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:42 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1D5D44BE"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [e8cf5940-0001-000a-55b5-88368c000000]
x-ms-request-id: [bdcdcf66-0001-0062-75d4-e4130c000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -79,10 +79,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-None-Match: ['"0x8D456CC9FEFFD3B"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bbf0dda2-f4a8-11e6-8f66-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:42 GMT']
If-None-Match: ['"0x8D4B2EC1D5D44BE"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [39827a78-50c8-11e7-922b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer6b421e13/blob1?comp=metadata
@ -90,10 +90,10 @@ interactions:
body: {string: ''}
headers:
Content-Length: ['0']
Date: ['Fri, 17 Feb 2017 00:33:41 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [e8cf594f-0001-000a-64b5-88368c000000]
x-ms-request-id: [bdcdcf6a-0001-0062-79d4-e4130c000000]
x-ms-version: ['2016-05-31']
status: {code: 304, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bc3d4a5c-f4a8-11e6-8cfb-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:43 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [399cfb6c-50c8-11e7-af42-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd95f1c20?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:42 GMT']
ETag: ['"0x8D456CCA079CB28"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:43 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1DA18D78"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [2844433b-0001-0040-0bb5-889503000000]
x-ms-request-id: [b7be921d-0001-0051-5dd4-e44a21000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bc73e39a-f4a8-11e6-80f4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:43 GMT']
x-ms-client-request-id: [39b15dd2-50c8-11e7-b3d4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:54 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerd95f1c20/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:42 GMT']
ETag: ['"0x8D456CCA08FE99A"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:43 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1D954E90"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [28444351-0001-0040-1cb5-889503000000]
x-ms-request-id: [b7be9229-0001-0051-67d4-e44a21000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,23 +50,23 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:43 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bc822654-f4a8-11e6-9a05-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:43 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:55 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [39b6c818-50c8-11e7-b271-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainerd95f1c20/blob1?comp=metadata
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:42 GMT']
ETag: ['"0x8D456CCA08FE99A"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:43 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1D954E90"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-request-id: [28444363-0001-0040-2eb5-889503000000]
x-ms-request-id: [b7be9236-0001-0051-72d4-e44a21000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bcce98c2-f4a8-11e6-a1b9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:44 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [39d02662-50c8-11e7-bc68-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6be21e1b?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:43 GMT']
ETag: ['"0x8D456CCA1137C45"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:44 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1DEC46CC"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [6dd65919-0001-0031-4db5-887328000000]
x-ms-request-id: [9149df80-0001-0090-46d4-e4c198000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bd022168-f4a8-11e6-8600-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:44 GMT']
x-ms-client-request-id: [39e25208-50c8-11e7-979e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6be21e1b/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:43 GMT']
ETag: ['"0x8D456CCA11D8630"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:44 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
ETag: ['"0x8D4B2EC1DC62B32"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [6dd6592a-0001-0031-5cb5-887328000000]
x-ms-request-id: [9149df8c-0001-0090-4ed4-e4c198000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,23 +50,24 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:18:44 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bd0fdf74-f4a8-11e6-9ffd-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:44 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 05:55:55 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [39e6e688-50c8-11e7-994e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer6be21e1b/blob1?comp=metadata
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:6dd65939-0001-0031-6bb5-887328000000\nTime:2017-02-17T00:33:44.4118639Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:9149df97-0001-0090-57d4-e4c198000000\n\
Time:2017-06-14T06:10:55.0762884Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:43 GMT']
Date: ['Wed, 14 Jun 2017 06:10:54 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [6dd65939-0001-0031-6bb5-887328000000]
x-ms-request-id: [9149df97-0001-0090-57d4-e4c198000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bd5c4d1a-f4a8-11e6-b7db-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:45 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3a05f4b4-50c8-11e7-867f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer8a2f1b15?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:44 GMT']
ETag: ['"0x8D456CCA1A51212"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:45 GMT']
Date: ['Wed, 14 Jun 2017 06:10:55 GMT']
ETag: ['"0x8D4B2EC1E2F6E4F"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [c1ac955f-0001-000e-0ab5-88bb8b000000]
x-ms-request-id: [79031a2e-0001-001a-4dd4-e47bbb000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bd966698-f4a8-11e6-bd98-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:45 GMT']
x-ms-client-request-id: [3a1cf9a2-50c8-11e7-8934-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer8a2f1b15/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:44 GMT']
ETag: ['"0x8D456CCA1B29CF6"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:45 GMT']
Date: ['Wed, 14 Jun 2017 06:10:55 GMT']
ETag: ['"0x8D4B2EC1E0142D3"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [c1ac9571-0001-000e-1ab5-88bb8b000000]
x-ms-request-id: [79031a4c-0001-001a-62d4-e47bbb000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bda5cdca-f4a8-11e6-a90f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:45 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3a22045a-50c8-11e7-b0a3-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer8a2f1b15/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:44 GMT']
ETag: ['"0x8D456CCA1B29CF6"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:45 GMT']
Date: ['Wed, 14 Jun 2017 06:10:55 GMT']
ETag: ['"0x8D4B2EC1E0142D3"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [c1ac958b-0001-000e-32b5-88bb8b000000]
x-ms-request-id: [79031a54-0001-001a-69d4-e47bbb000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -79,10 +79,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Match: ['"0x8D456CCA1B29CF6"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bdb49d74-f4a8-11e6-9b4b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:45 GMT']
If-Match: ['"0x8D4B2EC1E0142D3"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3a26b314-50c8-11e7-9a30-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer8a2f1b15/blob1
@ -93,15 +93,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:44 GMT']
ETag: ['"0x8D456CCA1B29CF6"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:45 GMT']
Date: ['Wed, 14 Jun 2017 06:10:55 GMT']
ETag: ['"0x8D4B2EC1E0142D3"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [c1ac9598-0001-000e-3fb5-88bb8b000000]
x-ms-request-id: [79031a5b-0001-001a-70d4-e47bbb000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bdfa78d8-f4a8-11e6-903c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:46 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3a457a64-50c8-11e7-b478-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:55 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer177b1d10?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:45 GMT']
ETag: ['"0x8D456CCA24703F4"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:46 GMT']
Date: ['Wed, 14 Jun 2017 06:10:55 GMT']
ETag: ['"0x8D4B2EC1E5A3D7E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ad82f1cd-0001-002c-03b5-887e94000000]
x-ms-request-id: [f6f268ab-0001-0126-53d4-e48935000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [be36cff8-f4a8-11e6-92b4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:46 GMT']
x-ms-client-request-id: [3a56f9b6-50c8-11e7-b756-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer177b1d10/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:45 GMT']
ETag: ['"0x8D456CCA252FE78"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:46 GMT']
Date: ['Wed, 14 Jun 2017 06:10:55 GMT']
ETag: ['"0x8D4B2EC1E3B48D4"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ad82f1e5-0001-002c-19b5-887e94000000]
x-ms-request-id: [f6f268b4-0001-0126-5ad4-e48935000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,20 +51,20 @@ interactions:
headers:
Connection: [keep-alive]
If-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [be46631c-f4a8-11e6-a7f8-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:46 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3a5c78fa-50c8-11e7-b057-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer177b1d10/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:45 GMT']
Date: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-request-id: [ad82f1fa-0001-002c-2eb5-887e94000000]
x-ms-request-id: [f6f268bd-0001-0126-61d4-e48935000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [be8d0aac-f4a8-11e6-b9b1-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:46 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3a7974d0-50c8-11e7-a6ea-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerddef1c49?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:46 GMT']
ETag: ['"0x8D456CCA2D31676"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:47 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1ED2423D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [359c7df3-0001-0009-47b5-88d7e8000000]
x-ms-request-id: [2215ff12-0001-0061-48d4-e4100b000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bec3b1de-f4a8-11e6-a5d5-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:47 GMT']
x-ms-client-request-id: [3a8c2454-50c8-11e7-98e3-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerddef1c49/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:46 GMT']
ETag: ['"0x8D456CCA2DEED53"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:47 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1E701DCD"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [359c7e0e-0001-0009-5eb5-88d7e8000000]
x-ms-request-id: [2215ff1e-0001-0061-50d4-e4100b000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:47 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bed21e5c-f4a8-11e6-bd4a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:47 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:56 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3a90e082-50c8-11e7-a71a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerddef1c49/blob1
@ -64,15 +64,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:46 GMT']
ETag: ['"0x8D456CCA2DEED53"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:47 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1E701DCD"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:55 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [359c7e1d-0001-0009-6db5-88d7e8000000]
x-ms-request-id: [2215ff23-0001-0061-55d4-e4100b000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bf1a3aec-f4a8-11e6-85d7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:47 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3aa7ef8c-50c8-11e7-99ff-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer713f1e44?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:47 GMT']
ETag: ['"0x8D456CCA35DF404"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:48 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1EE5ED9E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9885dbb2-0001-0036-07b5-881f4b000000]
x-ms-request-id: [088a53cf-0001-0104-2dd4-e4e703000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bf54e9d4-f4a8-11e6-9a5b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:48 GMT']
x-ms-client-request-id: [3ab9ce5c-50c8-11e7-9e71-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer713f1e44/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:47 GMT']
ETag: ['"0x8D456CCA371931A"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:48 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1E9E13B4"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9885dbc8-0001-0036-1bb5-881f4b000000]
x-ms-request-id: [088a53db-0001-0104-37d4-e4e703000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Modified-Since: ['Fri, 17 Feb 2017 00:48:48 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bf64b792-f4a8-11e6-9282-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:48 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 06:25:56 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3abf31a2-50c8-11e7-8671-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer713f1e44/blob1
@ -61,10 +61,10 @@ interactions:
body: {string: ''}
headers:
Content-Length: ['0']
Date: ['Fri, 17 Feb 2017 00:33:47 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [9885dbd5-0001-0036-28b5-881f4b000000]
x-ms-request-id: [088a53e2-0001-0104-3dd4-e4e703000000]
x-ms-version: ['2016-05-31']
status: {code: 304, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bfadd2d2-f4a8-11e6-9eb3-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:48 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ad98e92-50c8-11e7-9376-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:56 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer18061d24?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:48 GMT']
ETag: ['"0x8D456CCA3E6E0D9"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:48 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1EE310BF"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [357e5b94-0001-003b-42b5-88d79f000000]
x-ms-request-id: [67a58195-0001-011b-0cd4-e43c13000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [bfe511fe-f4a8-11e6-ab01-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:49 GMT']
x-ms-client-request-id: [3aeb1d76-50c8-11e7-80e9-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer18061d24/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:48 GMT']
ETag: ['"0x8D456CCA400DD5E"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:49 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1ECFB3D1"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [357e5ba4-0001-003b-50b5-88d79f000000]
x-ms-request-id: [67a581a9-0001-011b-1ed4-e43c13000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
If-None-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [bff3f530-f4a8-11e6-9cb6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:49 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3af0c074-50c8-11e7-84f5-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer18061d24/blob1
@ -64,15 +64,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:48 GMT']
ETag: ['"0x8D456CCA400DD5E"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:49 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1ECFB3D1"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [357e5bb1-0001-003b-5db5-88d79f000000]
x-ms-request-id: [67a581b3-0001-011b-28d4-e43c13000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c036882e-f4a8-11e6-9cd9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:49 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3b0d93dc-50c8-11e7-8001-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontaineraf8e1f1f?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:49 GMT']
ETag: ['"0x8D456CCA48681C9"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:49 GMT']
Date: ['Wed, 14 Jun 2017 06:10:57 GMT']
ETag: ['"0x8D4B2EC1F948721"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f3a7ab94-0001-0004-08b5-881f3c000000]
x-ms-request-id: [15293467-0001-010a-4cd4-e40b08000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c06a985c-f4a8-11e6-b867-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:50 GMT']
x-ms-client-request-id: [3b1f168c-50c8-11e7-92d4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontaineraf8e1f1f/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:49 GMT']
ETag: ['"0x8D456CCA485EE4B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:49 GMT']
Date: ['Wed, 14 Jun 2017 06:10:57 GMT']
ETag: ['"0x8D4B2EC1F0301DD"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f3a7abab-0001-0004-1bb5-881f3c000000]
x-ms-request-id: [15293479-0001-010a-5cd4-e40b08000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c0782f52-f4a8-11e6-ad97-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:50 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3b23d0a2-50c8-11e7-a128-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontaineraf8e1f1f/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:49 GMT']
ETag: ['"0x8D456CCA485EE4B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:49 GMT']
Date: ['Wed, 14 Jun 2017 06:10:57 GMT']
ETag: ['"0x8D4B2EC1F0301DD"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [f3a7abc4-0001-0004-34b5-881f3c000000]
x-ms-request-id: [15293488-0001-010a-6bd4-e40b08000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -79,10 +79,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-None-Match: ['"0x8D456CCA485EE4B"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c0858b9e-f4a8-11e6-9c2c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:50 GMT']
If-None-Match: ['"0x8D4B2EC1F0301DD"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3b292bb0-50c8-11e7-8d47-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontaineraf8e1f1f/blob1
@ -90,10 +90,10 @@ interactions:
body: {string: ''}
headers:
Content-Length: ['0']
Date: ['Fri, 17 Feb 2017 00:33:49 GMT']
Date: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [f3a7abda-0001-0004-4ab5-881f3c000000]
x-ms-request-id: [1529349e-0001-010a-7fd4-e40b08000000]
x-ms-version: ['2016-05-31']
status: {code: 304, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c0cbb44a-f4a8-11e6-b914-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:50 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3b42f62e-50c8-11e7-b0b6-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer187e1d2c?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:49 GMT']
ETag: ['"0x8D456CCA50D7CA1"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:50 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1F456189"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [e0051eea-0001-0001-62b5-88cde7000000]
x-ms-request-id: [291f5b5b-0001-0030-7ad4-e40efe000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c102f326-f4a8-11e6-a0e5-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:51 GMT']
x-ms-client-request-id: [3b55a79c-50c8-11e7-b061-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer187e1d2c/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:50 GMT']
ETag: ['"0x8D456CCA51E87F4"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:50 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1F3AE499"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [e0051f04-0001-0001-79b5-88cde7000000]
x-ms-request-id: [291f5b6b-0001-0030-06d4-e40efe000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:51 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c1119bb6-f4a8-11e6-a0c9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:51 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:25:57 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3b5be6da-50c8-11e7-b828-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer187e1d2c/blob1
@ -64,15 +64,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:50 GMT']
ETag: ['"0x8D456CCA51E87F4"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:50 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1F3AE499"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [e0051f15-0001-0001-0ab5-88cde7000000]
x-ms-request-id: [291f5b77-0001-0030-12d4-e40efe000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c157bdda-f4a8-11e6-8353-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:51 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3b776e94-50c8-11e7-be82-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:57 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerb02e1f27?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:50 GMT']
ETag: ['"0x8D456CCA59E877D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:51 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1F648332"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ca39a3e0-0001-0006-4cb5-88a184000000]
x-ms-request-id: [f5edfc05-0001-0123-5cd4-e47d4a000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c19324c2-f4a8-11e6-8519-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:52 GMT']
x-ms-client-request-id: [3b89aeec-50c8-11e7-b46f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerb02e1f27/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:51 GMT']
ETag: ['"0x8D456CCA5AEBC3F"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:51 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
ETag: ['"0x8D4B2EC1F70F24A"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ca39a3f2-0001-0006-5ab5-88a184000000]
x-ms-request-id: [f5edfc10-0001-0123-64d4-e47d4a000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,21 +50,21 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:18:52 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c1a1e790-f4a8-11e6-9e10-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:52 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 05:55:58 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3b91cc30-50c8-11e7-9e6f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerb02e1f27/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:51 GMT']
Date: ['Wed, 14 Jun 2017 06:10:56 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-request-id: [ca39a403-0001-0006-6bb5-88a184000000]
x-ms-request-id: [f5edfc23-0001-0123-74d4-e47d4a000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c1e44f14-f4a8-11e6-a37f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:52 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ba98afe-50c8-11e7-9b9e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer751d1669?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:52 GMT']
ETag: ['"0x8D456CCA62E2E37"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:52 GMT']
Date: ['Wed, 14 Jun 2017 06:10:57 GMT']
ETag: ['"0x8D4B2EC1FAB370C"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9b212967-0001-0015-4db5-888588000000]
x-ms-request-id: [0697b3a2-0001-000e-07d4-e4b8df000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c21f13b6-f4a8-11e6-8002-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:52 GMT']
x-ms-client-request-id: [3bbb4094-50c8-11e7-80bd-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer751d1669/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:52 GMT']
ETag: ['"0x8D456CCA63BE3A8"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:52 GMT']
Date: ['Wed, 14 Jun 2017 06:10:57 GMT']
ETag: ['"0x8D4B2EC1F9F3667"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9b21297a-0001-0015-5eb5-888588000000]
x-ms-request-id: [0697b3ae-0001-000e-10d4-e4b8df000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c22f2f9e-f4a8-11e6-9b92-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:53 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3bbffc66-50c8-11e7-9c49-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer751d1669/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:52 GMT']
ETag: ['"0x8D456CCA63BE3A8"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:52 GMT']
Date: ['Wed, 14 Jun 2017 06:10:57 GMT']
ETag: ['"0x8D4B2EC1F9F3667"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [9b21298c-0001-0015-6eb5-888588000000]
x-ms-request-id: [0697b3b7-0001-000e-18d4-e4b8df000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -79,10 +79,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Match: ['"0x8D456CCA63BE3A8"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c23e7d50-f4a8-11e6-a7ca-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:53 GMT']
If-Match: ['"0x8D4B2EC1F9F3667"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3bc46728-50c8-11e7-9f44-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -94,16 +94,16 @@ interactions:
Content-Length: ['11']
Content-Range: [bytes 0-10/11]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:52 GMT']
ETag: ['"0x8D456CCA63BE3A8"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:52 GMT']
Date: ['Wed, 14 Jun 2017 06:10:57 GMT']
ETag: ['"0x8D4B2EC1F9F3667"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:57 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [9b21299f-0001-0015-7eb5-888588000000]
x-ms-request-id: [0697b3bf-0001-000e-1ed4-e4b8df000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c285308a-f4a8-11e6-8034-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:53 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3bdfbd2e-50c8-11e7-a50f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainereafe1864?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:53 GMT']
ETag: ['"0x8D456CCA6CA4976"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:53 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
ETag: ['"0x8D4B2EC201EE14A"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:58 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9b0d9c2f-0001-001a-75b5-88f3e4000000]
x-ms-request-id: [40c01100-0001-004d-66d4-e49236000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c2bc1908-f4a8-11e6-a240-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:54 GMT']
x-ms-client-request-id: [3bf57bb6-50c8-11e7-beb0-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainereafe1864/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:53 GMT']
ETag: ['"0x8D456CCA6D7631D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:53 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
ETag: ['"0x8D4B2EC1FD9B1AC"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:58 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [9b0d9c3f-0001-001a-03b5-88f3e4000000]
x-ms-request-id: [40c0110e-0001-004d-6dd4-e49236000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,23 +51,24 @@ interactions:
headers:
Connection: [keep-alive]
If-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c2ca4c52-f4a8-11e6-acbe-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:54 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3bfa908a-50c8-11e7-9c9e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainereafe1864/blob1
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:9b0d9c4b-0001-001a-0fb5-88f3e4000000\nTime:2017-02-17T00:33:53.9574746Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:40c01118-0001-004d-75d4-e49236000000\n\
Time:2017-06-14T06:10:58.7683689Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:53 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [9b0d9c4b-0001-001a-0fb5-88f3e4000000]
x-ms-request-id: [40c01118-0001-004d-75d4-e49236000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c30cba10-f4a8-11e6-9e5d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:54 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3c135cac-50c8-11e7-b7e6-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:58 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerbad9179d?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:53 GMT']
ETag: ['"0x8D456CCA755CB1B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:54 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
ETag: ['"0x8D4B2EC2026FA3B"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:58 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3a2063a2-0001-0047-43b5-88f960000000]
x-ms-request-id: [a45e4511-0001-00b3-44d4-e4ae53000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c3451eee-f4a8-11e6-baa3-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:54 GMT']
x-ms-client-request-id: [3c262bd4-50c8-11e7-8550-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:59 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerbad9179d/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:53 GMT']
ETag: ['"0x8D456CCA7612F1D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:54 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
ETag: ['"0x8D4B2EC200B038E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:58 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3a2063ba-0001-0047-58b5-88f960000000]
x-ms-request-id: [a45e4528-0001-00b3-56d4-e4ae53000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Modified-Since: ['Fri, 17 Feb 2017 00:18:55 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c3537954-f4a8-11e6-b6e4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:55 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:55:59 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3c2c469c-50c8-11e7-8811-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:59 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -65,16 +65,16 @@ interactions:
Content-Length: ['11']
Content-Range: [bytes 0-10/11]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:53 GMT']
ETag: ['"0x8D456CCA7612F1D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:54 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
ETag: ['"0x8D4B2EC200B038E"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:58 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [3a2063cb-0001-0047-69b5-88f960000000]
x-ms-request-id: [a45e453a-0001-00b3-64d4-e4ae53000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c398b8b0-f4a8-11e6-8911-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:55 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3c4a2524-50c8-11e7-8208-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:59 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer36cd1998?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:55 GMT']
ETag: ['"0x8D456CCA7E0E10D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:55 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
ETag: ['"0x8D4B2EC20DC5A9D"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f365c0a3-0001-0008-78b5-888834000000]
x-ms-request-id: [45673688-0001-00a2-2dd4-e49948000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c3d0d0e2-f4a8-11e6-8919-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:55 GMT']
x-ms-client-request-id: [3c5f3b7e-50c8-11e7-8faa-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:59 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer36cd1998/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:55 GMT']
ETag: ['"0x8D456CCA7ED1DDC"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:55 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
ETag: ['"0x8D4B2EC20433480"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:58 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f365c0b6-0001-0008-09b5-888834000000]
x-ms-request-id: [456736a0-0001-00a2-41d4-e49948000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Modified-Since: ['Fri, 17 Feb 2017 00:48:55 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c3df65ee-f4a8-11e6-affe-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:55 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 06:25:59 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3c63fc74-50c8-11e7-85b9-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:59 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -62,10 +62,10 @@ interactions:
body: {string: ''}
headers:
Content-Length: ['0']
Date: ['Fri, 17 Feb 2017 00:33:55 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [f365c0c9-0001-0008-1ab5-888834000000]
x-ms-request-id: [456736ab-0001-00a2-4ad4-e49948000000]
x-ms-version: ['2016-05-31']
status: {code: 304, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c424d164-f4a8-11e6-b1a9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:56 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3c7fd93a-50c8-11e7-8635-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:59 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainereb891878?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:55 GMT']
ETag: ['"0x8D456CCA86DDB2B"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:56 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
ETag: ['"0x8D4B2EC2073C2F0"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3fcf8045-0001-002b-4cb5-8812f7000000]
x-ms-request-id: [5166501b-0001-0069-47d4-e40b78000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c45f3106-f4a8-11e6-9e31-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:56 GMT']
x-ms-client-request-id: [3c94bd8c-50c8-11e7-a5b5-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:59 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainereb891878/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:55 GMT']
ETag: ['"0x8D456CCA87B56D0"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:56 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
ETag: ['"0x8D4B2EC2080BD8F"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3fcf8063-0001-002b-65b5-8812f7000000]
x-ms-request-id: [51665045-0001-0069-6ed4-e40b78000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
If-None-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c46e8ad8-f4a8-11e6-8908-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:56 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ca19250-50c8-11e7-b99a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:10:59 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -65,16 +65,16 @@ interactions:
Content-Length: ['11']
Content-Range: [bytes 0-10/11]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:56 GMT']
ETag: ['"0x8D456CCA87B56D0"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:56 GMT']
Date: ['Wed, 14 Jun 2017 06:10:58 GMT']
ETag: ['"0x8D4B2EC2080BD8F"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [3fcf806e-0001-002b-70b5-8812f7000000]
x-ms-request-id: [51665055-0001-0069-7dd4-e40b78000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c4b5370c-f4a8-11e6-8785-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:57 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3cbf55f4-50c8-11e7-b216-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6bc41a73?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:56 GMT']
ETag: ['"0x8D456CCA8F9034D"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:57 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
ETag: ['"0x8D4B2EC20CF738F"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5a88cdd2-0001-0012-64b5-88e9eb000000]
x-ms-request-id: [7f91cc71-0001-00f8-65d4-e49fc9000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c4ed4188-f4a8-11e6-bda9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:57 GMT']
x-ms-client-request-id: [3cd69db4-50c8-11e7-91e3-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6bc41a73/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:56 GMT']
ETag: ['"0x8D456CCA9091A61"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:57 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
ETag: ['"0x8D4B2EC20BA9C79"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5a88cde6-0001-0012-76b5-88e9eb000000]
x-ms-request-id: [7f91cc89-0001-00f8-7ad4-e49fc9000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c4fc5f5c-f4a8-11e6-beba-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:57 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3cddc8f6-50c8-11e7-831b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainer6bc41a73/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:56 GMT']
ETag: ['"0x8D456CCA9091A61"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:57 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
ETag: ['"0x8D4B2EC20BA9C79"']
Last-Modified: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [5a88cdf3-0001-0012-03b5-88e9eb000000]
x-ms-request-id: [7f91cc9a-0001-00f8-0bd4-e49fc9000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -79,10 +79,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-None-Match: ['"0x8D456CCA9091A61"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c50a83f4-f4a8-11e6-9a97-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:57 GMT']
If-None-Match: ['"0x8D4B2EC20BA9C79"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ce25cd0-50c8-11e7-9ebb-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -91,10 +91,10 @@ interactions:
body: {string: ''}
headers:
Content-Length: ['0']
Date: ['Fri, 17 Feb 2017 00:33:56 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [5a88ce00-0001-0012-10b5-88e9eb000000]
x-ms-request-id: [7f91ccb1-0001-00f8-1fd4-e49fc9000000]
x-ms-version: ['2016-05-31']
status: {code: 304, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c54fe110-f4a8-11e6-9d06-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:58 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3cfb3fca-50c8-11e7-8b15-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerec011880?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:57 GMT']
ETag: ['"0x8D456CCA992B1C8"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:58 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
ETag: ['"0x8D4B2EC21106E2A"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [86a858b0-0001-0042-73b5-882bbb000000]
x-ms-request-id: [945e3328-0001-010f-73d4-e4ff77000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c58af802-f4a8-11e6-a922-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:58 GMT']
x-ms-client-request-id: [3d112be2-50c8-11e7-8ee7-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerec011880/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:57 GMT']
ETag: ['"0x8D456CCA9A73200"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:58 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
ETag: ['"0x8D4B2EC20F6C5BA"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [86a858c9-0001-0042-09b5-882bbb000000]
x-ms-request-id: [945e3332-0001-010f-7ad4-e4ff77000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,10 +50,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:48:58 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c59a2a98-f4a8-11e6-a0e7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:58 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:26:00 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3d1812dc-50c8-11e7-a61a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
@ -65,16 +65,16 @@ interactions:
Content-Length: ['11']
Content-Range: [bytes 0-10/11]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:33:57 GMT']
ETag: ['"0x8D456CCA9A73200"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:58 GMT']
Date: ['Wed, 14 Jun 2017 06:10:59 GMT']
ETag: ['"0x8D4B2EC20F6C5BA"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-content-md5: [XrY7u+Ae7tCTyyK7j1rNww==]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [86a858e1-0001-0042-20b5-882bbb000000]
x-ms-request-id: [945e333c-0001-010f-03d4-e4ff77000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 206, message: Partial Content}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c5dd94fa-f4a8-11e6-839c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:59 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3d3544d2-50c8-11e7-b151-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6c641a7b?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:59 GMT']
ETag: ['"0x8D456CCAA2BEA34"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:59 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
ETag: ['"0x8D4B2EC214400A9"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [a41e2957-0001-001f-67b5-88213f000000]
x-ms-request-id: [0d2b90d9-0001-0125-44d4-e48a32000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [c6184af6-f4a8-11e6-85cd-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:59 GMT']
x-ms-client-request-id: [3d47efa6-50c8-11e7-9d20-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:00 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6c641a7b/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:33:59 GMT']
ETag: ['"0x8D456CCAA34A784"']
Last-Modified: ['Fri, 17 Feb 2017 00:33:59 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
ETag: ['"0x8D4B2EC212C8539"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [a41e296e-0001-001f-7cb5-88213f000000]
x-ms-request-id: [0d2b90e8-0001-0125-4ed4-e48a32000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,24 +50,25 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:18:59 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c627b80a-f4a8-11e6-bf39-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:33:59 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 05:56:01 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3d4d7188-50c8-11e7-9a91-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-range: [bytes=0-33554431]
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer6c641a7b/blob1
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:a41e2982-0001-001f-10b5-88213f000000\nTime:2017-02-17T00:33:59.6444609Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:0d2b90f1-0001-0125-56d4-e48a32000000\n\
Time:2017-06-14T06:11:00.6953814Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:33:59 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [a41e2982-0001-001f-10b5-88213f000000]
x-ms-request-id: [0d2b90f1-0001-0125-56d4-e48a32000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c66ee51a-f4a8-11e6-aa0b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:00 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3d6995d4-50c8-11e7-81a5-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera2741b59?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:33:59 GMT']
ETag: ['"0x8D456CCAAB02F8D"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:00 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
ETag: ['"0x8D4B2EC217D2B07"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [15d9a0d0-0001-0028-5db5-88f393000000]
x-ms-request-id: [fd2b45ab-0001-00d8-09d4-e4f305000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,23 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-content-length: ['2048']
x-ms-blob-type: [PageBlob]
x-ms-client-request-id: [c6a5f480-f4a8-11e6-83b9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:00 GMT']
x-ms-client-request-id: [3d7d9f58-50c8-11e7-be0e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera2741b59/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:00 GMT']
ETag: ['"0x8D456CCAAEA3F2C"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:00 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
ETag: ['"0x8D4B2EC216EF126"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [eacb7854-0001-003f-12b5-885a98000000]
x-ms-request-id: [4b2d5fcd-0001-0134-4ad4-e4bd29000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c6dd5a64-f4a8-11e6-9e2b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:00 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3d93d2c0-50c8-11e7-9558-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=0-511]
x-ms-version: ['2016-05-31']
@ -63,13 +63,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:00 GMT']
ETag: ['"0x8D456CCAAF8E556"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:00 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
ETag: ['"0x8D4B2EC2178B6E0"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [eacb7870-0001-003f-2db5-885a98000000]
x-ms-request-id: [4b2d5fdb-0001-0134-57d4-e4bd29000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c6ebde5a-f4a8-11e6-93c7-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:01 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3d9977ec-50c8-11e7-8247-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=1024-1535]
x-ms-version: ['2016-05-31']
@ -90,13 +90,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:00 GMT']
ETag: ['"0x8D456CCAB071681"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:00 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
ETag: ['"0x8D4B2EC217D99B8"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [eacb7889-0001-003f-44b5-885a98000000]
x-ms-request-id: [4b2d5fe1-0001-0134-5ad4-e4bd29000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -104,9 +104,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c6fa27be-f4a8-11e6-8a1a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:01 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3d9e63cc-50c8-11e7-9166-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainera2741b59/blob1
@ -116,16 +116,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['2048']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:34:00 GMT']
ETag: ['"0x8D456CCAB071681"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:00 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
ETag: ['"0x8D4B2EC217D99B8"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-sequence-number: ['0']
x-ms-blob-type: [PageBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [eacb789d-0001-003f-57b5-885a98000000]
x-ms-request-id: [4b2d5fe7-0001-0134-60d4-e4bd29000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -133,10 +133,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Match: ['"0x8D456CCAB071681"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c7082074-f4a8-11e6-adfd-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:01 GMT']
If-Match: ['"0x8D4B2EC217D99B8"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3da300dc-50c8-11e7-93da-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainera2741b59/blob1?comp=pagelist
@ -144,14 +144,14 @@ interactions:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><PageList><PageRange><Start>0</Start><End>511</End></PageRange><PageRange><Start>1024</Start><End>1535</End></PageRange></PageList>"}
headers:
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:00 GMT']
ETag: ['"0x8D456CCAB071681"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:00 GMT']
Date: ['Wed, 14 Jun 2017 06:11:00 GMT']
ETag: ['"0x8D4B2EC217D99B8"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:00 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-blob-content-length: ['2048']
x-ms-request-id: [eacb78ad-0001-003f-67b5-885a98000000]
x-ms-request-id: [4b2d5fed-0001-0134-65d4-e4bd29000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c751861c-f4a8-11e6-b1be-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:01 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3dbe83c0-50c8-11e7-981e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer31141d54?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:01 GMT']
ETag: ['"0x8D456CCAB955DE4"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:01 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC2219CAD9"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [c7f2b7fc-0001-003a-64b5-888843000000]
x-ms-request-id: [6bbc8755-0001-00fa-35d4-e49d33000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,23 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-content-length: ['2048']
x-ms-blob-type: [PageBlob]
x-ms-client-request-id: [c788fb1e-f4a8-11e6-9389-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:02 GMT']
x-ms-client-request-id: [3dd0d34a-50c8-11e7-a8fd-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:01 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer31141d54/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
ETag: ['"0x8D456CCABCA42E8"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:02 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC21C16580"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:01 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ccde7c68-0001-0032-4cb5-88924c000000]
x-ms-request-id: [3be8c6c2-0001-00ca-13d4-e4c719000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c7bc8724-f4a8-11e6-a3de-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:02 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3de53998-50c8-11e7-9d57-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=0-511]
x-ms-version: ['2016-05-31']
@ -63,13 +63,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
ETag: ['"0x8D456CCABD7D7C7"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:02 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC21CA1991"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:01 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [ccde7c81-0001-0032-62b5-88924c000000]
x-ms-request-id: [3be8c6d9-0001-00ca-27d4-e4c719000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c7ca1e14-f4a8-11e6-87b6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:02 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3deafff6-50c8-11e7-9634-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=1024-1535]
x-ms-version: ['2016-05-31']
@ -90,13 +90,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
ETag: ['"0x8D456CCABE54579"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:02 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC21CFE6FB"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:01 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [ccde7c9e-0001-0032-7eb5-88924c000000]
x-ms-request-id: [3be8c6e3-0001-00ca-30d4-e4c719000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -105,22 +105,23 @@ interactions:
headers:
Connection: [keep-alive]
If-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c7d77a76-f4a8-11e6-bca4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:02 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3df1ddc0-50c8-11e7-886f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer31141d54/blob1?comp=pagelist
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:ccde7cb3-0001-0032-13b5-88924c000000\nTime:2017-02-17T00:34:02.4437613Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:3be8c6ed-0001-00ca-38d4-e4c719000000\n\
Time:2017-06-14T06:11:01.8317027Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [ccde7cb3-0001-0032-13b5-88924c000000]
x-ms-request-id: [3be8c6ed-0001-00ca-38d4-e4c719000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c81ff424-f4a8-11e6-8d7b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:03 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3e0e45f6-50c8-11e7-a1a4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf7001c8d?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
ETag: ['"0x8D456CCAC61212A"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:03 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC223F6D37"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5ee7147a-0001-002d-02b5-882148000000]
x-ms-request-id: [8cc4bcb7-0001-00f5-1ad4-e470c5000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,23 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-content-length: ['2048']
x-ms-blob-type: [PageBlob]
x-ms-client-request-id: [c8569e30-f4a8-11e6-87f3-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:03 GMT']
x-ms-client-request-id: [3e21f626-50c8-11e7-bb6f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerf7001c8d/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
ETag: ['"0x8D456CCAC9D272D"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:03 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC2212A111"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:01 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5959a02f-0001-0046-80b5-88a6bc000000]
x-ms-request-id: [8a9b921b-0001-0074-5dd4-e4d292000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c8902074-f4a8-11e6-b544-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:03 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3e334fb6-50c8-11e7-8ab4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=0-511]
x-ms-version: ['2016-05-31']
@ -63,13 +63,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
ETag: ['"0x8D456CCACAC4291"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:03 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC221783EE"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [5959a043-0001-0046-13b5-88a6bc000000]
x-ms-request-id: [8a9b9226-0001-0074-67d4-e4d292000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c89f3e50-f4a8-11e6-a8c1-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:03 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3e383b14-50c8-11e7-ac60-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=1024-1535]
x-ms-version: ['2016-05-31']
@ -90,13 +90,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
ETag: ['"0x8D456CCACBB1008"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:03 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC221BF198"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [5959a054-0001-0046-23b5-88a6bc000000]
x-ms-request-id: [8a9b9230-0001-0074-70d4-e4d292000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -104,10 +104,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Modified-Since: ['Fri, 17 Feb 2017 00:19:03 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c8ae48ac-f4a8-11e6-8903-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:03 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:56:02 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3e3cb098-50c8-11e7-b8cb-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainerf7001c8d/blob1?comp=pagelist
@ -115,14 +115,14 @@ interactions:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><PageList><PageRange><Start>0</Start><End>511</End></PageRange><PageRange><Start>1024</Start><End>1535</End></PageRange></PageList>"}
headers:
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:02 GMT']
ETag: ['"0x8D456CCACBB1008"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:03 GMT']
Date: ['Wed, 14 Jun 2017 06:11:01 GMT']
ETag: ['"0x8D4B2EC221BF198"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-blob-content-length: ['2048']
x-ms-request-id: [5959a06c-0001-0046-3bb5-88a6bc000000]
x-ms-request-id: [8a9b923b-0001-0074-7bd4-e4d292000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c8f1189a-f4a8-11e6-9989-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:04 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3e54a9a8-50c8-11e7-b4e2-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer8ba41e88?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:03 GMT']
ETag: ['"0x8D456CCAD37BE81"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:04 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC2279BED9"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [5a51fc1f-0001-000f-2ab5-88e457000000]
x-ms-request-id: [dfec91b0-0001-0027-1cd5-e4ce9d000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,23 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-content-length: ['2048']
x-ms-blob-type: [PageBlob]
x-ms-client-request-id: [c92b9492-f4a8-11e6-835c-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:04 GMT']
x-ms-client-request-id: [3e68258a-50c8-11e7-9154-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer8ba41e88/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:04 GMT']
ETag: ['"0x8D456CCAD6EF9DE"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:04 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC22590551"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [cc0f6f21-0001-0044-20b5-881804000000]
x-ms-request-id: [3cc6af93-0001-005a-0bd5-e45255000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c96206cc-f4a8-11e6-a40a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:05 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3e7a2436-50c8-11e7-8c8b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:02 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=0-511]
x-ms-version: ['2016-05-31']
@ -63,13 +63,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:04 GMT']
ETag: ['"0x8D456CCAD7D7911"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:05 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC225ED2B3"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [cc0f6f33-0001-0044-31b5-881804000000]
x-ms-request-id: [3cc6afbb-0001-005a-2cd5-e45255000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c9708842-f4a8-11e6-9488-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:05 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3e7fae7e-50c8-11e7-bee4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=1024-1535]
x-ms-version: ['2016-05-31']
@ -90,13 +90,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:04 GMT']
ETag: ['"0x8D456CCAD8BAA21"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:05 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC22638E7E"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [cc0f6f42-0001-0044-3fb5-881804000000]
x-ms-request-id: [3cc6afd5-0001-005a-45d5-e45255000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -104,10 +104,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Modified-Since: ['Fri, 17 Feb 2017 00:49:05 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c97ea806-f4a8-11e6-9a2b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:05 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 06:26:02 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3e843638-50c8-11e7-93e8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer8ba41e88/blob1?comp=pagelist
@ -116,10 +116,10 @@ interactions:
headers:
Content-Length: ['0']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:04 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [cc0f6f52-0001-0044-4fb5-881804000000]
x-ms-request-id: [3cc6aff6-0001-005a-65d5-e45255000000]
x-ms-version: ['2016-05-31']
status: {code: 304, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [c9c41ef4-f4a8-11e6-a4cc-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:05 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ea1223a-50c8-11e7-b641-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer319f1d68?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:05 GMT']
ETag: ['"0x8D456CCAE0A46BD"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:05 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC22D9FD4B"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [52b5210e-0001-001e-45b5-887ee3000000]
x-ms-request-id: [bbc81c6a-0001-0021-69d5-e439e5000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,23 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-content-length: ['2048']
x-ms-blob-type: [PageBlob]
x-ms-client-request-id: [c9faca7e-f4a8-11e6-af0b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:06 GMT']
x-ms-client-request-id: [3eb34154-50c8-11e7-a5dd-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer319f1d68/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:06 GMT']
ETag: ['"0x8D456CCAE3CADE8"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:06 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC22A388FC"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [93bdd582-0001-002a-08b5-884d2b000000]
x-ms-request-id: [1686289a-0001-0130-7cd5-e448ab000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ca2f1710-f4a8-11e6-bf1e-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:06 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ec463c0-50c8-11e7-9946-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=0-511]
x-ms-version: ['2016-05-31']
@ -63,13 +63,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:06 GMT']
ETag: ['"0x8D456CCAE4A90CB"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:06 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC22A844C2"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [93bdd595-0001-002a-1ab5-884d2b000000]
x-ms-request-id: [168628a5-0001-0130-05d5-e448ab000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ca3cd81a-f4a8-11e6-8c17-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:06 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ec95046-50c8-11e7-9ec8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=1024-1535]
x-ms-version: ['2016-05-31']
@ -90,13 +90,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:06 GMT']
ETag: ['"0x8D456CCAE582598"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:06 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC22ACD975"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [93bdd59f-0001-002a-23b5-884d2b000000]
x-ms-request-id: [168628b3-0001-0130-10d5-e448ab000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -105,9 +105,9 @@ interactions:
headers:
Connection: [keep-alive]
If-None-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ca4a7158-f4a8-11e6-9e05-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:06 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ecdca2c-50c8-11e7-9cf4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer319f1d68/blob1?comp=pagelist
@ -115,14 +115,14 @@ interactions:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><PageList><PageRange><Start>0</Start><End>511</End></PageRange><PageRange><Start>1024</Start><End>1535</End></PageRange></PageList>"}
headers:
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:06 GMT']
ETag: ['"0x8D456CCAE582598"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:06 GMT']
Date: ['Wed, 14 Jun 2017 06:11:02 GMT']
ETag: ['"0x8D4B2EC22ACD975"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:02 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-blob-content-length: ['2048']
x-ms-request-id: [93bdd5af-0001-002a-33b5-884d2b000000]
x-ms-request-id: [168628c2-0001-0130-1fd5-e448ab000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ca8eae58-f4a8-11e6-bdd4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:07 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ee6e510-50c8-11e7-8d16-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerca7b1f63?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:06 GMT']
ETag: ['"0x8D456CCAECBAD33"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:07 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC2324D696"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [93c39cc0-0001-001b-4db5-88ac38000000]
x-ms-request-id: [c82bdc50-0001-0007-03d5-e4a251000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,23 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-content-length: ['2048']
x-ms-blob-type: [PageBlob]
x-ms-client-request-id: [cac53e92-f4a8-11e6-8acf-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:07 GMT']
x-ms-client-request-id: [3f00a9ca-50c8-11e7-9244-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:03 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainerca7b1f63/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:07 GMT']
ETag: ['"0x8D456CCAF088D05"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:07 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC22F44F51"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ee873fde-0001-003c-22b5-88bbfc000000]
x-ms-request-id: [2693da66-0001-0076-0bd5-e4d068000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cafbc190-f4a8-11e6-9e35-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:07 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f152fb4-50c8-11e7-98f8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=0-511]
x-ms-version: ['2016-05-31']
@ -63,13 +63,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:07 GMT']
ETag: ['"0x8D456CCAF173361"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:07 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC22F9805C"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [ee873fef-0001-003c-32b5-88bbfc000000]
x-ms-request-id: [2693da74-0001-0076-17d5-e4d068000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cb0a1bee-f4a8-11e6-8e61-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:07 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f1a5fc0-50c8-11e7-b83a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=1024-1535]
x-ms-version: ['2016-05-31']
@ -90,13 +90,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:07 GMT']
ETag: ['"0x8D456CCAF253D5A"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:07 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC22FE6339"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [ee874003-0001-003c-45b5-88bbfc000000]
x-ms-request-id: [2693da7c-0001-0076-1ed5-e4d068000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -104,9 +104,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cb183e18-f4a8-11e6-b3b4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:08 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f1f2176-50c8-11e7-88f8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainerca7b1f63/blob1
@ -116,16 +116,16 @@ interactions:
Accept-Ranges: [bytes]
Content-Length: ['2048']
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:34:07 GMT']
ETag: ['"0x8D456CCAF253D5A"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:07 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC22FE6339"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-sequence-number: ['0']
x-ms-blob-type: [PageBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [ee874012-0001-003c-54b5-88bbfc000000]
x-ms-request-id: [2693da87-0001-0076-27d5-e4d068000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -133,10 +133,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-None-Match: ['"0x8D456CCAF253D5A"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cb25e898-f4a8-11e6-96a1-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:08 GMT']
If-None-Match: ['"0x8D4B2EC22FE6339"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f235264-50c8-11e7-9417-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainerca7b1f63/blob1?comp=pagelist
@ -145,10 +145,10 @@ interactions:
headers:
Content-Length: ['0']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:07 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [ee874025-0001-003c-66b5-88bbfc000000]
x-ms-request-id: [2693da8e-0001-0076-2ed5-e4d068000000]
x-ms-version: ['2016-05-31']
status: {code: 304, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cb6d800a-f4a8-11e6-ae54-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:08 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f3c3780-50c8-11e7-8263-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer32171d70?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:07 GMT']
ETag: ['"0x8D456CCAFB3D669"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:08 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC234253D6"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3c18436f-0001-0025-0cb5-883b47000000]
x-ms-request-id: [343801a2-0001-00c9-7fd5-e4c41e000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,23 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-content-length: ['2048']
x-ms-blob-type: [PageBlob]
x-ms-client-request-id: [cba81a34-f4a8-11e6-89ab-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:08 GMT']
x-ms-client-request-id: [3f528e08-50c8-11e7-91df-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer32171d70/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:09 GMT']
ETag: ['"0x8D456CCAFEF20D7"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:09 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC2345B202"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:03 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [6e67c219-0001-0000-69b5-88923b000000]
x-ms-request-id: [f3230f33-0001-005d-41d5-e4a4d0000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cbe284c8-f4a8-11e6-abc0-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:09 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f66852e-50c8-11e7-a99a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=0-511]
x-ms-version: ['2016-05-31']
@ -63,13 +63,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:09 GMT']
ETag: ['"0x8D456CCAFFEB176"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:09 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC234B0A24"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [6e67c231-0001-0000-79b5-88923b000000]
x-ms-request-id: [f3230f3c-0001-005d-49d5-e4a4d0000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cbf18f1c-f4a8-11e6-8312-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:09 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f6bc9ae-50c8-11e7-b560-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=1024-1535]
x-ms-version: ['2016-05-31']
@ -90,13 +90,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:09 GMT']
ETag: ['"0x8D456CCB00D7EAD"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:09 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC234FC5EA"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [6e67c244-0001-0000-09b5-88923b000000]
x-ms-request-id: [f3230f4e-0001-005d-57d5-e4a4d0000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -104,10 +104,10 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:49:09 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cc0085e2-f4a8-11e6-9aed-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:09 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:26:04 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f707fb6-50c8-11e7-bd3a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainer32171d70/blob1?comp=pagelist
@ -115,14 +115,14 @@ interactions:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><PageList><PageRange><Start>0</Start><End>511</End></PageRange><PageRange><Start>1024</Start><End>1535</End></PageRange></PageList>"}
headers:
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:09 GMT']
ETag: ['"0x8D456CCB00D7EAD"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:09 GMT']
Date: ['Wed, 14 Jun 2017 06:11:03 GMT']
ETag: ['"0x8D4B2EC234FC5EA"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
Vary: [Origin]
x-ms-blob-content-length: ['2048']
x-ms-request-id: [6e67c255-0001-0000-19b5-88923b000000]
x-ms-request-id: [f3230f59-0001-005d-61d5-e4a4d0000000]
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cc4aa730-f4a8-11e6-a046-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:10 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3f8bb4a4-50c8-11e7-a3e4-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainercb1b1f6b?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:09 GMT']
ETag: ['"0x8D456CCB08EC0A5"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:10 GMT']
Date: ['Wed, 14 Jun 2017 06:11:04 GMT']
ETag: ['"0x8D4B2EC23D051D8"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [fcbc98fd-0001-0022-7fb5-885724000000]
x-ms-request-id: [355c75e3-0001-000f-7ed5-e4b922000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,23 +26,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-content-length: ['2048']
x-ms-blob-type: [PageBlob]
x-ms-client-request-id: [cc820280-f4a8-11e6-a77d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:10 GMT']
x-ms-client-request-id: [3f9d6e40-50c8-11e7-aad9-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:04 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainercb1b1f6b/blob1
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:09 GMT']
ETag: ['"0x8D456CCB0C6BFEB"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:10 GMT']
Date: ['Wed, 14 Jun 2017 06:11:05 GMT']
ETag: ['"0x8D4B2EC238EFCF5"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [e8cf6814-0001-000a-0cb5-88368c000000]
x-ms-request-id: [115247cd-0001-0093-22d5-e4c29f000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,9 +51,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ccb8fa1a-f4a8-11e6-b11a-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:10 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3fafe8cc-50c8-11e7-be8e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=0-511]
x-ms-version: ['2016-05-31']
@ -63,13 +63,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:09 GMT']
ETag: ['"0x8D456CCB0D5662C"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:10 GMT']
Date: ['Wed, 14 Jun 2017 06:11:05 GMT']
ETag: ['"0x8D4B2EC23942E00"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [e8cf6824-0001-000a-1bb5-88368c000000]
x-ms-request-id: [115247e3-0001-0093-34d5-e4c29f000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['512']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ccc7a2b0-f4a8-11e6-be87-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:10 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3fb52200-50c8-11e7-9ec9-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-page-write: [update]
x-ms-range: [bytes=1024-1535]
x-ms-version: ['2016-05-31']
@ -90,13 +90,13 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [pTsTLZHyQ+et6NksJ1OHxg==]
Date: ['Fri, 17 Feb 2017 00:34:09 GMT']
ETag: ['"0x8D456CCB0E3E564"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:10 GMT']
Date: ['Wed, 14 Jun 2017 06:11:05 GMT']
ETag: ['"0x8D4B2EC239937F4"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-blob-sequence-number: ['0']
x-ms-request-id: [e8cf682e-0001-000a-24b5-88368c000000]
x-ms-request-id: [115247fb-0001-0093-46d5-e4c29f000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -104,23 +104,24 @@ interactions:
body: null
headers:
Connection: [keep-alive]
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:19:10 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ccd637c0-f4a8-11e6-be92-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:10 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 05:56:05 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3fba524c-50c8-11e7-a271-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-version: ['2016-05-31']
method: GET
uri: https://storagename.blob.core.windows.net/utcontainercb1b1f6b/blob1?comp=pagelist
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:e8cf683c-0001-000a-31b5-88368c000000\nTime:2017-02-17T00:34:10.8487151Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:11524816-0001-0093-5dd5-e4c29f000000\n\
Time:2017-06-14T06:11:05.5256197Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:10 GMT']
Date: ['Wed, 14 Jun 2017 06:11:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-request-id: [e8cf683c-0001-000a-31b5-88368c000000]
x-ms-request-id: [11524816-0001-0093-5dd5-e4c29f000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cd1f481c-f4a8-11e6-8d0d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:11 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3fd7f6ae-50c8-11e7-9f72-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera2b21733?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:10 GMT']
ETag: ['"0x8D456CCB158B57E"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:11 GMT']
Date: ['Wed, 14 Jun 2017 06:11:04 GMT']
ETag: ['"0x8D4B2EC24422EE6"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [284453f4-0001-0040-48b5-889503000000]
x-ms-request-id: [58b28464-0001-00aa-26d5-e4823b000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [cd531f02-f4a8-11e6-84a6-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:11 GMT']
x-ms-client-request-id: [3fea920c-50c8-11e7-886b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera2b21733/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:34:10 GMT']
ETag: ['"0x8D456CCB16E74A2"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:11 GMT']
Date: ['Wed, 14 Jun 2017 06:11:04 GMT']
ETag: ['"0x8D4B2EC23CEA945"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [28445404-0001-0040-56b5-889503000000]
x-ms-request-id: [58b28473-0001-00aa-33d5-e4823b000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cd60b5fa-f4a8-11e6-a62f-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:11 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3fef784a-50c8-11e7-975b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainera2b21733/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:34:10 GMT']
ETag: ['"0x8D456CCB16E74A2"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:11 GMT']
Date: ['Wed, 14 Jun 2017 06:11:04 GMT']
ETag: ['"0x8D4B2EC23CEA945"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [28445410-0001-0040-62b5-889503000000]
x-ms-request-id: [58b2847e-0001-00aa-3dd5-e4823b000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -80,10 +80,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Match: ['"0x8D456CCB16E74A2"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cd6dc422-f4a8-11e6-9431-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:11 GMT']
If-Match: ['"0x8D4B2EC23CEA945"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [3ff3df66-50c8-11e7-bf7e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-proposed-lease-id: [00000000-1111-2222-3333-444444444444]
@ -93,13 +93,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:10 GMT']
ETag: ['"0x8D456CCB16E74A2"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:11 GMT']
Date: ['Wed, 14 Jun 2017 06:11:05 GMT']
ETag: ['"0x8D4B2EC23CEA945"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-id: [00000000-1111-2222-3333-444444444444]
x-ms-request-id: [28445420-0001-0040-70b5-889503000000]
x-ms-request-id: [58b28488-0001-00aa-46d5-e4823b000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -107,9 +107,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cd7b207a-f4a8-11e6-b736-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:12 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [4006b646-50c8-11e7-8568-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-lease-action: [break]
x-ms-version: ['2016-05-31']
method: PUT
@ -117,13 +117,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:11 GMT']
ETag: ['"0x8D456CCB16E74A2"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:11 GMT']
Date: ['Wed, 14 Jun 2017 06:11:05 GMT']
ETag: ['"0x8D4B2EC23CEA945"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:04 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-time: ['0']
x-ms-request-id: [2844542e-0001-0040-7bb5-889503000000]
x-ms-request-id: [58b284b7-0001-00aa-6fd5-e4823b000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cdc31f7e-f4a8-11e6-aba0-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:12 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [40251bd8-50c8-11e7-9e3b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1c94192e?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:11 GMT']
ETag: ['"0x8D456CCB20B8537"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:12 GMT']
Date: ['Wed, 14 Jun 2017 06:11:04 GMT']
ETag: ['"0x8D4B2EC242653AC"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [c1aca75c-0001-000e-78b5-88bb8b000000]
x-ms-request-id: [6cac0bad-0001-00ac-14d5-e47543000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [cdfcc4ca-f4a8-11e6-b7a3-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:12 GMT']
x-ms-client-request-id: [40378a14-50c8-11e7-807f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1c94192e/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:34:12 GMT']
ETag: ['"0x8D456CCB218E880"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:12 GMT']
Date: ['Wed, 14 Jun 2017 06:11:04 GMT']
ETag: ['"0x8D4B2EC241CFE2C"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [c1aca76d-0001-000e-07b5-88bb8b000000]
x-ms-request-id: [6cac0bd0-0001-00ac-30d5-e47543000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -52,23 +52,24 @@ interactions:
Connection: [keep-alive]
Content-Length: ['0']
If-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ce0be2a4-f4a8-11e6-b892-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:12 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [403e07d2-50c8-11e7-a63e-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:05 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1c94192e/blob1?comp=lease
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:c1aca77e-0001-000e-18b5-88bb8b000000\nTime:2017-02-17T00:34:12.8509283Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:6cac0be3-0001-00ac-41d5-e47543000000\n\
Time:2017-06-14T06:11:05.5390672Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:12 GMT']
Date: ['Wed, 14 Jun 2017 06:11:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [c1aca77e-0001-000e-18b5-88bb8b000000]
x-ms-request-id: [6cac0be3-0001-00ac-41d5-e47543000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ce535892-f4a8-11e6-9df3-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:13 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [40804726-50c8-11e7-8d30-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:06 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainereacc1867?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:13 GMT']
ETag: ['"0x8D456CCB299B6BA"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:13 GMT']
Date: ['Wed, 14 Jun 2017 06:11:06 GMT']
ETag: ['"0x8D4B2EC24E5EF93"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:06 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [2402ba47-0001-0027-7bb5-8885ff000000]
x-ms-request-id: [53dcbbd7-0001-0023-58d5-e43b1f000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [ce885548-f4a8-11e6-91d5-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:13 GMT']
x-ms-client-request-id: [4092cd14-50c8-11e7-a52b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:06 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainereacc1867/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:34:13 GMT']
ETag: ['"0x8D456CCB2A3C5EF"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:13 GMT']
Date: ['Wed, 14 Jun 2017 06:11:06 GMT']
ETag: ['"0x8D4B2EC2476EDE0"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [2402ba5c-0001-0027-0eb5-8885ff000000]
x-ms-request-id: [53dcbbe1-0001-0023-5ed5-e43b1f000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,10 +51,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Modified-Since: ['Fri, 17 Feb 2017 00:19:13 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ce961352-f4a8-11e6-85e5-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:13 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:56:06 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [409800a8-50c8-11e7-8eab-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:06 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-proposed-lease-id: [00000000-1111-2222-3333-444444444444]
@ -64,13 +64,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:13 GMT']
ETag: ['"0x8D456CCB2A3C5EF"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:13 GMT']
Date: ['Wed, 14 Jun 2017 06:11:06 GMT']
ETag: ['"0x8D4B2EC2476EDE0"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-id: [00000000-1111-2222-3333-444444444444]
x-ms-request-id: [2402ba68-0001-0027-1ab5-8885ff000000]
x-ms-request-id: [53dcbbee-0001-0023-69d5-e43b1f000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cea3d0c6-f4a8-11e6-a285-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:13 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [409d7a28-50c8-11e7-8e3f-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:06 GMT']
x-ms-lease-action: [break]
x-ms-version: ['2016-05-31']
method: PUT
@ -88,13 +88,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:13 GMT']
ETag: ['"0x8D456CCB2A3C5EF"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:13 GMT']
Date: ['Wed, 14 Jun 2017 06:11:06 GMT']
ETag: ['"0x8D4B2EC2476EDE0"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:05 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-time: ['0']
x-ms-request-id: [2402ba79-0001-0027-2bb5-8885ff000000]
x-ms-request-id: [53dcbbfa-0001-0023-74d5-e43b1f000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [ceeb5a38-f4a8-11e6-82f2-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:14 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [40b81254-50c8-11e7-ad9c-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:06 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6ab21a62?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:13 GMT']
ETag: ['"0x8D456CCB337D3C5"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:14 GMT']
Date: ['Wed, 14 Jun 2017 06:11:06 GMT']
ETag: ['"0x8D4B2EC24D5DC93"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:06 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ad8306ef-0001-002c-1ab5-887e94000000]
x-ms-request-id: [09034021-0001-003a-2ed5-e41777000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [cf279b52-f4a8-11e6-9f89-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:14 GMT']
x-ms-client-request-id: [40cad40c-50c8-11e7-8f72-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:06 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6ab21a62/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:34:13 GMT']
ETag: ['"0x8D456CCB343B265"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:14 GMT']
Date: ['Wed, 14 Jun 2017 06:11:06 GMT']
ETag: ['"0x8D4B2EC24AF1ECE"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:06 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ad83070f-0001-002c-38b5-887e94000000]
x-ms-request-id: [0903402a-0001-003a-35d5-e41777000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,24 +51,25 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Modified-Since: ['Fri, 17 Feb 2017 00:49:14 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cf36e04c-f4a8-11e6-a828-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:14 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 06:26:06 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [40d00564-50c8-11e7-9023-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:06 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer6ab21a62/blob1?comp=lease
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:ad830724-0001-002c-4db5-887e94000000\nTime:2017-02-17T00:34:14.8330268Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:0903403b-0001-003a-44d5-e41777000000\n\
Time:2017-06-14T06:11:06.6774444Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:13 GMT']
Date: ['Wed, 14 Jun 2017 06:11:06 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [ad830724-0001-002c-4db5-887e94000000]
x-ms-request-id: [0903403b-0001-003a-44d5-e41777000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cf80eb52-f4a8-11e6-8e49-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:15 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [40e72714-50c8-11e7-b3e8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1d1f1942?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:15 GMT']
ETag: ['"0x8D456CCB3C6F264"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:15 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC252C7936"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3c6c0570-0001-0029-63b5-88ac4f000000]
x-ms-request-id: [e7291264-0001-0065-5ad5-e4e589000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [cfb80b5c-f4a8-11e6-8cc2-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:15 GMT']
x-ms-client-request-id: [40f86a6c-50c8-11e7-8adc-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1d1f1942/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:34:15 GMT']
ETag: ['"0x8D456CCB3D34ABE"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:15 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC24DD14C1"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:06 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [3c6c0582-0001-0029-73b5-88ac4f000000]
x-ms-request-id: [e729127c-0001-0065-6fd5-e4e589000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -52,9 +52,9 @@ interactions:
Connection: [keep-alive]
Content-Length: ['0']
If-None-Match: ['0x111111111111111']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cfc65b26-f4a8-11e6-af2b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:15 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [40fde9e8-50c8-11e7-b5e5-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-proposed-lease-id: [00000000-1111-2222-3333-444444444444]
@ -64,13 +64,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:15 GMT']
ETag: ['"0x8D456CCB3D34ABE"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:15 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC24DD14C1"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:06 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-id: [00000000-1111-2222-3333-444444444444]
x-ms-request-id: [3c6c0596-0001-0029-07b5-88ac4f000000]
x-ms-request-id: [e7291294-0001-0065-04d5-e4e589000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [cfe4d182-f4a8-11e6-a044-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:16 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [4102f49c-50c8-11e7-8c3c-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-lease-action: [break]
x-ms-version: ['2016-05-31']
method: PUT
@ -88,13 +88,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:15 GMT']
ETag: ['"0x8D456CCB3D34ABE"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:15 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC24DD14C1"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:06 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-time: ['0']
x-ms-request-id: [3c6c05bb-0001-0029-2bb5-88ac4f000000]
x-ms-request-id: [e72912a8-0001-0065-17d5-e4e589000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d0324fee-f4a8-11e6-a5e9-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:16 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [4120d61c-50c8-11e7-98cc-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera13d1b3d?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:16 GMT']
ETag: ['"0x8D456CCB46B2E91"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:16 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC2555FE59"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [357e6caa-0001-003b-59b5-88d79f000000]
x-ms-request-id: [0019c798-0001-008f-7fd5-e41a88000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [d06983fa-f4a8-11e6-b0a3-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:16 GMT']
x-ms-client-request-id: [4134a04c-50c8-11e7-ace8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera13d1b3d/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:34:16 GMT']
ETag: ['"0x8D456CCB48511C7"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:16 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC2519DA59"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [357e6cbf-0001-003b-6bb5-88d79f000000]
x-ms-request-id: [0019c7a5-0001-008f-09d5-e41a88000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -50,9 +50,9 @@ interactions:
body: null
headers:
Connection: [keep-alive]
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d0781900-f4a8-11e6-94ff-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:17 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [413b11e4-50c8-11e7-9df2-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-version: ['2016-05-31']
method: HEAD
uri: https://storagename.blob.core.windows.net/utcontainera13d1b3d/blob1
@ -63,15 +63,15 @@ interactions:
Content-Length: ['11']
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Content-Type: [application/octet-stream]
Date: ['Fri, 17 Feb 2017 00:34:16 GMT']
ETag: ['"0x8D456CCB48511C7"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:16 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC2519DA59"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Vary: [Origin]
x-ms-blob-type: [BlockBlob]
x-ms-lease-state: [available]
x-ms-lease-status: [unlocked]
x-ms-request-id: [357e6ccf-0001-003b-7bb5-88d79f000000]
x-ms-request-id: [0019c7ab-0001-008f-0fd5-e41a88000000]
x-ms-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 200, message: OK}
@ -80,24 +80,25 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-None-Match: ['"0x8D456CCB48511C7"']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d0864c54-f4a8-11e6-9d21-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:17 GMT']
If-None-Match: ['"0x8D4B2EC2519DA59"']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [4140d15c-50c8-11e7-9f10-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera13d1b3d/blob1?comp=lease
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:357e6ce0-0001-003b-0bb5-88d79f000000\nTime:2017-02-17T00:34:16.9183006Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:0019c7b3-0001-008f-17d5-e41a88000000\n\
Time:2017-06-14T06:11:07.5702057Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:16 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [357e6ce0-0001-003b-0bb5-88d79f000000]
x-ms-request-id: [0019c7b3-0001-008f-17d5-e41a88000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d0cf932c-f4a8-11e6-800d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:17 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [415eedac-50c8-11e7-870b-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1d97194a?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:17 GMT']
ETag: ['"0x8D456CCB524ED20"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:17 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC2596B1CE"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f3a7bd2e-0001-0004-26b5-881f3c000000]
x-ms-request-id: [ba357c72-0001-00ba-42d5-e4b4dd000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [d109877e-f4a8-11e6-8f57-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:18 GMT']
x-ms-client-request-id: [4170e090-50c8-11e7-9383-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:07 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer1d97194a/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:34:17 GMT']
ETag: ['"0x8D456CCB5259A77"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:17 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC2554CAE3"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [f3a7bd43-0001-0004-39b5-881f3c000000]
x-ms-request-id: [ba357c81-0001-00ba-4dd5-e4b4dd000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,10 +51,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:49:18 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d118a728-f4a8-11e6-b3d0-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:18 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 06:26:08 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [4175b976-50c8-11e7-ad4c-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:08 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-proposed-lease-id: [00000000-1111-2222-3333-444444444444]
@ -64,13 +64,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:17 GMT']
ETag: ['"0x8D456CCB5259A77"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:17 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC2554CAE3"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-id: [00000000-1111-2222-3333-444444444444]
x-ms-request-id: [f3a7bd55-0001-0004-4bb5-881f3c000000]
x-ms-request-id: [ba357c8a-0001-00ba-56d5-e4b4dd000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -78,9 +78,9 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d127b17a-f4a8-11e6-984b-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:18 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [417a4eba-50c8-11e7-8471-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:08 GMT']
x-ms-lease-action: [break]
x-ms-version: ['2016-05-31']
method: PUT
@ -88,13 +88,13 @@ interactions:
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:17 GMT']
ETag: ['"0x8D456CCB5259A77"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:17 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC2554CAE3"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-time: ['0']
x-ms-request-id: [f3a7bd6b-0001-0004-60b5-881f3c000000]
x-ms-request-id: [ba357c95-0001-00ba-60d5-e4b4dd000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d173cfa4-f4a8-11e6-8fdf-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:18 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [4193d2ee-50c8-11e7-8c75-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:08 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1dd1b45?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:18 GMT']
ETag: ['"0x8D456CCB5B0A0BD"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:18 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC25D3005D"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:08 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ed9b6dbf-0001-0045-75b5-8847d8000000]
x-ms-request-id: [427fd297-0001-0135-5fd5-e4bcd4000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,10 +26,10 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-blob-type: [BlockBlob]
x-ms-client-request-id: [d1aa62c2-f4a8-11e6-89e4-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:19 GMT']
x-ms-client-request-id: [41a6d462-50c8-11e7-a13a-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:08 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1dd1b45/blob1
@ -37,12 +37,12 @@ interactions:
body: {string: ''}
headers:
Content-MD5: [XrY7u+Ae7tCTyyK7j1rNww==]
Date: ['Fri, 17 Feb 2017 00:34:18 GMT']
ETag: ['"0x8D456CCB5C5ADF1"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:18 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC258BC31A"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [ed9b6dcc-0001-0045-80b5-8847d8000000]
x-ms-request-id: [427fd2a4-0001-0135-6ad5-e4bcd4000000]
x-ms-request-server-encrypted: ['true']
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
@ -51,24 +51,25 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Unmodified-Since: ['Fri, 17 Feb 2017 00:19:19 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d1b9bb4a-f4a8-11e6-9ffc-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:19 GMT']
If-Unmodified-Since: ['Wed, 14 Jun 2017 05:56:08 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [41acb8a2-50c8-11e7-b4cd-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:08 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainera1dd1b45/blob1?comp=lease
response:
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The
condition specified using HTTP conditional header(s) is not met.\nRequestId:ed9b6de6-0001-0045-18b5-8847d8000000\nTime:2017-02-17T00:34:18.9631368Z</Message></Error>"}
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ConditionNotMet</Code><Message>The\
\ condition specified using HTTP conditional header(s) is not met.\nRequestId:427fd2a9-0001-0135-6fd5-e4bcd4000000\n\
Time:2017-06-14T06:11:08.3444254Z</Message></Error>"}
headers:
Content-Length: ['252']
Content-Type: [application/xml]
Date: ['Fri, 17 Feb 2017 00:34:18 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
x-ms-request-id: [ed9b6de6-0001-0045-18b5-8847d8000000]
x-ms-request-id: [427fd2a9-0001-0135-6fd5-e4bcd4000000]
x-ms-version: ['2016-05-31']
status: {code: 412, message: The condition specified using HTTP conditional header(s)
is not met.}

Просмотреть файл

@ -4,21 +4,21 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d1ffe212-f4a8-11e6-8648-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:19 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [41c89d4a-50c8-11e7-99d8-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:08 GMT']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer50c01dd4?restype=container
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:19 GMT']
ETag: ['"0x8D456CCB646D17A"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:19 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC25D43653"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:08 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-request-id: [573eb3fc-0001-0003-7bb5-88735f000000]
x-ms-request-id: [f628869d-0001-0124-6ad5-e48bcf000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -26,25 +26,25 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
If-Modified-Since: ['Fri, 17 Feb 2017 00:19:20 GMT']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d239d9f8-f4a8-11e6-bb50-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:20 GMT']
If-Modified-Since: ['Wed, 14 Jun 2017 05:56:08 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [41dc95b8-50c8-11e7-b243-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:08 GMT']
x-ms-lease-action: [acquire]
x-ms-lease-duration: ['-1']
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer50c01dd4?comp=lease&restype=container
uri: https://storagename.blob.core.windows.net/utcontainer50c01dd4?restype=container&comp=lease
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:19 GMT']
ETag: ['"0x8D456CCB646D17A"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:19 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC25D43653"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:08 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-id: [f3656b06-18b0-4665-be59-e1958de9741e]
x-ms-request-id: [573eb414-0001-0003-11b5-88735f000000]
x-ms-lease-id: [bc25eef4-4244-4164-afa6-be9a6a5f8c93]
x-ms-request-id: [f62886a6-0001-0124-71d5-e48bcf000000]
x-ms-version: ['2016-05-31']
status: {code: 201, message: Created}
- request:
@ -52,23 +52,23 @@ interactions:
headers:
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.2; Windows 10)]
x-ms-client-request-id: [d248bc36-f4a8-11e6-8c1d-64510640cc62]
x-ms-date: ['Fri, 17 Feb 2017 00:34:20 GMT']
User-Agent: [Azure-Storage/0.34.3 (Python CPython 3.6.1; Windows 10)]
x-ms-client-request-id: [41e19de2-50c8-11e7-a299-705a0f3d3f8d]
x-ms-date: ['Wed, 14 Jun 2017 06:11:08 GMT']
x-ms-lease-action: [break]
x-ms-version: ['2016-05-31']
method: PUT
uri: https://storagename.blob.core.windows.net/utcontainer50c01dd4?comp=lease&restype=container
uri: https://storagename.blob.core.windows.net/utcontainer50c01dd4?restype=container&comp=lease
response:
body: {string: ''}
headers:
Date: ['Fri, 17 Feb 2017 00:34:19 GMT']
ETag: ['"0x8D456CCB646D17A"']
Last-Modified: ['Fri, 17 Feb 2017 00:34:19 GMT']
Date: ['Wed, 14 Jun 2017 06:11:07 GMT']
ETag: ['"0x8D4B2EC25D43653"']
Last-Modified: ['Wed, 14 Jun 2017 06:11:08 GMT']
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
Transfer-Encoding: [chunked]
x-ms-lease-time: ['0']
x-ms-request-id: [573eb425-0001-0003-22b5-88735f000000]
x-ms-request-id: [f62886ae-0001-0124-77d5-e48bcf000000]
x-ms-version: ['2016-05-31']
status: {code: 202, message: Accepted}
version: 1

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше