зеркало из https://github.com/Azure/azure-cli.git
Adopt large block blob (#2698)
1. Maximize the upload block size and single put size. 2. Remove the mitigation for storage python SDK issue #190. 3. Update blob storage upload/download tests 4. Add live only tests for large blob download 5. Add live test base class
This commit is contained in:
Родитель
882936155a
Коммит
ce75078052
|
@ -4,6 +4,7 @@ concurrency = multiprocessing
|
|||
omit =
|
||||
*/env/*
|
||||
*/tests/*
|
||||
doc/*
|
||||
cover.py
|
||||
source =
|
||||
src/
|
||||
|
|
|
@ -3,14 +3,16 @@
|
|||
# Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
# --------------------------------------------------------------------------------------------
|
||||
|
||||
from .base import ScenarioTest
|
||||
from .base import ScenarioTest, LiveTest
|
||||
from .preparers import StorageAccountPreparer, ResourceGroupPreparer
|
||||
from .exceptions import CliTestError
|
||||
from .checkers import JMESPathCheck, JMESPathCheckExists, NoneCheck
|
||||
from .decorators import live_only
|
||||
from .utilities import get_sha1_hash
|
||||
|
||||
__all__ = ['ScenarioTest',
|
||||
__all__ = ['ScenarioTest', 'LiveTest',
|
||||
'ResourceGroupPreparer', 'StorageAccountPreparer',
|
||||
'CliTestError',
|
||||
'JMESPathCheck', 'JMESPathCheckExists', 'NoneCheck', 'live_only']
|
||||
'JMESPathCheck', 'JMESPathCheckExists', 'NoneCheck', 'live_only',
|
||||
'get_sha1_hash']
|
||||
__version__ = '0.1.0+dev'
|
||||
|
|
|
@ -24,9 +24,84 @@ from .recording_processors import (SubscriptionRecordingProcessor, OAuthRequestR
|
|||
GeneralNameReplacer, LargeRequestBodyProcessor,
|
||||
LargeResponseBodyProcessor, LargeResponseBodyReplacer)
|
||||
from .utilities import create_random_name
|
||||
from .decorators import live_only
|
||||
|
||||
|
||||
class ScenarioTest(unittest.TestCase): # pylint: disable=too-many-instance-attributes
|
||||
class IntegrationTestBase(unittest.TestCase):
|
||||
def __init__(self, method_name):
|
||||
super(IntegrationTestBase, self).__init__(method_name)
|
||||
self.diagnose = os.environ.get(ENV_TEST_DIAGNOSE, None) == 'True'
|
||||
self.skip_assert = os.environ.get(ENV_SKIP_ASSERT, None) == 'True'
|
||||
|
||||
def cmd(self, command, checks=None):
|
||||
if self.diagnose:
|
||||
begin = datetime.datetime.now()
|
||||
print('\nExecuting command: {}'.format(command))
|
||||
|
||||
result = execute(command)
|
||||
|
||||
if self.diagnose:
|
||||
duration = datetime.datetime.now() - begin
|
||||
print('\nCommand accomplished in {} s. Exit code {}.\n{}'.format(
|
||||
duration.total_seconds(), result.exit_code, result.output))
|
||||
|
||||
if not checks:
|
||||
checks = []
|
||||
elif not isinstance(checks, list):
|
||||
checks = [checks]
|
||||
|
||||
if not self.skip_assert:
|
||||
for c in checks:
|
||||
c(result)
|
||||
|
||||
return result
|
||||
|
||||
def create_random_name(self, prefix, length): # for override pylint: disable=no-self-use
|
||||
return create_random_name(prefix, length)
|
||||
|
||||
def create_temp_file(self, size_kb, full_random=False):
|
||||
"""
|
||||
Create a temporary file for testing. The test harness will delete the file during tearing
|
||||
down.
|
||||
"""
|
||||
_, path = tempfile.mkstemp()
|
||||
self.addCleanup(lambda: os.remove(path))
|
||||
|
||||
with open(path, mode='r+b') as f:
|
||||
if full_random:
|
||||
chunk = os.urandom(1024)
|
||||
else:
|
||||
chunk = bytearray([0] * 1024)
|
||||
for _ in range(size_kb):
|
||||
f.write(chunk)
|
||||
|
||||
return path
|
||||
|
||||
def create_temp_dir(self):
|
||||
"""
|
||||
Create a temporary directory for testing. The test harness will delete the directory during
|
||||
tearing down.
|
||||
"""
|
||||
temp_dir = tempfile.mkdtemp()
|
||||
self.addCleanup(lambda: shutil.rmtree(temp_dir, ignore_errors=True))
|
||||
|
||||
return temp_dir
|
||||
|
||||
@classmethod
|
||||
def set_env(cls, key, val):
|
||||
os.environ[key] = val
|
||||
|
||||
@classmethod
|
||||
def pop_env(cls, key):
|
||||
return os.environ.pop(key, None)
|
||||
|
||||
|
||||
@live_only()
|
||||
class LiveTest(IntegrationTestBase):
|
||||
pass
|
||||
|
||||
|
||||
class ScenarioTest(IntegrationTestBase): # pylint: disable=too-many-instance-attributes
|
||||
FILTER_HEADERS = [
|
||||
'authorization',
|
||||
'client-request-id',
|
||||
|
@ -67,8 +142,6 @@ class ScenarioTest(unittest.TestCase): # pylint: disable=too-many-instance-attr
|
|||
if live_test and os.path.exists(self.recording_file):
|
||||
os.remove(self.recording_file)
|
||||
|
||||
self.diagnose = os.environ.get(ENV_TEST_DIAGNOSE, None) == 'True'
|
||||
self.skip_assert = os.environ.get(ENV_SKIP_ASSERT, None) == 'True'
|
||||
self.in_recording = live_test or not os.path.exists(self.recording_file)
|
||||
self.test_resources_count = 0
|
||||
self.original_env = os.environ.copy()
|
||||
|
@ -103,62 +176,6 @@ class ScenarioTest(unittest.TestCase): # pylint: disable=too-many-instance-attr
|
|||
else:
|
||||
return moniker
|
||||
|
||||
def cmd(self, command, checks=None):
|
||||
if self.diagnose:
|
||||
begin = datetime.datetime.now()
|
||||
print('\nExecuting command: {}'.format(command))
|
||||
|
||||
result = execute(command)
|
||||
|
||||
if self.diagnose:
|
||||
duration = datetime.datetime.now() - begin
|
||||
print('\nCommand accomplished in {} s. Exit code {}.\n{}'.format(
|
||||
duration.total_seconds(), result.exit_code, result.output))
|
||||
|
||||
if not checks:
|
||||
checks = []
|
||||
elif not isinstance(checks, list):
|
||||
checks = [checks]
|
||||
|
||||
if not self.skip_assert:
|
||||
for c in checks:
|
||||
c(result)
|
||||
|
||||
return result
|
||||
|
||||
def create_temp_file(self, size_kb):
|
||||
"""
|
||||
Create a temporary file for testing. The test harness will delete the file during tearing
|
||||
down.
|
||||
"""
|
||||
_, path = tempfile.mkstemp()
|
||||
self.addCleanup(lambda: os.remove(path))
|
||||
|
||||
with open(path, mode='r+b') as f:
|
||||
chunk = bytearray([0] * 1024)
|
||||
for _ in range(size_kb):
|
||||
f.write(chunk)
|
||||
|
||||
return path
|
||||
|
||||
def create_temp_dir(self):
|
||||
"""
|
||||
Create a temporary directory for testing. The test harness will delete the directory during
|
||||
tearing down.
|
||||
"""
|
||||
temp_dir = tempfile.mkdtemp()
|
||||
self.addCleanup(lambda: shutil.rmtree(temp_dir, ignore_errors=True))
|
||||
|
||||
return temp_dir
|
||||
|
||||
@classmethod
|
||||
def set_env(cls, key, val):
|
||||
os.environ[key] = val
|
||||
|
||||
@classmethod
|
||||
def pop_env(cls, key):
|
||||
return os.environ.pop(key, None)
|
||||
|
||||
def _process_request_recording(self, request):
|
||||
if self.in_recording:
|
||||
for processor in self.recording_processors:
|
||||
|
|
|
@ -11,4 +11,4 @@ from .const import ENV_LIVE_TEST
|
|||
def live_only():
|
||||
return unittest.skipUnless(
|
||||
os.environ.get(ENV_LIVE_TEST, False),
|
||||
'This test is designed to live test only.')
|
||||
'This is a live only test. A live test will bypass all vcrpy components.')
|
||||
|
|
|
@ -22,17 +22,16 @@ class AbstractPreparer(object):
|
|||
self.resource_moniker = None
|
||||
self.resource_random_name = None
|
||||
self.test_class_instance = None
|
||||
self.live_test = False
|
||||
|
||||
def __call__(self, fn):
|
||||
def _preparer_wrapper(test_class_instance, **kwargs):
|
||||
if not isinstance(test_class_instance, ScenarioTest):
|
||||
raise CliTestError('The preparer decorator can be only used on the methods of '
|
||||
'class derived from {}'.format(ScenarioTest.__name__))
|
||||
self.live_test = not isinstance(test_class_instance, ScenarioTest)
|
||||
self.test_class_instance = test_class_instance
|
||||
|
||||
if test_class_instance.in_recording:
|
||||
if self.live_test or test_class_instance.in_recording:
|
||||
resource_name = self.random_name
|
||||
if isinstance(self, RecordingProcessor):
|
||||
if not self.live_test and isinstance(self, RecordingProcessor):
|
||||
test_class_instance.recording_processors.append(self)
|
||||
else:
|
||||
resource_name = self.moniker
|
||||
|
|
|
@ -16,3 +16,15 @@ def create_random_name(prefix='clitest', length=24):
|
|||
datetime.datetime.utcnow().strftime('%Y%m%d%H%M%S%f')).encode('utf-8')
|
||||
prefix += str(hashlib.sha256(identity).hexdigest())
|
||||
return prefix[:length]
|
||||
|
||||
|
||||
def get_sha1_hash(file_path):
|
||||
sha1 = hashlib.sha256()
|
||||
with open(file_path, 'rb') as f:
|
||||
while True:
|
||||
data = f.read(65536)
|
||||
if not data:
|
||||
break
|
||||
sha1.update(data)
|
||||
|
||||
return sha1.hexdigest()
|
||||
|
|
|
@ -347,10 +347,6 @@ with CommandContext('storage blob copy start-batch') as c:
|
|||
group.reg_arg('source_share')
|
||||
group.reg_arg('prefix', validator=process_blob_copy_batch_namespace)
|
||||
|
||||
# TODO: Remove workaround when Python storage SDK issue #190 is fixed.
|
||||
for item in ['upload', 'upload-batch']:
|
||||
register_cli_argument('storage blob {}'.format(item), 'max_connections', type=int, help='Maximum number of parallel connections to use when the blob size exceeds 64MB.', default=1)
|
||||
|
||||
# FILE UPLOAD-BATCH PARAMETERS
|
||||
with CommandContext('storage file upload-batch') as c:
|
||||
c.reg_arg('source', options_list=('--source', '-s'), validator=process_file_upload_batch_parameters)
|
||||
|
|
|
@ -159,6 +159,9 @@ def upload_blob( # pylint: disable=too-many-locals
|
|||
timeout=timeout)
|
||||
|
||||
def upload_block_blob():
|
||||
client.MAX_BLOCK_SIZE = 100 * 1024 * 1024
|
||||
client.MAX_SINGLE_PUT_SIZE = 256 * 1024 * 1024
|
||||
|
||||
return client.create_blob_from_path(
|
||||
container_name=container_name,
|
||||
blob_name=blob_name,
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Tue, 28 Mar 2017 22:44:40 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:37:54 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1196']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1176']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}'
|
||||
body: '{"kind": "Storage", "sku": {"name": "Standard_LRS"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:44:41 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:37:54 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8818bc4f-91cd-4dce-9aa8-18a5f7e5354f?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/bfd9bf35-44bd-4bdd-8667-bf327487b031?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1192']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1183']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -66,16 +66,16 @@ interactions:
|
|||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8818bc4f-91cd-4dce-9aa8-18a5f7e5354f?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/bfd9bf35-44bd-4bdd-8667-bf327487b031?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:44:59 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:12 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -105,7 +105,7 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['130']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:01 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:14 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -127,14 +127,14 @@ interactions:
|
|||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}]}
|
||||
body: {string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['839']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:02 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:14 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -156,14 +156,14 @@ interactions:
|
|||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:04 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:16 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -186,21 +186,21 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"bmPAkFDgx0ya3Ci6BhKa4/NiEe4bW7uAfPFiPN7Baidslld3dB7nbC7cSIOZ9mHYdORx/XGsw0FhvTI+fxP7gQ=="},{"keyName":"key2","permissions":"Full","value":"6dLe++E1CaNAytAtn9xpm3+I8b7N1OCzu90vYnwHkjVpHJg0wbAMCozVTxBCWxRo7/GvQeC69lB5+GPIJnF9WQ=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"GjUDqDj4Pmb3bguQy7WDhEXO8k/zej4uAadOGvp6z3OB/6tYxJ0MusNQ2Ssg8h2EJsR5siOOWr4wu5uYDd1rRg=="},{"keyName":"key2","permissions":"Full","value":"WAok/VqZAGXX9WyMe4KEtfeYMDMuWZttkOV+NWDTryfQB92HeK5GkoykSwFNzkq1wkgnz2X8X9z8ejMaApxvFA=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:05 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:21 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1194']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1179']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -216,14 +216,14 @@ interactions:
|
|||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:06 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:20 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -232,7 +232,7 @@ interactions:
|
|||
vary: [Accept-Encoding]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "tags": {"foo": "bar", "cat": ""}}'
|
||||
body: '{"tags": {"cat": "", "foo": "bar"}, "sku": {"name": "Standard_LRS"}}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -246,21 +246,21 @@ interactions:
|
|||
method: PATCH
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{"cat":"","foo":"bar"},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{"cat":"","foo":"bar"},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['847']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:07 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:23 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1197']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1178']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -276,14 +276,14 @@ interactions:
|
|||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{"cat":"","foo":"bar"},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{"cat":"","foo":"bar"},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['847']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:09 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:25 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -292,7 +292,7 @@ interactions:
|
|||
vary: [Accept-Encoding]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_GRS"}, "tags": {}}'
|
||||
body: '{"tags": {}, "sku": {"name": "Standard_GRS"}}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -306,21 +306,21 @@ interactions:
|
|||
method: PATCH
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available"},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available"},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['888']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:11 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:27 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1192']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1190']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -336,14 +336,14 @@ interactions:
|
|||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available"},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available"},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['888']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:12 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:25 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -352,7 +352,7 @@ interactions:
|
|||
vary: [Accept-Encoding]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_GRS"}, "tags": {"test": "success"}}'
|
||||
body: '{"tags": {"test": "success"}, "sku": {"name": "Standard_GRS"}}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -366,21 +366,21 @@ interactions:
|
|||
method: PATCH
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-03-28T22:44:41.4542086Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available"},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{"test":"success"},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cli000002","kind":"Storage","location":"westus","name":"cli000002","properties":{"creationTime":"2017-04-03T17:37:58.9911738Z","primaryEndpoints":{"blob":"https://cli000002.blob.core.windows.net/","file":"https://cli000002.file.core.windows.net/","queue":"https://cli000002.queue.core.windows.net/","table":"https://cli000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","secondaryLocation":"eastus","statusOfPrimary":"available","statusOfSecondary":"available"},"sku":{"name":"Standard_GRS","tier":"Standard"},"tags":{"test":"success"},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['904']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:13 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:25 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1193']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1178']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -401,12 +401,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:45:15 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:30 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1193']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1178']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: 'b''{"name": "cli000002", "type": "Microsoft.Storage/storageAccounts"}'''
|
||||
|
@ -430,7 +430,7 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['23']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:16 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:28 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -458,12 +458,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:45:18 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:30 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc4MzkyQUVBRThCQTg5QUUwQkE5QTA1NjYzMzY4MjAxMjFFN3xBN0JFNDMyMDY3NzY1OUI5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkczNTA5RDU1RTdFRjBDNjNCN0VBODlGNUEwM0JFQzQ5REVERHw5OTU5MDhFMDRGNjY4NkU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1195']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1189']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
|
@ -44,7 +44,7 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['4523']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Tue, 28 Mar 2017 22:45:18 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:38:32 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Tue, 28 Mar 2017 22:46:00 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:21 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1186']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1189']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}'
|
||||
body: '{"kind": "Storage", "sku": {"name": "Standard_LRS"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:46:02 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:20 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/da1e402f-2ee8-42db-99ce-beb1d14b27a6?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7e9da5f1-afcc-4326-abbc-35c5568c2918?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1189']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1186']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -66,16 +66,16 @@ interactions:
|
|||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/da1e402f-2ee8-42db-99ce-beb1d14b27a6?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7e9da5f1-afcc-4326-abbc-35c5568c2918?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-28T22:46:02.0619858Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-04-03T17:39:22.7957920Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:46:19 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:40 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -98,37 +98,37 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"q/PjXPkezDXzKyIwX45TQE2ANauqTAQHYbPYDwOwJnt+gqjFWn5wZTFuIeZHkpBYkqhtKQfLiJcS815K9YWZhw=="},{"keyName":"key2","permissions":"Full","value":"0fKVd9kROLR238K5TTt9qx7SaH9+GZ3SQSqGfWQR2CRoohwkR/slSxc5ukLIlTOVH62OSLZmMK3HAs4/pVHHTQ=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"ZlQblEfh4O3xEnvjKBfCYHo3Y3GpHeMSXj1Lj/U4qQ9j/LKihjO2bRr22asqUxiEOlzJOKpcfs9nrCRuvdH4iA=="},{"keyName":"key2","permissions":"Full","value":"/DUTDrLQdfHXQ8pPwGkR1Dm4TvFbukcqjh5ePKnw8/RT8+ufPbtz2qHDyRZo7i9f/W4kRPuKtNpLcukZONPONg=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:46:21 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:44 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1196']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1187']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:46:22 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:39:43 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:46:22 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:43 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -138,17 +138,17 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:46:22 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:39:43 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:46:22 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:42 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -160,16 +160,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:46:23 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:39:43 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.table.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:46:22 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:43 GMT']
|
||||
server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -182,14 +182,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['264']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:46:23 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:39:44 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:46:24 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -199,16 +199,16 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:46:24 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:39:45 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>true</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>true</Enabled><Days>1</Days></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:46:24 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:45 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -218,17 +218,17 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:46:24 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:39:45 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:46:24 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:44 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -240,16 +240,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:46:25 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:39:45 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.table.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:46:24 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:45 GMT']
|
||||
server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -274,12 +274,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:46:26 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:39:54 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc4MEE2NEI2RUQ5NDlBRjc1MUYzNDgyNDU2MjgzMzU2RDcyQXwyMDVFQTYxMDlGN0RBM0EzLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdFMjc5ODE2MjdFNTMzQjI1N0QxODgyNjk1OTY1NEMzRTcwRnxDMEZBNkM2NDVFRTI5REZDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1191']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1181']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
body: '{"tags": {"use": "az-test"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -20,11 +20,11 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Tue, 28 Mar 2017 23:31:38 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:55:48 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1189']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1197']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"location": "westus", "sku": {"name": "Standard_LRS"}, "kind": "Storage"}'
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 23:31:47 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:55:51 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/df9d27c0-d942-4e52-8a84-fb5b42b2e899?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8dd69d37-1459-47c9-b901-7cadd5231268?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1196']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -66,16 +66,16 @@ interactions:
|
|||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/df9d27c0-d942-4e52-8a84-fb5b42b2e899?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8dd69d37-1459-47c9-b901-7cadd5231268?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-28T23:31:47.3617200Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-04-03T19:55:52.1854481Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 23:32:22 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:09 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -98,14 +98,14 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"x3XrI39yYuMkS2eqc8rcwn40zB45R1NJEdxbKeK13CBM6mx/kbcYtvoS8EzyqXQIE3y6Dy+nTbiIPKp0R9D6vw=="},{"keyName":"key2","permissions":"Full","value":"wvJbdVcy7qiCmSxw2ujJnWiSgqEoi6jreDy6iJHQR3FK2HXuB/YO2jdfAMJXd9ZmMbH07dr+VknWkCcGbspEqg=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"WcpadP4Xme4uG3IASyAb6zOs9zItI5xFYREW2icu0DF/UIZtBUwNxpGoGQjQvv1t3IFBnXbHSoQHHQs+wZFJ7g=="},{"keyName":"key2","permissions":"Full","value":"y2bCgzGSH+aTg9yVN+05Gm4TVLYMB4XKqveLwdnwCmwb3yWXMxM0q35JPL+bjMKdzrx6nqjH6FavGVDW0fs/Gg=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 23:32:36 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:13 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -119,7 +119,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:54 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:14 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
|
@ -128,7 +128,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 23:32:54 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:15 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -138,7 +138,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:54 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:15 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties
|
||||
|
@ -147,7 +147,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 23:32:54 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:15 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -157,7 +157,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:54 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:15 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties
|
||||
|
@ -167,7 +167,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 23:32:54 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:15 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -179,7 +179,7 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:54 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:15 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties
|
||||
|
@ -188,7 +188,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 23:32:54 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:15 GMT']
|
||||
server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -201,14 +201,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['386']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:56 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:17 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 23:32:56 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:18 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -218,7 +218,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:58 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
|
@ -227,7 +227,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 23:32:58 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:20 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -237,7 +237,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:58 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.file.core.windows.net/?restype=service&comp=properties
|
||||
|
@ -246,7 +246,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 23:32:58 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:20 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -256,7 +256,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:58 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?restype=service&comp=properties
|
||||
|
@ -266,7 +266,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 23:32:58 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:19 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -278,7 +278,7 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 23:32:58 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 19:56:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.table.core.windows.net/?restype=service&comp=properties
|
||||
|
@ -287,7 +287,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 23:32:58 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:19 GMT']
|
||||
server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -312,12 +312,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 23:33:01 GMT']
|
||||
date: ['Mon, 03 Apr 2017 19:56:21 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkczNTkzOTEzRUM2M0ZFQzlFRDk4MEZEODczRDlBOUU4ODcyM3xGOTY2OURENzE3QUFCMDZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdBOEYxRTA2NURBQzNFQjhFRUQ2ODQyQzk3Rjk0QjAyODRFM3xFOUVCREFFN0VDRjUyRDc1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1197']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Tue, 28 Mar 2017 22:46:56 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:24 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1184']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1188']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}'
|
||||
body: '{"kind": "Storage", "sku": {"name": "Standard_LRS"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:46:58 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:28 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/6b98dfcc-7f32-46d3-bb12-099eaa3cdad1?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/1744da07-962a-4c6b-b29b-0c4ea8264f6d?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1188']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1177']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -66,16 +66,16 @@ interactions:
|
|||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/6b98dfcc-7f32-46d3-bb12-099eaa3cdad1?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/1744da07-962a-4c6b-b29b-0c4ea8264f6d?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-28T22:46:58.3937056Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-04-03T17:40:29.4585347Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:47:16 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:42 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -98,21 +98,21 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"KW+gykE7qr0bpFgZLJiZHVU+8Oi3IFFX8wfXUXrlwhMwro1ZGGzML1tggyZiFetOiqVt8KTPea7zf+wPSxFikg=="},{"keyName":"key2","permissions":"Full","value":"PO8BZqvmep0gTnGgONBZj2RXRMm9TIxAkpUOcrjWxb2U7A1y8Xe2cGBWkC8u2NIpbUIkynpWPvd3mOIxuQXY4w=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"DAIT8MOsam373K+6lI1Gde7QUm7FvuNfyKFPhM8UE7nDkvX1N0HGgkr03tPrcZSu3A0N3Et4el1pkhqFOJqmgg=="},{"keyName":"key2","permissions":"Full","value":"XRu902kBzPfaJRLmXJh8Q01XbMNdkyV117mmGMJ2Ar+VBAaUBWZn6CMRshs5puMFdPI+JsnV9YeyIWyseH2SFA=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:47:18 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:45 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1188']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1181']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"keyName": "key1"}'
|
||||
|
@ -129,21 +129,21 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/regenerateKey?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"J80F1yQXintrmqF9H+FkNcEMoauHj9fDInxaK+Bvrx2g8QAXpURM4RQustMGai9TYYdXTNkePgsrnvi/V+b0cA=="},{"keyName":"key2","permissions":"Full","value":"PO8BZqvmep0gTnGgONBZj2RXRMm9TIxAkpUOcrjWxb2U7A1y8Xe2cGBWkC8u2NIpbUIkynpWPvd3mOIxuQXY4w=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"WYbrVQ6O9WMPLEqAAO7vr/LhUXCb9NXofnr2TPxT9NtgSn+KxsJ5BYD7PAtDXe3JrDsrTta5PVhCNwAvdRJhww=="},{"keyName":"key2","permissions":"Full","value":"XRu902kBzPfaJRLmXJh8Q01XbMNdkyV117mmGMJ2Ar+VBAaUBWZn6CMRshs5puMFdPI+JsnV9YeyIWyseH2SFA=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:47:19 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:49 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1197']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1176']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"keyName": "key2"}'
|
||||
|
@ -160,21 +160,21 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/regenerateKey?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"J80F1yQXintrmqF9H+FkNcEMoauHj9fDInxaK+Bvrx2g8QAXpURM4RQustMGai9TYYdXTNkePgsrnvi/V+b0cA=="},{"keyName":"key2","permissions":"Full","value":"p/2RRGLLEZ0vy2y5XlWtP3CIFyTHG4WVZMRVET1Z3AG76DHJ6NwgHoa4Hkm8pWU1WEJToYBJSu1AGcK9+haKJw=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"WYbrVQ6O9WMPLEqAAO7vr/LhUXCb9NXofnr2TPxT9NtgSn+KxsJ5BYD7PAtDXe3JrDsrTta5PVhCNwAvdRJhww=="},{"keyName":"key2","permissions":"Full","value":"RJRiQaEhucrQCCc/QmJL9tmEXTijKCI4fOF6AEPO1iKXRMSXDaZFBcBjKTRq9bA5F5cpR2HhOtGY16wa+VGmpA=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:47:21 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:46 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1190']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1183']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -196,12 +196,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:47:21 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:49 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc0RkQ1ODFENTU5RkExNTk3NzlDMEI1ODBDQTM4QzJBMEZDNHw5MTU2QjdENjM2MzVCQ0U4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkczRkY5MjQzNkVCREM5QUZBNUNGNTRDQzBFQUNFQzkyRUI4NXwwQTVGODVDMTAwMzE2RjVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1191']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1180']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
|
@ -14,14 +14,14 @@ interactions:
|
|||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/usages?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: "{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n
|
||||
\ \"currentValue\": 13,\r\n \"limit\": 250,\r\n \"name\": {\r\n
|
||||
\ \"currentValue\": 15,\r\n \"limit\": 250,\r\n \"name\": {\r\n
|
||||
\ \"value\": \"StorageAccounts\",\r\n \"localizedValue\": \"Storage
|
||||
Accounts\"\r\n }\r\n }\r\n ]\r\n}"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['218']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:47:23 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:51 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
|
|
@ -10,17 +10,17 @@ interactions:
|
|||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
x-ms-client-request-id: [e3fd2f06-1407-11e7-8ec9-4c32759c53db]
|
||||
x-ms-client-request-id: [51a3d71c-1893-11e7-b038-4c32759c53db]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vcr_resource_group/providers/Microsoft.Storage/storageAccounts/dummystorage/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"Qf8Kulnqx+wWBd9sUvROIXlx3NBNxw4gLQ67PgBqbLYgdBzuAlH598GMgNLWCnR4cLvvF5K1F/p82wXIqwe+ZQ=="},{"keyName":"key2","permissions":"Full","value":"68mKSuEDnNs33axpGD3yxaFEtZY+HT4LUvICD6OMYsqKJsXwWzy539m4vguW1ArpIvUdVh5JPcL+yOQHb9duug=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"VbK1Jzf0t9xXhHuSd7wvJuH9QszlFC8CicBJDNsKAVXy6Jl6zeOnOMj1hvrF17D5W1OdVq7+ueuIzn6qVwfR6A=="},{"keyName":"key2","permissions":"Full","value":"u7BhK/uLDJdqCtaq8Zbmb0kF4Rd9xbbgf+pJ65c4vPOPeop7Hap8HVMxNt44gcDCMoSQPZAZhluDNdk2ZagP+w=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json]
|
||||
Date: ['Tue, 28 Mar 2017 22:42:58 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:03 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -28,26 +28,26 @@ interactions:
|
|||
Transfer-Encoding: [chunked]
|
||||
Vary: [Accept-Encoding]
|
||||
content-length: ['289']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1195']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1187']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:42:59 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:08 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers
|
||||
/>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:42:58 GMT']
|
||||
ETag: ['"0x8D4762BC79D71D1"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:42:57 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:07 GMT']
|
||||
ETag: ['"0x8D47AB73520CE36"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:05 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -57,19 +57,19 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:00 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:08 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers
|
||||
/>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:01 GMT']
|
||||
ETag: ['"0x8D4762BC79D71D1"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:42:57 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:08 GMT']
|
||||
ETag: ['"0x8D47AB73520CE36"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:05 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -82,17 +82,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['184']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:01 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:09 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:01 GMT']
|
||||
ETag: ['"0x8D4762BCA0BF0D3"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:01 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:08 GMT']
|
||||
ETag: ['"0x8D47AB7373E43BF"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:09 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -102,18 +102,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
ETag: ['"0x8D4762BCA0BF0D3"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:01 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:09 GMT']
|
||||
ETag: ['"0x8D47AB7373E43BF"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:09 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -126,17 +126,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['296']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
ETag: ['"0x8D4762BCAF8D480"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:09 GMT']
|
||||
ETag: ['"0x8D47AB737D016F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -146,18 +146,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:03 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:03 GMT']
|
||||
ETag: ['"0x8D4762BCAF8D480"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
ETag: ['"0x8D47AB737D016F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -165,22 +165,22 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['413']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:03 GMT']
|
||||
ETag: ['"0x8D4762BCBC94F9D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
ETag: ['"0x8D47AB7385564D5"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -190,18 +190,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
ETag: ['"0x8D4762BCBC94F9D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
ETag: ['"0x8D47AB7385564D5"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:10 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -209,22 +209,22 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00Z</Start><Expiry>2016-05-01T00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00Z</Start><Expiry>2016-05-01T00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['591']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
ETag: ['"0x8D4762BCCA1469D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
ETag: ['"0x8D47AB738E6E9D2"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -234,18 +234,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:06 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:12 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:06 GMT']
|
||||
ETag: ['"0x8D4762BCCA1469D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
ETag: ['"0x8D47AB738E6E9D2"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -255,18 +255,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:13 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
ETag: ['"0x8D4762BCCA1469D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:13 GMT']
|
||||
ETag: ['"0x8D47AB738E6E9D2"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -276,18 +276,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:09 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:14 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:09 GMT']
|
||||
ETag: ['"0x8D4762BCCA1469D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:14 GMT']
|
||||
ETag: ['"0x8D47AB738E6E9D2"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -297,18 +297,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:11 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:16 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:10 GMT']
|
||||
ETag: ['"0x8D4762BCCA1469D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:16 GMT']
|
||||
ETag: ['"0x8D47AB738E6E9D2"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -318,18 +318,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:12 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:17 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:11 GMT']
|
||||
ETag: ['"0x8D4762BCCA1469D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:16 GMT']
|
||||
ETag: ['"0x8D47AB738E6E9D2"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -339,18 +339,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:13 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:14 GMT']
|
||||
ETag: ['"0x8D4762BCCA1469D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:19 GMT']
|
||||
ETag: ['"0x8D47AB738E6E9D2"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:11 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -358,22 +358,22 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['597']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:13 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:14 GMT']
|
||||
ETag: ['"0x8D4762BD1BBE8B0"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:14 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:19 GMT']
|
||||
ETag: ['"0x8D47AB73D982D0F"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:19 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -383,18 +383,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:15 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:21 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:15 GMT']
|
||||
ETag: ['"0x8D4762BD1BBE8B0"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:14 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:20 GMT']
|
||||
ETag: ['"0x8D47AB73D982D0F"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:19 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -404,18 +404,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:16 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:22 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:16 GMT']
|
||||
ETag: ['"0x8D4762BD1BBE8B0"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:14 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:22 GMT']
|
||||
ETag: ['"0x8D47AB73D982D0F"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:19 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -423,22 +423,22 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['491']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:17 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:23 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:16 GMT']
|
||||
ETag: ['"0x8D4762BD38D97B9"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:17 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:22 GMT']
|
||||
ETag: ['"0x8D47AB73FA748B9"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:23 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -448,18 +448,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:18 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:24 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?comp=acl&restype=container
|
||||
uri: https://dummystorage.blob.core.windows.net/acltestcontainer?restype=container&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:18 GMT']
|
||||
ETag: ['"0x8D4762BD38D97B9"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:17 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:24 GMT']
|
||||
ETag: ['"0x8D47AB73FA748B9"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:23 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
|
|
@ -10,17 +10,17 @@ interactions:
|
|||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
x-ms-client-request-id: [e39aef58-1407-11e7-8121-4c32759c53db]
|
||||
x-ms-client-request-id: [6d00978c-1893-11e7-a1db-4c32759c53db]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_storage_blob_copy/providers/Microsoft.Storage/storageAccounts/dummystorage/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"n/j2QsFcflO+aR2VGQ+10NN8VNQfAqqIQEQbqF12+lfsMoAU6IsC8DRtSAfTjWK95kIGphVS4NkVvLrkLxNd8Q=="},{"keyName":"key2","permissions":"Full","value":"m0qy4OAYXyAf/RIBE/EE4M6jZHug9Jh9ZSmz5AqYD6puqCcBKaUgvEoWtNJPGXXX7s5bbV9SZPjP9Rpz8K5vOQ=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"HBs8F30HSTTc5mpkfBVrFbuHUidS+ghIFnIId1hDwQ+HQC1XGEA1DnSCl61fm1LnQLab0+KoqcKjZncre5DWLQ=="},{"keyName":"key2","permissions":"Full","value":"v2TypRgBYi4VivBLPNXT8uQZJvnC/yq6Eoyq0WrHw0qPYWQlqtdzr8rxzbrbaUVxMYzZh3tp9kx0rC/lDA0qiQ=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json]
|
||||
Date: ['Tue, 28 Mar 2017 22:42:57 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:50 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -28,7 +28,7 @@ interactions:
|
|||
Transfer-Encoding: [chunked]
|
||||
Vary: [Accept-Encoding]
|
||||
content-length: ['289']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1189']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -36,17 +36,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:42:59 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:53 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/cont1?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:42:58 GMT']
|
||||
ETag: ['"0x8D4762BC8DC36F4"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:42:59 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:54 GMT']
|
||||
ETag: ['"0x8D47AB7523EEFA1"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:54 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -57,17 +57,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:00 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:54 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/cont2?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:00 GMT']
|
||||
ETag: ['"0x8D4762BC9A60D6A"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:00 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:54 GMT']
|
||||
ETag: ['"0x8D47AB752B431B3"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:55 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -79,8 +79,8 @@ interactions:
|
|||
Content-Length: ['78']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:01 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:55 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/cont1/blob1
|
||||
|
@ -88,9 +88,9 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:01 GMT']
|
||||
ETag: ['"0x8D4762BCAB66704"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:55 GMT']
|
||||
ETag: ['"0x8D47AB7534D28EC"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:56 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-request-server-encrypted: ['false']
|
||||
|
@ -103,8 +103,8 @@ interactions:
|
|||
Content-Length: ['78']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:03 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:56 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/cont1/blob2
|
||||
|
@ -112,9 +112,9 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:03 GMT']
|
||||
ETag: ['"0x8D4762BCB872EF6"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:03 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:55 GMT']
|
||||
ETag: ['"0x8D47AB753EB164A"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:57 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-request-server-encrypted: ['false']
|
||||
|
@ -126,21 +126,21 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage039781699738.blob.core.windows.net/cont1/blob1']
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage789870349033.blob.core.windows.net/cont1/blob1']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:58 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/cont2/blob1
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
ETag: ['"0x8D4762BCD0E0493"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:06 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:58 GMT']
|
||||
ETag: ['"0x8D47AB75522F870"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:59 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-copy-id: [5ff96fed-673c-4964-96e1-b701515da212]
|
||||
x-ms-copy-id: [6827491a-1628-42fa-adcd-00cf4a2ebe7c]
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 202, message: Accepted}
|
||||
|
@ -149,8 +149,8 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:31:59 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://dummystorage.blob.core.windows.net/cont2/blob1
|
||||
|
@ -161,15 +161,15 @@ interactions:
|
|||
Content-Length: ['78']
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
ETag: ['"0x8D4762BCD0E0493"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:06 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:31:59 GMT']
|
||||
ETag: ['"0x8D47AB75522F870"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:31:59 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-copy-completion-time: ['Tue, 28 Mar 2017 22:43:06 GMT']
|
||||
x-ms-copy-id: [5ff96fed-673c-4964-96e1-b701515da212]
|
||||
x-ms-copy-completion-time: ['Mon, 03 Apr 2017 17:31:59 GMT']
|
||||
x-ms-copy-id: [6827491a-1628-42fa-adcd-00cf4a2ebe7c]
|
||||
x-ms-copy-progress: [78/78]
|
||||
x-ms-copy-source: ['https://vcrstorage039781699738.blob.core.windows.net/cont1/blob1']
|
||||
x-ms-copy-source: ['https://vcrstorage789870349033.blob.core.windows.net/cont1/blob1']
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
|
@ -182,21 +182,21 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage039781699738.blob.core.windows.net/cont1/blob2']
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage789870349033.blob.core.windows.net/cont1/blob2']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:32:00 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.blob.core.windows.net/cont2/blob2
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
ETag: ['"0x8D4762BCEB49EB8"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:32:00 GMT']
|
||||
ETag: ['"0x8D47AB75646632C"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:32:01 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-copy-id: [3439c62f-5ea3-403e-98cb-0d73f8652d24]
|
||||
x-ms-copy-id: [83fc4766-f6c8-4185-8bc6-fddd37d5d662]
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 202, message: Accepted}
|
||||
|
@ -205,8 +205,8 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:10 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:32:01 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://dummystorage.blob.core.windows.net/cont2/blob2
|
||||
|
@ -217,15 +217,15 @@ interactions:
|
|||
Content-Length: ['78']
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:09 GMT']
|
||||
ETag: ['"0x8D4762BCEB49EB8"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:32:01 GMT']
|
||||
ETag: ['"0x8D47AB75646632C"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:32:01 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-copy-completion-time: ['Tue, 28 Mar 2017 22:43:09 GMT']
|
||||
x-ms-copy-id: [3439c62f-5ea3-403e-98cb-0d73f8652d24]
|
||||
x-ms-copy-completion-time: ['Mon, 03 Apr 2017 17:32:01 GMT']
|
||||
x-ms-copy-id: [83fc4766-f6c8-4185-8bc6-fddd37d5d662]
|
||||
x-ms-copy-progress: [78/78]
|
||||
x-ms-copy-source: ['https://vcrstorage039781699738.blob.core.windows.net/cont1/blob2']
|
||||
x-ms-copy-source: ['https://vcrstorage789870349033.blob.core.windows.net/cont1/blob2']
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1,841 +0,0 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [group create]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['50']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: PUT
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2016-09-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Fri, 24 Mar 2017 20:57:01 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "location": "westus", "kind": "Storage"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['74']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: PUT
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:57:03 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/caf394a9-be04-4c4f-bd24-2b43d021092f?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/caf394a9-be04-4c4f-bd24-2b43d021092f?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-24T20:57:03.7018284Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 20:57:21 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account keys list]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"3ErJzK2A1Z8AajiKeEIiKnj6c+QP+RSSTrg76+9ct5K/dbk3RTvxpJKw/19iIXCxueF3IWeH3kT14YE9UNlHCA=="},{"keyName":"key2","permissions":"Full","value":"0SDuy7Lf9gJv06OUebIvxQ84sioVj5vMyCDVD+qaG+NZw0k+xH1H25vG3pxJkoe0fBQEEZ3iNOBhYwPPdSFSHw=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 20:57:23 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:24 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:57:25 GMT']
|
||||
etag: ['"0x8D472F86028AE74"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:57:25 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:25 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:57:25 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 404, message: The specified blob does not exist.}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:25 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:29 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:27 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFF4T1RRek1EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:30 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:28 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRGd6T0RnMk1EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:30 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:28 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVEkxT0RJNU1USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:31 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:29 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVFkzTnpjeU1UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:31 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:29 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNakE1TnpFMU1qQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:29 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNalV4TmpVNE1qUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:30 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNamt6TmpBeE1qZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:30 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNek0xTlRRME16SSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:30 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNemMzTkRnM016WSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:30 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOREU1TkRNd05EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:30 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdORFl4TXpjek5EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:31 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVEF6TXpFMk5EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:31 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVFExTWpVNU5USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:31 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVGczTWpBeU5UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:31 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOakk1TVRRMU5qQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:34 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:31 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOamN4TURnNE5qUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:34 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOekV6TURNeE5qZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:34 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOelUwT1RjME56SSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:34 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOemsyT1RFM056WSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:34 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRE00T0RZd09EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:32 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRGd3T0RBek9EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVEl5TnpRMk9EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVFkwTmpnNU9USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXhNREEyTmpNeU9UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<BlockList><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFF4T1RRek1EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRGd6T0RnMk1EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVEkxT0RJNU1USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVFkzTnpjeU1UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNakE1TnpFMU1qQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNalV4TmpVNE1qUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNamt6TmpBeE1qZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNek0xTlRRME16SSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNemMzTkRnM016WSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOREU1TkRNd05EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdORFl4TXpjek5EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVEF6TXpFMk5EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVFExTWpVNU5USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVGczTWpBeU5UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOakk1TVRRMU5qQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOamN4TURnNE5qUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOekV6TURNeE5qZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOelUwT1RjME56SSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOemsyT1RFM056WSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRE00T0RZd09EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRGd3T0RBek9EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVEl5TnpRMk9EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVFkwTmpnNU9USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXhNREEyTmpNeU9UWSUzRA==</Latest></BlockList>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['2087']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:33 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=blocklist
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [cy2oO4/bQM3zCAUiEJ9k6Q==]
|
||||
date: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
etag: ['"0x8D472F866191D98"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:34 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['104857600']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:57:36 GMT']
|
||||
etag: ['"0x8D472F866191D98"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['104857600']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:57:37 GMT']
|
||||
etag: ['"0x8D472F866191D98"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:37 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['104857600']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:57:38 GMT']
|
||||
etag: ['"0x8D472F866191D98"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:57:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-content-type: [application/test-content]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:37 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:57:37 GMT']
|
||||
etag: ['"0x8D472F8683B2BD8"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:57:39 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:38 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['104857600']
|
||||
content-type: [application/test-content]
|
||||
date: ['Fri, 24 Mar 2017 20:57:39 GMT']
|
||||
etag: ['"0x8D472F8683B2BD8"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:57:39 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:57:38 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Fri, 24 Mar 2017 20:57:40 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [group delete]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: DELETE
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2016-09-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:57:41 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkczMzJBNjBFNzk4REU3NDY2QkQ1RTk1Njc0OUQzMTg3NjUzMXw1M0VGNjAyNkQ4NjgyRDhGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
|
@ -1,861 +0,0 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [group create]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['50']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: PUT
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2016-09-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Fri, 24 Mar 2017 20:57:43 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "location": "westus", "kind": "Storage"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['74']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: PUT
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:57:44 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/829bc79c-0c5a-4e14-8fa1-49e47c922a2e?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/829bc79c-0c5a-4e14-8fa1-49e47c922a2e?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-24T20:57:45.0906783Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 20:58:02 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account keys list]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"Cd/L5q0XeI9U+ULxNrn1P4dDsxJvlqQ1un/XMKsaAfkdsjWHZiOhF4rAuV/96X9WCEd3aXkIsi6zCX0hB5cCKA=="},{"keyName":"key2","permissions":"Full","value":"UWH7Yj+NZP0ToMiCF2c93qOJU9qHghm3OYX3N1ZBYSPgS33KuBVaHUsuMoKpCl2H+/Pp1sZgwrGQU9YCQsqziw=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 20:58:04 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1197']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:04 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:58:04 GMT']
|
||||
etag: ['"0x8D472F8778CD2F6"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:58:04 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:04 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:58:05 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 404, message: The specified blob does not exist.}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:05 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:06 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:06 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFF4T1RRek1EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:07 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:06 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRGd6T0RnMk1EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:07 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:07 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVEkxT0RJNU1USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:07 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:07 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVFkzTnpjeU1UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:07 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:07 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNakE1TnpFMU1qQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:08 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:07 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNalV4TmpVNE1qUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:09 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:08 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNamt6TmpBeE1qZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:09 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:09 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNek0xTlRRME16SSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:10 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:09 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNemMzTkRnM016WSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:10 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:10 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOREU1TkRNd05EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:11 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:11 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdORFl4TXpjek5EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:11 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:11 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVEF6TXpFMk5EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:12 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:11 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVFExTWpVNU5USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:12 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:11 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVGczTWpBeU5UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:12 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:12 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOakk1TVRRMU5qQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:12 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:12 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOamN4TURnNE5qUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:13 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:12 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOekV6TURNeE5qZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:13 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:12 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOelUwT1RjME56SSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:13 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:13 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOemsyT1RFM056WSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:13 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:13 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRE00T0RZd09EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:14 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:13 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRGd3T0RBek9EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:14 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:13 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVEl5TnpRMk9EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:14 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:14 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVFkwTmpnNU9USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:14 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:14 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXhNREEyTmpNeU9UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:15 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
1048576 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['1048576']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:14 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXhNRFE0TlRjMk1EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [ttgbNgpWctgMJ0MPORU+LA==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:15 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<BlockList><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFF4T1RRek1EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRGd6T0RnMk1EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVEkxT0RJNU1USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVFkzTnpjeU1UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNakE1TnpFMU1qQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNalV4TmpVNE1qUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNamt6TmpBeE1qZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNek0xTlRRME16SSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNemMzTkRnM016WSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOREU1TkRNd05EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdORFl4TXpjek5EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVEF6TXpFMk5EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVFExTWpVNU5USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVGczTWpBeU5UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOakk1TVRRMU5qQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOamN4TURnNE5qUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOekV6TURNeE5qZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOelUwT1RjME56SSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOemsyT1RFM056WSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRE00T0RZd09EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRGd3T0RBek9EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVEl5TnpRMk9EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVFkwTmpnNU9USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXhNREEyTmpNeU9UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXhNRFE0TlRjMk1EQSUzRA==</Latest></BlockList>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['2168']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:14 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=blocklist
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [xZzQip4UpwcS5ugMwp/9fQ==]
|
||||
date: ['Fri, 24 Mar 2017 20:58:15 GMT']
|
||||
etag: ['"0x8D472F87EFA53C3"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:58:17 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:15 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['105906176']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:58:16 GMT']
|
||||
etag: ['"0x8D472F87EFA53C3"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:58:17 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:16 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['105906176']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:58:18 GMT']
|
||||
etag: ['"0x8D472F87EFA53C3"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:58:17 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:17 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['105906176']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:58:18 GMT']
|
||||
etag: ['"0x8D472F87EFA53C3"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:58:17 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-content-type: [application/test-content]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:18 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:58:18 GMT']
|
||||
etag: ['"0x8D472F881038A5B"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:58:20 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:18 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['105906176']
|
||||
content-type: [application/test-content]
|
||||
date: ['Fri, 24 Mar 2017 20:58:19 GMT']
|
||||
etag: ['"0x8D472F881038A5B"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:58:20 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:58:19 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Fri, 24 Mar 2017 20:58:20 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [group delete]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: DELETE
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2016-09-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:58:22 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdFRUZCQzU4MTcxMjA1NkU1MzUzMzE5QTc3MTJFQTJDMThCRnwwNjFEQzI3MjQ2NDNDREJDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
|
@ -1,6 +1,6 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
body: '{"tags": {"use": "az-test"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -8,7 +8,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['50']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Fri, 24 Mar 2017 20:58:23 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:51 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1174']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "location": "westus", "kind": "Storage"}'
|
||||
body: '{"kind": "Storage", "sku": {"name": "Standard_LRS"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -35,7 +35,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['74']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: PUT
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:58:25 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:40:51 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8d3a8a52-45bc-42ee-946e-b4da437c1397?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ca7d26cb-fbf2-453f-805b-704188ff164d?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1181']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -62,72 +62,20 @@ interactions:
|
|||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8d3a8a52-45bc-42ee-946e-b4da437c1397?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ca7d26cb-fbf2-453f-805b-704188ff164d?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:58:42 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8d3a8a52-45bc-42ee-946e-b4da437c1397?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8d3a8a52-45bc-42ee-946e-b4da437c1397?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:59:00 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8d3a8a52-45bc-42ee-946e-b4da437c1397?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8d3a8a52-45bc-42ee-946e-b4da437c1397?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-24T20:58:25.0646284Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-04-03T17:40:57.5758824Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 20:59:17 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:14 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -144,217 +92,222 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"KjNziY07sUjWpEVpHtJPp/jJ289uAdGryMReAi/YVz/Y1dGZhwTgrEmkya6+6spjl+w1nhPqVfPq7/hvcTJGTg=="},{"keyName":"key2","permissions":"Full","value":"+ThuBNLnuFKe1VRG6Ya0wPC4hlaKbNM511SBKPJ3YYt6ekQ65hNjXS7wybQoaFQFgtPe0CdyEsf4Smx3s76IIg=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"m3dZerg3xyfZ47A0AVbGt/JgppfSjs+1Pa3d+5aqATu2sGsJccDxCPrXBFAKUTkunkHgzDuGLmWB28Eqxau73w=="},{"keyName":"key2","permissions":"Full","value":"JjWkKAni3bG/ouZTTKpkgVxyeKP4KX1/RdnNwhajTtSlt5uZXueoEcOYQ4+8zNNMuc64DDk5/rrKEouFzrZJ5g=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 20:59:19 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:15 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1183']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:19 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:17 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:59:20 GMT']
|
||||
etag: ['"0x8D472F8A4F26693"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:59:21 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:17 GMT']
|
||||
etag: ['"0x8D47AB8A2109049"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:41:17 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:20 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:18 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:59:21 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:17 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 404, message: The specified blob does not exist.}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
66060288 is larger than 128KB. !!!'
|
||||
134217728 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['66060288']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
Content-Length: ['134217728']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:21 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [dkrgMYu9uDW0+pObcLq9TA==]
|
||||
date: ['Fri, 24 Mar 2017 20:59:24 GMT']
|
||||
etag: ['"0x8D472F8A7CBD042"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:59:25 GMT']
|
||||
content-md5: [/enggYKBg25PwO3+3iuHYg==]
|
||||
date: ['Mon, 03 Apr 2017 17:41:27 GMT']
|
||||
etag: ['"0x8D47AB8A7C2A1D0"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:41:27 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-request-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:24 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:28 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['66060288']
|
||||
content-md5: [dkrgMYu9uDW0+pObcLq9TA==]
|
||||
content-length: ['134217728']
|
||||
content-md5: [/enggYKBg25PwO3+3iuHYg==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:59:26 GMT']
|
||||
etag: ['"0x8D472F8A7CBD042"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:59:25 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:27 GMT']
|
||||
etag: ['"0x8D47AB8A7C2A1D0"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:41:27 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:25 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:29 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['66060288']
|
||||
content-md5: [dkrgMYu9uDW0+pObcLq9TA==]
|
||||
content-length: ['134217728']
|
||||
content-md5: [/enggYKBg25PwO3+3iuHYg==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:59:26 GMT']
|
||||
etag: ['"0x8D472F8A7CBD042"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:59:25 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:28 GMT']
|
||||
etag: ['"0x8D47AB8A7C2A1D0"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:41:27 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:27 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:30 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['66060288']
|
||||
content-md5: [dkrgMYu9uDW0+pObcLq9TA==]
|
||||
content-length: ['134217728']
|
||||
content-md5: [/enggYKBg25PwO3+3iuHYg==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 20:59:28 GMT']
|
||||
etag: ['"0x8D472F8A7CBD042"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:59:25 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:30 GMT']
|
||||
etag: ['"0x8D47AB8A7C2A1D0"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:41:27 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-content-md5: [dkrgMYu9uDW0+pObcLq9TA==]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-content-md5: [/enggYKBg25PwO3+3iuHYg==]
|
||||
x-ms-blob-content-type: [application/test-content]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:27 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:31 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:59:29 GMT']
|
||||
etag: ['"0x8D472F8AA31AB00"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:59:29 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:30 GMT']
|
||||
etag: ['"0x8D47AB8A9FBB6DF"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:41:31 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:29 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:32 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['66060288']
|
||||
content-md5: [dkrgMYu9uDW0+pObcLq9TA==]
|
||||
content-length: ['134217728']
|
||||
content-md5: [/enggYKBg25PwO3+3iuHYg==]
|
||||
content-type: [application/test-content]
|
||||
date: ['Fri, 24 Mar 2017 20:59:30 GMT']
|
||||
etag: ['"0x8D472F8AA31AB00"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:59:29 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:31 GMT']
|
||||
etag: ['"0x8D47AB8A9FBB6DF"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:41:31 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:30 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:32 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
|
@ -362,10 +315,10 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Fri, 24 Mar 2017 20:59:31 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:31 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -376,7 +329,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
|
@ -387,12 +340,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:59:32 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:34 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkcxNEMxMEU5OTIwOTk4MzVERjM0OUYwNDZEQjdBNDk3Q0RGQ3xGMzM4ODdCMkVFOTUxNjdELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdENDY0QkMxM0ZCOTg5N0IwNDQzNEJDMzdERUQxQTdBOEQwQ3xCODQxQTU4QjZFMzE4REQ4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1187']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
|
@ -1,6 +1,6 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
body: '{"tags": {"use": "az-test"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -8,7 +8,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['50']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Fri, 24 Mar 2017 20:59:35 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:31 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1177']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "location": "westus", "kind": "Storage"}'
|
||||
body: '{"kind": "Storage", "sku": {"name": "Standard_LRS"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -35,7 +35,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['74']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: PUT
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 20:59:36 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:34 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/023df341-ac10-4535-9407-638ac936316e?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/68c7022a-efdf-4558-bad0-42514f3cfa5f?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1180']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -62,20 +62,20 @@ interactions:
|
|||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/023df341-ac10-4535-9407-638ac936316e?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/68c7022a-efdf-4558-bad0-42514f3cfa5f?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-24T20:59:36.7029502Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-04-03T17:41:37.7510504Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 20:59:54 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:50 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -92,415 +92,96 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"V2izUNmDvp4JyP5JW4Xpt6UXHyatQO9MFobbl8CkSVAPuZpyVy6rYRxztbztWgOOXU+rmiJFOc5xo8ai51ImSg=="},{"keyName":"key2","permissions":"Full","value":"vkRLy7VoPzppR7U9QUoahz9zDt3QGF47hqjVlcaaLOUTWYAmcebQsEGt+JLnXdVskS1sT34Czvd2n0lDIqvRBg=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"/DPuM9L58jTh9oaEJkDOfP9xhAKz9KWynLKf2TSC/9cOGFaYZOcPj/03dvjbH0YK7jiVUvbtZP9Fzd5ml6i0ag=="},{"keyName":"key2","permissions":"Full","value":"xcxlYdVA/uJi0kTs+HzUb1GOd/plU92VjVTqfzrNbdwp8rEEXEZfniRofvezbvClxYnbuTihjZOlQ6c4FOhKjw=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 20:59:57 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:56 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1182']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:57 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:58 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:59:58 GMT']
|
||||
etag: ['"0x8D472F8BB73941A"']
|
||||
last-modified: ['Fri, 24 Mar 2017 20:59:58 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:58 GMT']
|
||||
etag: ['"0x8D47AB8BA498234"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:41:58 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:58 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:41:59 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 20:59:59 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:41:58 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 404, message: The specified blob does not exist.}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
67108864 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 20:59:59 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
Content-Length: ['67108864']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:00 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA%3D%3D&comp=block
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:00 GMT']
|
||||
content-md5: [f2FNqTKc066/WbkarcML8A==]
|
||||
date: ['Mon, 03 Apr 2017 17:42:05 GMT']
|
||||
etag: ['"0x8D47AB8BF28C695"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:06 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:00 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFF4T1RRek1EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:01 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:00 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRGd6T0RnMk1EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:01 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:01 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVEkxT0RJNU1USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:01 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:01 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVFkzTnpjeU1UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:01 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNakE1TnpFMU1qQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:01 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNalV4TmpVNE1qUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNamt6TmpBeE1qZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNek0xTlRRME16SSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:03 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNemMzTkRnM016WSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:03 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOREU1TkRNd05EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:03 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:02 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdORFl4TXpjek5EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:03 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:03 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVEF6TXpFMk5EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:03 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVFExTWpVNU5USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:03 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVGczTWpBeU5UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:03 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOakk1TVRRMU5qQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<BlockList><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFF4T1RRek1EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRGd6T0RnMk1EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVEkxT0RJNU1USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVFkzTnpjeU1UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNakE1TnpFMU1qQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNalV4TmpVNE1qUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNamt6TmpBeE1qZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNek0xTlRRME16SSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNemMzTkRnM016WSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOREU1TkRNd05EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdORFl4TXpjek5EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVEF6TXpFMk5EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVFExTWpVNU5USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVGczTWpBeU5UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOakk1TVRRMU5qQSUzRA==</Latest></BlockList>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['1358']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=blocklist
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [3n1Wn5onWkQf7ogldWIKXA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
etag: ['"0x8D472F8BF1E0399"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-request-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:07 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
|
@ -508,23 +189,25 @@ interactions:
|
|||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['67108864']
|
||||
content-md5: [f2FNqTKc066/WbkarcML8A==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 21:00:05 GMT']
|
||||
etag: ['"0x8D472F8BF1E0399"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:06 GMT']
|
||||
etag: ['"0x8D47AB8BF28C695"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:06 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:05 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:08 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
|
@ -532,23 +215,25 @@ interactions:
|
|||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['67108864']
|
||||
content-md5: [f2FNqTKc066/WbkarcML8A==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 21:00:05 GMT']
|
||||
etag: ['"0x8D472F8BF1E0399"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:08 GMT']
|
||||
etag: ['"0x8D47AB8BF28C695"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:06 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:07 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:10 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
|
@ -556,44 +241,47 @@ interactions:
|
|||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['67108864']
|
||||
content-md5: [f2FNqTKc066/WbkarcML8A==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 21:00:07 GMT']
|
||||
etag: ['"0x8D472F8BF1E0399"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:04 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:09 GMT']
|
||||
etag: ['"0x8D47AB8BF28C695"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:06 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-content-md5: [f2FNqTKc066/WbkarcML8A==]
|
||||
x-ms-blob-content-type: [application/test-content]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:07 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:10 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 21:00:07 GMT']
|
||||
etag: ['"0x8D472F8C12B2330"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:08 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:09 GMT']
|
||||
etag: ['"0x8D47AB8C152E851"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:10 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:08 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:11 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
|
@ -601,23 +289,25 @@ interactions:
|
|||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['67108864']
|
||||
content-md5: [f2FNqTKc066/WbkarcML8A==]
|
||||
content-type: [application/test-content]
|
||||
date: ['Fri, 24 Mar 2017 21:00:09 GMT']
|
||||
etag: ['"0x8D472F8C12B2330"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:08 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:11 GMT']
|
||||
etag: ['"0x8D47AB8C152E851"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:10 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-server-encrypted: ['false']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:09 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:12 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
|
@ -625,10 +315,10 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Fri, 24 Mar 2017 21:00:10 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:11 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -639,7 +329,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
|
@ -650,12 +340,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 21:00:11 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:13 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdEMTY2NkMxOUVEQkNDM0I4RDJGMkM2OUFBMThDNTIxOUI2RHwzMjhBNTAyNDNERjhDRjA4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc4MDMzQjQ3NUNDMjU0NEI2NjRGOTM0MEQxRTIxMTIzNUY3N3xFMEM5OEE3QzY1REUzMDQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1181']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
|
@ -1,841 +0,0 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [group create]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['50']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: PUT
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2016-09-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"use":"az-test"},"properties":{"provisioningState":"Succeeded"}}'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Fri, 24 Mar 2017 21:00:12 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "location": "westus", "kind": "Storage"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['74']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: PUT
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 21:00:14 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/2a9917db-918b-4fcd-b0f0-ee3458faa14b?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account create]
|
||||
Connection: [keep-alive]
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/2a9917db-918b-4fcd-b0f0-ee3458faa14b?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-24T21:00:14.2374432Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 21:00:31 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [storage account keys list]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"tdszo3jvjdFfUMBi0ogCEmwthoesDiVQue7FKN+FkJ8cPiMunzBYbG4Yf+Gsidkmtc9uL5rj4TlJB+kL1SePjg=="},{"keyName":"key2","permissions":"Full","value":"OW2BWhNonRj7oZMcBkB3+beNntJcPYqCkWo3WvuXAnLxAt1DCT8liu0sf+zftSSsicIPDVSIliNJs928l6fxdA=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Fri, 24 Mar 2017 21:00:34 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1197']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:34 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 21:00:34 GMT']
|
||||
etag: ['"0x8D472F8D1474041"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:35 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 21:00:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 404, message: The specified blob does not exist.}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:36 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:38 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:37 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFF4T1RRek1EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:39 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:39 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRGd6T0RnMk1EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:40 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:40 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVEkxT0RJNU1USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:41 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:40 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVFkzTnpjeU1UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:41 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:41 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNakE1TnpFMU1qQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:41 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:41 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNalV4TmpVNE1qUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:42 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:41 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNamt6TmpBeE1qZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:42 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:42 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNek0xTlRRME16SSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:42 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:42 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNemMzTkRnM016WSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:43 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:42 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOREU1TkRNd05EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:43 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:42 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdORFl4TXpjek5EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:43 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:43 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVEF6TXpFMk5EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:43 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVFExTWpVNU5USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:43 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVGczTWpBeU5UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:44 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOakk1TVRRMU5qQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:44 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOamN4TURnNE5qUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:45 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:44 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOekV6TURNeE5qZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:45 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:45 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOelUwT1RjME56SSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:45 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:45 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOemsyT1RFM056WSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:46 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:45 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRE00T0RZd09EQSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:46 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:45 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRGd3T0RBek9EUSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:46 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:46 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVEl5TnpRMk9EZyUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:47 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
4194304 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:46 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVFkwTmpnNU9USSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:47 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '!!! The request body has been omitted from the recording because its size
|
||||
3145728 is larger than 128KB. !!!'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['3145728']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:47 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?blockid=TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXhNREEyTmpNeU9UWSUzRA%3D%3D&comp=block
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [0d0hDWsTEss0K1bQK9XmUQ==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:47 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<BlockList><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRFF4T1RRek1EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNRGd6T0RnMk1EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVEkxT0RJNU1USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNVFkzTnpjeU1UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNakE1TnpFMU1qQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNalV4TmpVNE1qUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNamt6TmpBeE1qZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNek0xTlRRME16SSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdNemMzTkRnM016WSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOREU1TkRNd05EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdORFl4TXpjek5EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVEF6TXpFMk5EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVFExTWpVNU5USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOVGczTWpBeU5UWSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOakk1TVRRMU5qQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOamN4TURnNE5qUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOekV6TURNeE5qZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOelUwT1RjME56SSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdOemsyT1RFM056WSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRE00T0RZd09EQSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPRGd3T0RBek9EUSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVEl5TnpRMk9EZyUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXdPVFkwTmpnNU9USSUzRA==</Latest><Latest>TURBd01EQXdNREF3TURBd01EQXdNREF3TURBd01EQXhNREEyTmpNeU9UWSUzRA==</Latest></BlockList>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['2087']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:47 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=blocklist
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [cy2oO4/bQM3zCAUiEJ9k6Q==]
|
||||
date: ['Fri, 24 Mar 2017 21:00:47 GMT']
|
||||
etag: ['"0x8D472F8D9BE426D"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:49 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:48 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['103809024']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 21:00:49 GMT']
|
||||
etag: ['"0x8D472F8D9BE426D"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:49 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:49 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['103809024']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 21:00:49 GMT']
|
||||
etag: ['"0x8D472F8D9BE426D"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:49 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:50 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['103809024']
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Fri, 24 Mar 2017 21:00:51 GMT']
|
||||
etag: ['"0x8D472F8D9BE426D"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:49 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-content-type: [application/test-content]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:51 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Fri, 24 Mar 2017 21:00:52 GMT']
|
||||
etag: ['"0x8D472F8DC548D3A"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:54 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:52 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
accept-ranges: [bytes]
|
||||
content-length: ['103809024']
|
||||
content-type: [application/test-content]
|
||||
date: ['Fri, 24 Mar 2017 21:00:54 GMT']
|
||||
etag: ['"0x8D472F8DC548D3A"']
|
||||
last-modified: ['Fri, 24 Mar 2017 21:00:54 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.33.0 (Python CPython 3.5.3; Darwin 16.4.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Fri, 24 Mar 2017 21:00:53 GMT']
|
||||
x-ms-version: ['2015-07-08']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Fri, 24 Mar 2017 21:00:54 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2015-07-08']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
CommandName: [group delete]
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
User-Agent: [python/3.5.3 (Darwin-16.4.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 resourcemanagementclient/0.30.2 Azure-SDK-For-Python
|
||||
AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: DELETE
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2016-09-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Fri, 24 Mar 2017 21:00:56 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkcxQzA4MzRERDM5ODc4RDNCMUQzQTRBQ0ZENUIxRTRDNUU4OXwzMUUwNjFEODFEMzc0MUFDLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Tue, 28 Mar 2017 22:44:36 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:12 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1196']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1185']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}'
|
||||
body: '{"kind": "Storage", "sku": {"name": "Standard_LRS"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:44:39 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:13 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e3c3d924-6cc7-4584-ad36-20983ed9a834?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7389508e-3b83-4efc-bc83-c6e052839604?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1190']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1176']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -66,16 +66,16 @@ interactions:
|
|||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e3c3d924-6cc7-4584-ad36-20983ed9a834?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7389508e-3b83-4efc-bc83-c6e052839604?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-28T22:44:39.7860781Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-04-03T17:42:16.7731830Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:44:57 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:31 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -98,21 +98,21 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"ONGL9U+QS0oYymAUsvEJwFK0Z84OrJVrvD2UVpU0iraZJCJvI/OK8hJH/5Gew3EH7/x6shvDDLfd/bE62H58PA=="},{"keyName":"key2","permissions":"Full","value":"OmRAgY+6xwSRwZaqLJrVT6sC+v+hpX84PCkXRJP01xPKSxuIm+a4m6TC0kht0LM/iyJMXHFG7szZF+SqgUII/w=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"nkZ7RY7Pt35v/H7qDrEfsdsJy3N5jg+Sxmg+SUJ0v3UCC2CxojfR5t3soycPXLOxbwjM2VGU+03sk/kN6UKyWA=="},{"keyName":"key2","permissions":"Full","value":"D4YohTOfBHPJeiakwyJJ5S3APHfox2QHC79Kq5xhoLIt2mH31R3GH3zO3VS+bQRZG3E69iddfyf1EKdEnzFlDw=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:44:59 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:35 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1195']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1175']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -120,16 +120,16 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:00 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:37 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:44:59 GMT']
|
||||
etag: ['"0x8D4762C1115DB57"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:00 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:37 GMT']
|
||||
etag: ['"0x8D47AB8D1B66647"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:37 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -139,14 +139,14 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:01 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:38 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:01 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:38 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -159,7 +159,7 @@ interactions:
|
|||
Content-Length: ['4194304']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:02 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:39 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -167,9 +167,9 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
date: ['Tue, 28 Mar 2017 22:45:03 GMT']
|
||||
etag: ['"0x8D4762C12F2B640"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:03 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:38 GMT']
|
||||
etag: ['"0x8D47AB8D33F8929"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:40 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-request-server-encrypted: ['false']
|
||||
|
@ -180,7 +180,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:04 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:40 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -191,9 +191,9 @@ interactions:
|
|||
content-length: ['4194304']
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Tue, 28 Mar 2017 22:45:03 GMT']
|
||||
etag: ['"0x8D4762C12F2B640"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:03 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:40 GMT']
|
||||
etag: ['"0x8D47AB8D33F8929"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:40 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -206,7 +206,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:05 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:41 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -217,9 +217,9 @@ interactions:
|
|||
content-length: ['4194304']
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Tue, 28 Mar 2017 22:45:04 GMT']
|
||||
etag: ['"0x8D4762C12F2B640"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:03 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:41 GMT']
|
||||
etag: ['"0x8D47AB8D33F8929"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:40 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -232,7 +232,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:07 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:43 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -243,9 +243,9 @@ interactions:
|
|||
content-length: ['4194304']
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Tue, 28 Mar 2017 22:45:07 GMT']
|
||||
etag: ['"0x8D4762C12F2B640"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:03 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:43 GMT']
|
||||
etag: ['"0x8D47AB8D33F8929"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:40 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -261,16 +261,16 @@ interactions:
|
|||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
x-ms-blob-content-type: [application/test-content]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:07 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:43 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:07 GMT']
|
||||
etag: ['"0x8D4762C15B1956D"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:08 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:43 GMT']
|
||||
etag: ['"0x8D47AB8D58BDDBB"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -280,7 +280,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:08 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:44 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -291,9 +291,9 @@ interactions:
|
|||
content-length: ['4194304']
|
||||
content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
content-type: [application/test-content]
|
||||
date: ['Tue, 28 Mar 2017 22:45:07 GMT']
|
||||
etag: ['"0x8D4762C15B1956D"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:08 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:43 GMT']
|
||||
etag: ['"0x8D47AB8D58BDDBB"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -306,16 +306,16 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:09 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:45 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:09 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -325,7 +325,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:10 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:42:46 GMT']
|
||||
x-ms-range: [bytes=0-33554431]
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
|
@ -339,9 +339,9 @@ interactions:
|
|||
content-length: ['4194304']
|
||||
content-range: [bytes 0-4194303/4194304]
|
||||
content-type: [application/test-content]
|
||||
date: ['Tue, 28 Mar 2017 22:45:09 GMT']
|
||||
etag: ['"0x8D4762C15B1956D"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:08 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:46 GMT']
|
||||
etag: ['"0x8D47AB8D58BDDBB"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:42:44 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-content-md5: [tc+p1sj+vWGPkawoQ9UKHA==]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
|
@ -370,12 +370,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:45:11 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:43 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc3M0M5NjZFMTFDNjNDMTY4NjkxMEE2MTc2MUM3QkUyRUJEM3w2OEI2RTU4Q0FEM0VCQ0I5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdERjRDMTk4QjVFMjM4NTI1NUVBNzdFRTY0ODk5N0Q3QTdCMHxDMUY0NkM3QUUyNjUxODMyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1196']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1182']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
body: '{"tags": {"use": "az-test"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Tue, 28 Mar 2017 22:45:13 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:47 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1198']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1179']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}'
|
||||
body: '{"kind": "Storage", "sku": {"name": "Standard_LRS"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:45:14 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:42:48 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/39c76415-113c-48b8-bb3a-62610058ec13?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/81b23601-82ba-4425-a891-801cb6d95e68?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1191']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1184']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -66,16 +66,16 @@ interactions:
|
|||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/39c76415-113c-48b8-bb3a-62610058ec13?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/81b23601-82ba-4425-a891-801cb6d95e68?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-28T22:45:14.7886479Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-04-03T17:42:51.6528861Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:32 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:04 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -98,21 +98,21 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"v80qelMCc0bh4lWsoxb26dDg1jjz/ZBh9FOfe4PQ2fsksFABvLAj12Txd+JDEybpzzKkyessschCXmDKw5uAUw=="},{"keyName":"key2","permissions":"Full","value":"YIivMVpfcQd669tIh43DSZMw/7S5mVx8hCeggQ1XYHnVLd7LXQRvdhWMxOc+kpETxi4K8ATv8Kd+XOLMbYW96A=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"zUfE5p8XMn+8v26k+GndD0zfhRMc7RvXvPLw8a/GlSxSFP1owwEzreLI973eGw03YZpnZi86+gpybctoaiuwzg=="},{"keyName":"key2","permissions":"Full","value":"vNnfeA0Lcf7/NdlBFPzsTNgDNFCH6DKGtDhU2dl8FjEZvjUIERL1P4dOU6BVFgN+OBfYHGe8GhC+1JZHd5V5Dg=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:33 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:08 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1197']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1179']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -120,16 +120,16 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:34 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:12 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:34 GMT']
|
||||
etag: ['"0x8D4762C25AA7BA4"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:34 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:11 GMT']
|
||||
etag: ['"0x8D47AB8E64A8BB6"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:43:12 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -139,14 +139,14 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:35 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:13 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:35 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:12 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -158,7 +158,7 @@ interactions:
|
|||
Content-Length: ['1024']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:36 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:14 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -166,9 +166,9 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==]
|
||||
date: ['Tue, 28 Mar 2017 22:45:36 GMT']
|
||||
etag: ['"0x8D4762C26DD0641"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:36 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:13 GMT']
|
||||
etag: ['"0x8D47AB8E7724A08"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:43:14 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-request-server-encrypted: ['false']
|
||||
|
@ -179,7 +179,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:37 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:15 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -190,9 +190,9 @@ interactions:
|
|||
content-length: ['1024']
|
||||
content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Tue, 28 Mar 2017 22:45:37 GMT']
|
||||
etag: ['"0x8D4762C26DD0641"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:36 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:14 GMT']
|
||||
etag: ['"0x8D47AB8E7724A08"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:43:14 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -205,7 +205,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:38 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:16 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -216,9 +216,9 @@ interactions:
|
|||
content-length: ['1024']
|
||||
content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Tue, 28 Mar 2017 22:45:38 GMT']
|
||||
etag: ['"0x8D4762C26DD0641"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:36 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:16 GMT']
|
||||
etag: ['"0x8D47AB8E7724A08"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:43:14 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -231,7 +231,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:39 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:18 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -242,9 +242,9 @@ interactions:
|
|||
content-length: ['1024']
|
||||
content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==]
|
||||
content-type: [application/octet-stream]
|
||||
date: ['Tue, 28 Mar 2017 22:45:40 GMT']
|
||||
etag: ['"0x8D4762C26DD0641"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:36 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:17 GMT']
|
||||
etag: ['"0x8D47AB8E7724A08"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:43:14 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -260,16 +260,16 @@ interactions:
|
|||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-blob-content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==]
|
||||
x-ms-blob-content-type: [application/test-content]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:40 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:18 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004?comp=properties
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:40 GMT']
|
||||
etag: ['"0x8D4762C28F22FB1"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:40 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:17 GMT']
|
||||
etag: ['"0x8D47AB8E9D0A0C2"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:43:18 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -279,7 +279,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:40 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://clitest000002.blob.core.windows.net/cont000003/blob000004
|
||||
|
@ -290,9 +290,9 @@ interactions:
|
|||
content-length: ['1024']
|
||||
content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==]
|
||||
content-type: [application/test-content]
|
||||
date: ['Tue, 28 Mar 2017 22:45:40 GMT']
|
||||
etag: ['"0x8D4762C28F22FB1"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:40 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:18 GMT']
|
||||
etag: ['"0x8D47AB8E9D0A0C2"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:43:18 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -305,16 +305,16 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:41 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:20 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
uri: https://clitest000002.blob.core.windows.net/?restype=service&comp=properties
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><StorageServiceProperties><Logging><Version>1.0</Version><Read>false</Read><Write>false</Write><Delete>false</Delete><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></Logging><HourMetrics><Version>1.0</Version><Enabled>true</Enabled><IncludeAPIs>true</IncludeAPIs><RetentionPolicy><Enabled>true</Enabled><Days>7</Days></RetentionPolicy></HourMetrics><MinuteMetrics><Version>1.0</Version><Enabled>false</Enabled><RetentionPolicy><Enabled>false</Enabled></RetentionPolicy></MinuteMetrics><Cors
|
||||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:41 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:19 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -324,7 +324,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:42 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:43:21 GMT']
|
||||
x-ms-range: [bytes=0-33554431]
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
|
@ -336,9 +336,9 @@ interactions:
|
|||
content-length: ['1024']
|
||||
content-range: [bytes 0-1023/1024]
|
||||
content-type: [application/test-content]
|
||||
date: ['Tue, 28 Mar 2017 22:45:42 GMT']
|
||||
etag: ['"0x8D4762C28F22FB1"']
|
||||
last-modified: ['Tue, 28 Mar 2017 22:45:40 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:21 GMT']
|
||||
etag: ['"0x8D47AB8E9D0A0C2"']
|
||||
last-modified: ['Mon, 03 Apr 2017 17:43:18 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-content-md5: [DzQ7CTESaiDxM9Z8KwGKOw==]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
|
@ -367,12 +367,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:45:44 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:43:19 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdFRENERDJERkNGMjMyMjA4RjcyQ0Q5MDA2RDUzQzFBMUQ0Q3xFMzY1M0FENTEwNkRFNzkyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdEODU0NTI5MTY0MzI2MkNFMzcyNUQ5N0UyRjQzRUVBNjcyNnxBRjBFRjEyOTA2NkI1OTVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1189']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1178']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"tags": {"use": "az-test"}, "location": "westus"}'
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Tue, 28 Mar 2017 22:44:54 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:04 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1189']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1186']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "westus"}'
|
||||
body: '{"location": "westus", "sku": {"name": "Standard_LRS"}, "kind": "Storage"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:44:56 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:06 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/3fefebbc-fbed-414a-86c4-eabe1945527f?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/b93d4fd1-a6c0-405c-b95b-7f0d5960a332?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1195']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1193']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -66,16 +66,16 @@ interactions:
|
|||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/3fefebbc-fbed-414a-86c4-eabe1945527f?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/b93d4fd1-a6c0-405c-b95b-7f0d5960a332?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-28T22:44:56.3866659Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-30T22:30:07.3074611Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:13 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:24 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -98,28 +98,28 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"IXvd0MLleDgNZ9jeoxVTYnGxKOlg2XPXOgGn6k5YgQuIyVcKVSJZ681mU+r4WPpwFUfowZhWm9BmfC/Y42xdDQ=="},{"keyName":"key2","permissions":"Full","value":"6spgaxgBNAOzg5AvFbBfpPiO1w6hE6Sjj50i7oLo4sZ8Am73q1euaIjIP0m316+Rw49/jtyou6GlK4wdPg/u5w=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"yPUx+eKlXcoX8NFEIQ225hZlHFlyT3/tSkGqoCu843Zml6CVEAse01Xe2CiwrRqWH82U54HamTm793DbwLx/Vw=="},{"keyName":"key2","permissions":"Full","value":"LRbHR6p4Hdv2epdVq6f1jG+SnjLX84kiH50jGQhzqhQZWOJRNItHs3tOnKsMfuTZEWULksSLZR58uq3+CG0nWg=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Tue, 28 Mar 2017 22:45:15 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:26 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1197']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1196']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:16 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:26 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -128,7 +128,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:16 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:27 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -138,7 +138,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:16 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:27 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.file.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -147,7 +147,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:16 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:28 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -157,7 +157,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:17 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:27 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -167,7 +167,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:16 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:27 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -179,7 +179,7 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:17 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:27 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.table.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -188,7 +188,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:16 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:28 GMT']
|
||||
server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -198,7 +198,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:18 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:28 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -207,7 +207,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:18 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:28 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -221,14 +221,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['287']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:18 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:28 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:18 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:28 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -238,7 +238,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:18 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:28 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.file.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -247,7 +247,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:17 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:29 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -261,14 +261,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['287']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:18 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:28 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.file.core.windows.net/?comp=properties&restype=service
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:20 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:30 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -278,7 +278,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:20 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:29 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -288,7 +288,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:19 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:29 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -302,14 +302,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['287']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:20 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:29 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:19 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:29 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -319,7 +319,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:21 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:30 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -328,7 +328,7 @@ interactions:
|
|||
/><ExposedHeaders /><MaxAgeInSeconds>60</MaxAgeInSeconds></CorsRule></Cors></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:21 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:30 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Origin]
|
||||
|
@ -339,7 +339,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:21 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:30 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.file.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -348,7 +348,7 @@ interactions:
|
|||
/><ExposedHeaders /><MaxAgeInSeconds>60</MaxAgeInSeconds></CorsRule></Cors></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:21 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:31 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Origin]
|
||||
|
@ -359,7 +359,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:21 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:30 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -369,7 +369,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:20 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:30 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Origin]
|
||||
|
@ -382,7 +382,7 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:21 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:30 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.table.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -391,7 +391,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:21 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:31 GMT']
|
||||
server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -404,14 +404,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['100']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:22 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:32 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:22 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:31 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -424,14 +424,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['100']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:22 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:32 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.file.core.windows.net/?comp=properties&restype=service
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:22 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:33 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -441,7 +441,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:33 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -450,7 +450,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:33 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -460,7 +460,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:33 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.file.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -469,7 +469,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:34 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -479,7 +479,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:33 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -489,7 +489,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:22 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:33 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Origin]
|
||||
|
@ -502,7 +502,7 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:33 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.table.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -511,7 +511,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:34 GMT']
|
||||
server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -524,14 +524,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['100']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:24 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:34 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:24 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:34 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -544,14 +544,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['100']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:24 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:34 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.file.core.windows.net/?comp=properties&restype=service
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:35 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -564,14 +564,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['100']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:24 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:34 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Tue, 28 Mar 2017 22:45:23 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:34 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -581,7 +581,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:25 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:35 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.blob.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -590,7 +590,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:25 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:35 GMT']
|
||||
server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -600,7 +600,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:25 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:35 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.file.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -609,7 +609,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:24 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:36 GMT']
|
||||
server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -619,7 +619,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:25 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:36 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -629,7 +629,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:24 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:35 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -641,7 +641,7 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:25 GMT']
|
||||
x-ms-date: ['Thu, 30 Mar 2017 22:30:36 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.table.core.windows.net/?comp=properties&restype=service
|
||||
|
@ -650,7 +650,7 @@ interactions:
|
|||
/></StorageServiceProperties>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Tue, 28 Mar 2017 22:45:25 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:36 GMT']
|
||||
server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -675,12 +675,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Tue, 28 Mar 2017 22:45:26 GMT']
|
||||
date: ['Thu, 30 Mar 2017 22:30:37 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdDM0NCMjQxQTc3OTMyREYwOTEwQ0VBOUFFRkMxMTQyRjE4Q3w2NERGMUFDMkMzQkI4NkFCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdDRTNEOTE3RTJGOTkxMjk0N0U5REQ4MjA0MDQ2OUQwQTEwNHw1MkY4QzE0RDIxMDExRDJELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1194']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1195']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
|
@ -10,17 +10,17 @@ interactions:
|
|||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
x-ms-client-request-id: [e4c18d24-1407-11e7-b92f-4c32759c53db]
|
||||
x-ms-client-request-id: [b9da8a12-1893-11e7-bada-4c32759c53db]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vcr_resource_group/providers/Microsoft.Storage/storageAccounts/dummystorage/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"73OyevMPr3HLiJoi/n7M08Kn6XHY+fI+MMoste+/+vXStM9NFutvOCV41vcHcyDsxeN6OnvWPtsZkzKTEH2g2w=="},{"keyName":"key2","permissions":"Full","value":"vOVXEW8E3oCi5FwZNx8E9W4+M5C7QafhDxvzyVCG/pvom7CRRnO189yzke9s0lPqJt0fNU8VfHwNS8TguhsR0g=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"KFMODIBg3gKRc8Z5lF6mkSOx+SXdMdg1mCLN8AKC2kWfSRSLKWcxQbJTcH5MyxTnXsl0LHNjmjoZq/1qhD2jyg=="},{"keyName":"key2","permissions":"Full","value":"WO8hXSTLmrz46DbtqI9otKNzMv9vK7TM9n7l+7PviOp9B6dYk18dyQ6bJ+ERkyZhZivprrK+ZHxqqdDaDTZsZQ=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json]
|
||||
Date: ['Tue, 28 Mar 2017 22:42:58 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:01 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -28,26 +28,26 @@ interactions:
|
|||
Transfer-Encoding: [chunked]
|
||||
Vary: [Accept-Encoding]
|
||||
content-length: ['289']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1195']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1181']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:00 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:03 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers
|
||||
/>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:00 GMT']
|
||||
ETag: ['"0x8D4762BC7CA9C1D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:42:57 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:02 GMT']
|
||||
ETag: ['"0x8D47AB79DD5798E"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:01 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -57,19 +57,19 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:04 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers
|
||||
/>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
ETag: ['"0x8D4762BC7CA9C1D"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:42:57 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:03 GMT']
|
||||
ETag: ['"0x8D47AB79DD5798E"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:01 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -82,17 +82,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['184']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:04 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
ETag: ['"0x8D4762BCAB5CE63"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:03 GMT']
|
||||
ETag: ['"0x8D47AB7A049432D"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:05 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -102,18 +102,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:05 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
ETag: ['"0x8D4762BCAB5CE63"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:02 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:06 GMT']
|
||||
ETag: ['"0x8D47AB7A049432D"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:05 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -126,17 +126,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['296']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:06 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
ETag: ['"0x8D4762BCBC64723"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:06 GMT']
|
||||
ETag: ['"0x8D47AB7A113E361"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:06 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -146,18 +146,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:06 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:07 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
ETag: ['"0x8D4762BCBC64723"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:04 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:07 GMT']
|
||||
ETag: ['"0x8D47AB7A113E361"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:06 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -165,22 +165,22 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['413']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:06 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:07 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
ETag: ['"0x8D4762BCCCC5D14"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:07 GMT']
|
||||
ETag: ['"0x8D47AB7A1C99847"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:07 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -190,18 +190,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:08 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
ETag: ['"0x8D4762BCCCC5D14"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:08 GMT']
|
||||
ETag: ['"0x8D47AB7A1C99847"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:07 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -209,22 +209,22 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00Z</Start><Expiry>2016-05-01T00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00Z</Start><Expiry>2016-05-01T00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['591']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:08 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
ETag: ['"0x8D4762BCDFDAC0F"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:08 GMT']
|
||||
ETag: ['"0x8D47AB7A29F36F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -234,18 +234,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:10 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:08 GMT']
|
||||
ETag: ['"0x8D4762BCDFDAC0F"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
ETag: ['"0x8D47AB7A29F36F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -255,18 +255,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:11 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:11 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:10 GMT']
|
||||
ETag: ['"0x8D4762BCDFDAC0F"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:10 GMT']
|
||||
ETag: ['"0x8D47AB7A29F36F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -276,18 +276,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:13 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:12 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:12 GMT']
|
||||
ETag: ['"0x8D4762BCDFDAC0F"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:11 GMT']
|
||||
ETag: ['"0x8D47AB7A29F36F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -297,18 +297,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:14 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:13 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:14 GMT']
|
||||
ETag: ['"0x8D4762BCDFDAC0F"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:13 GMT']
|
||||
ETag: ['"0x8D47AB7A29F36F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -318,18 +318,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:16 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:14 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:15 GMT']
|
||||
ETag: ['"0x8D4762BCDFDAC0F"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:14 GMT']
|
||||
ETag: ['"0x8D47AB7A29F36F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -339,18 +339,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:17 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:15 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>l</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:16 GMT']
|
||||
ETag: ['"0x8D4762BCDFDAC0F"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:07 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:15 GMT']
|
||||
ETag: ['"0x8D47AB7A29F36F7"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:09 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -358,22 +358,22 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['597']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:18 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:15 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:16 GMT']
|
||||
ETag: ['"0x8D4762BD3BC50CA"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:17 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:15 GMT']
|
||||
ETag: ['"0x8D47AB7A6D7AE95"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:16 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -383,18 +383,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:19 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:17 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:19 GMT']
|
||||
ETag: ['"0x8D4762BD3BC50CA"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:17 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:16 GMT']
|
||||
ETag: ['"0x8D47AB7A6D7AE95"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:16 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -404,18 +404,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:20 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:18 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>r</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:19 GMT']
|
||||
ETag: ['"0x8D4762BD3BC50CA"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:17 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:18 GMT']
|
||||
ETag: ['"0x8D47AB7A6D7AE95"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:16 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -423,22 +423,22 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['491']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:21 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:18 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:19 GMT']
|
||||
ETag: ['"0x8D4762BD58F0F6E"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:20 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:19 GMT']
|
||||
ETag: ['"0x8D47AB7A859D8C3"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:18 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -448,18 +448,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:22 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?comp=acl&restype=share
|
||||
uri: https://dummystorage.file.core.windows.net/acltestshare?restype=share&comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>rwdl</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:21 GMT']
|
||||
ETag: ['"0x8D4762BD58F0F6E"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:20 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:19 GMT']
|
||||
ETag: ['"0x8D47AB7A859D8C3"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:18 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
|
|
@ -10,17 +10,17 @@ interactions:
|
|||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
x-ms-client-request-id: [fc46734a-1407-11e7-bdd9-4c32759c53db]
|
||||
x-ms-client-request-id: [d54d2f8c-1893-11e7-9113-4c32759c53db]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_file_copy_scenario/providers/Microsoft.Storage/storageAccounts/dummystorage/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"e1znV+PW5YKuTUk3Ug3cw9PKiMpYsJ3E4IDWmd8y/I55o0hBZdQEqy4rqpD7VBedBuWxA/1yECAfOVAEPVY8tg=="},{"keyName":"key2","permissions":"Full","value":"/GKSWZTKtsK/5knqOIstHy+JseRqWq7iunS81KLIhoOjgvs7RyTeB/DQSM3Nw0h9hWpBIUVEh4XuBYkPKTN42g=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"j99RfTgg1rPlK+eGUcJG6+kC75c0rZzx1tZ9abb84czEnFIbGasMNjnkU4ePfOz8dP25l76HtylppZFcg9ufPg=="},{"keyName":"key2","permissions":"Full","value":"vO+r7KtHUcgcCfiksNXFMD/M3s4Qo/2bU8uRNdZyxIJFSTrC4jgKrjKnHpSANb9vLhnf1r57vqaV5x3XLnzOCw=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:39 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:47 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -28,7 +28,7 @@ interactions:
|
|||
Transfer-Encoding: [chunked]
|
||||
Vary: [Accept-Encoding]
|
||||
content-length: ['289']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1199']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1185']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -36,17 +36,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:40 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:48 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/share1?restype=share
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:40 GMT']
|
||||
ETag: ['"0x8D4762BE1ED0B90"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:41 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:48 GMT']
|
||||
ETag: ['"0x8D47AB7BA0BECCB"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:48 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -57,17 +57,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:41 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:49 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/share2?restype=share
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:40 GMT']
|
||||
ETag: ['"0x8D4762BE1CEDB80"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:41 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:48 GMT']
|
||||
ETag: ['"0x8D47AB7BAC17ED0"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:49 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -78,17 +78,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:42 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:50 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/share1/dir1?restype=directory
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:42 GMT']
|
||||
ETag: ['"0x8D4762BE315EC15"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:43 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:50 GMT']
|
||||
ETag: ['"0x8D47AB7BB935540"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:51 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -99,17 +99,17 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:44 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:52 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/share2/dir2?restype=directory
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:44 GMT']
|
||||
ETag: ['"0x8D4762BE3B2BC4A"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:44 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:52 GMT']
|
||||
ETag: ['"0x8D47AB7BC3E8A59"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:52 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -120,9 +120,9 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-content-length: ['78']
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:45 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:53 GMT']
|
||||
x-ms-type: [file]
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
|
@ -130,9 +130,9 @@ interactions:
|
|||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:44 GMT']
|
||||
ETag: ['"0x8D4762BE47E1E90"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:45 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:53 GMT']
|
||||
ETag: ['"0x8D47AB7BCDEC05C"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:53 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -143,8 +143,8 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['78']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:45 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:53 GMT']
|
||||
x-ms-range: [bytes=0-77]
|
||||
x-ms-version: ['2016-05-31']
|
||||
x-ms-write: [update]
|
||||
|
@ -154,9 +154,9 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:45 GMT']
|
||||
ETag: ['"0x8D4762BE491D100"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:45 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:53 GMT']
|
||||
ETag: ['"0x8D47AB7BCEA34C1"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:53 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -166,8 +166,8 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:47 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:54 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://dummystorage.file.core.windows.net/share1/dir1/src_file.txt
|
||||
|
@ -176,9 +176,9 @@ interactions:
|
|||
headers:
|
||||
Content-Length: ['78']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:47 GMT']
|
||||
ETag: ['"0x8D4762BE491D100"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:45 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:53 GMT']
|
||||
ETag: ['"0x8D47AB7BCEA34C1"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:53 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-type: [File]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -189,21 +189,21 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage486323366614.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:50 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage285082388564.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:34:56 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/share2/dest_file.txt
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:50 GMT']
|
||||
ETag: ['"0x8D4762BE7894CA8"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:50 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:57 GMT']
|
||||
ETag: ['"0x8D47AB7BED9F584"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:56 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-copy-id: [201aea80-7043-4d52-bd91-fd8e03c27f37]
|
||||
x-ms-copy-id: [bbf31ce5-9765-47b2-89e4-38b963a7aaa3]
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 202, message: Accepted}
|
||||
|
@ -212,8 +212,8 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:52 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:35:00 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://dummystorage.file.core.windows.net/share2/dest_file.txt
|
||||
|
@ -222,14 +222,14 @@ interactions:
|
|||
headers:
|
||||
Content-Length: ['78']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:52 GMT']
|
||||
ETag: ['"0x8D4762BE7894CA8"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:50 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:34:59 GMT']
|
||||
ETag: ['"0x8D47AB7BED9F584"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:34:56 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-copy-completion-time: ['Tue, 28 Mar 2017 22:43:50 GMT']
|
||||
x-ms-copy-id: [201aea80-7043-4d52-bd91-fd8e03c27f37]
|
||||
x-ms-copy-completion-time: ['Mon, 03 Apr 2017 17:34:56 GMT']
|
||||
x-ms-copy-id: [bbf31ce5-9765-47b2-89e4-38b963a7aaa3]
|
||||
x-ms-copy-progress: [78/78]
|
||||
x-ms-copy-source: ['https://vcrstorage486323366614.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-copy-source: ['https://vcrstorage285082388564.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-type: [File]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -240,21 +240,21 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage486323366614.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:53 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage285082388564.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:35:01 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/share2/dir2/dest_file.txt
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:54 GMT']
|
||||
ETag: ['"0x8D4762BE9BC9337"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:54 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:35:02 GMT']
|
||||
ETag: ['"0x8D47AB7C26E52BE"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:35:02 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-copy-id: [ef4c9695-4819-4348-a611-e925c0dced8b]
|
||||
x-ms-copy-id: [1e9cec7b-2823-44d8-8640-7745064a58cb]
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 202, message: Accepted}
|
||||
|
@ -263,8 +263,8 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:56 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:35:03 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: HEAD
|
||||
uri: https://dummystorage.file.core.windows.net/share2/dir2/dest_file.txt
|
||||
|
@ -273,14 +273,14 @@ interactions:
|
|||
headers:
|
||||
Content-Length: ['78']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Tue, 28 Mar 2017 22:43:57 GMT']
|
||||
ETag: ['"0x8D4762BE9BC9337"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:54 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:35:03 GMT']
|
||||
ETag: ['"0x8D47AB7C26E52BE"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:35:02 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-copy-completion-time: ['Tue, 28 Mar 2017 22:43:55 GMT']
|
||||
x-ms-copy-id: [ef4c9695-4819-4348-a611-e925c0dced8b]
|
||||
x-ms-copy-completion-time: ['Mon, 03 Apr 2017 17:35:02 GMT']
|
||||
x-ms-copy-id: [1e9cec7b-2823-44d8-8640-7745064a58cb]
|
||||
x-ms-copy-progress: [78/78]
|
||||
x-ms-copy-source: ['https://vcrstorage486323366614.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-copy-source: ['https://vcrstorage285082388564.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-type: [File]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -291,21 +291,21 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage486323366614.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:43:57 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-copy-source: ['https://vcrstorage285082388564.file.core.windows.net/share1/dir1/src_file.txt']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:35:04 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.file.core.windows.net/share2/dest_file.txt
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Tue, 28 Mar 2017 22:43:57 GMT']
|
||||
ETag: ['"0x8D4762BEBF27248"']
|
||||
Last-Modified: ['Tue, 28 Mar 2017 22:43:58 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:35:05 GMT']
|
||||
ETag: ['"0x8D47AB7C4981CDC"']
|
||||
Last-Modified: ['Mon, 03 Apr 2017 17:35:06 GMT']
|
||||
Server: [Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-copy-id: [362aeab0-0ee0-4caa-9a79-85bfb723cd51]
|
||||
x-ms-copy-id: [f2a29841-4912-48e2-bb63-324af2bfcb7c]
|
||||
x-ms-copy-status: [success]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 202, message: Accepted}
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1,6 +1,6 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: '{"location": "westus", "tags": {"use": "az-test"}}'
|
||||
body: '{"tags": {"use": "az-test"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -20,14 +20,14 @@ interactions:
|
|||
cache-control: [no-cache]
|
||||
content-length: ['326']
|
||||
content-type: [application/json; charset=utf-8]
|
||||
date: ['Wed, 29 Mar 2017 18:08:45 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:14 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1193']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1177']
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: '{"sku": {"name": "Standard_LRS"}, "location": "westus", "kind": "Storage"}'
|
||||
body: '{"kind": "Storage", "sku": {"name": "Standard_LRS"}, "location": "westus"}'
|
||||
headers:
|
||||
Accept: [application/json]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
|
@ -45,14 +45,14 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:08:47 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:18 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d7161459-43c6-400a-a78f-5fc1f5a289d9?monitor=true&api-version=2016-12-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/051e3d4f-bdb5-4a38-b420-ab56c5eb18c0?monitor=true&api-version=2016-12-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['17']
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1195']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1185']
|
||||
status: {code: 202, message: Accepted}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -66,16 +66,16 @@ interactions:
|
|||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
method: GET
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d7161459-43c6-400a-a78f-5fc1f5a289d9?monitor=true&api-version=2016-12-01
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/051e3d4f-bdb5-4a38-b420-ab56c5eb18c0?monitor=true&api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-03-29T18:08:47.0981513Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
body: {string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","kind":"Storage","location":"westus","name":"clitest000002","properties":{"creationTime":"2017-04-03T17:45:17.9368583Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","file":"https://clitest000002.file.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/"},"primaryLocation":"westus","provisioningState":"Succeeded","statusOfPrimary":"available"},"sku":{"name":"Standard_LRS","tier":"Standard"},"tags":{},"type":"Microsoft.Storage/storageAccounts"}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['827']
|
||||
content-type: [application/json]
|
||||
date: ['Wed, 29 Mar 2017 18:09:04 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:35 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -98,21 +98,21 @@ interactions:
|
|||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"i9szR7SYp4eQPq30G+o/iTAw5dqamxjYrIKLwJayGTchskoI750SnwZnHdMweitJo7RhUP42fdJVwzUoJpaIWw=="},{"keyName":"key2","permissions":"Full","value":"gKZIi3LebPlasXDHmzjVoAImy5enWHhbTkLhYgFSqYpDTwezQ31LwQiLMLqdo5so1xXYU82gVGkTPkVzmx00vg=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"68jmbmKvZkVNcMYj8TlxU5u7ixzZQxivYlCdVbyrfCuJf/eV1iPlJk/r9HAJ4MP1JpaxCSOjfWSRFXMz4yz4ww=="},{"keyName":"key2","permissions":"Full","value":"IkEsnfOFU4u29AV755TDitsfmb8ayGiyTfHVLqF4uh54JmpDzSZWhjQPwt2qKArN7xtIHqtBbgsOXfd/RTf36Q=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['289']
|
||||
content-type: [application/json]
|
||||
date: ['Wed, 29 Mar 2017 18:09:06 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:33 GMT']
|
||||
expires: ['-1']
|
||||
pragma: [no-cache]
|
||||
server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
transfer-encoding: [chunked]
|
||||
vary: [Accept-Encoding]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1192']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1181']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -120,7 +120,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:08 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:38 GMT']
|
||||
x-ms-meta-a: [b]
|
||||
x-ms-meta-c: [d]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -129,7 +129,7 @@ interactions:
|
|||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
date: ['Wed, 29 Mar 2017 18:09:07 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:38 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -139,7 +139,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:09 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:39 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=metadata
|
||||
|
@ -147,7 +147,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
date: ['Wed, 29 Mar 2017 18:09:09 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:38 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-approximate-messages-count: ['0']
|
||||
|
@ -160,7 +160,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:10 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:40 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/?comp=list
|
||||
|
@ -171,7 +171,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:09 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:39 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -181,7 +181,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:11 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:42 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=metadata
|
||||
|
@ -189,7 +189,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
date: ['Wed, 29 Mar 2017 18:09:11 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:41 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-approximate-messages-count: ['0']
|
||||
|
@ -203,7 +203,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:12 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:43 GMT']
|
||||
x-ms-meta-e: [f]
|
||||
x-ms-meta-g: [h]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -213,7 +213,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:12 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:42 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -222,7 +222,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:13 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:44 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=metadata
|
||||
|
@ -230,7 +230,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
date: ['Wed, 29 Mar 2017 18:09:13 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:43 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-approximate-messages-count: ['0']
|
||||
|
@ -243,7 +243,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:14 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:45 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -253,7 +253,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:14 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:45 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -263,7 +263,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:15 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:46 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -273,7 +273,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:14 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:45 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -284,7 +284,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['264']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:15 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:46 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -292,7 +292,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:15 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:45 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -301,7 +301,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:16 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:47 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -310,7 +310,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:16 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:46 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -320,7 +320,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:17 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:48 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -329,7 +329,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:17 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:47 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -339,7 +339,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:18 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:49 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -348,7 +348,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:18 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:48 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -359,7 +359,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['268']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:18 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:49 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -367,7 +367,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:18 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:48 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -376,7 +376,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:19 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:50 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -385,7 +385,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:19 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:49 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -395,7 +395,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:20 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:51 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -404,7 +404,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:21 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:50 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -417,7 +417,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['60']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:20 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:51 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -425,7 +425,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:21 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:50 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -434,7 +434,7 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:21 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:52 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=acl
|
||||
|
@ -444,7 +444,7 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:20 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:51 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -457,18 +457,18 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['107']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:22 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:53 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: POST
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>59a2f5e0-90df-4f6a-86a7-9f1a820db25c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:22 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:22
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAAJGmjl7eo0gE=</PopReceipt><TimeNextVisible>Wed,
|
||||
29 Mar 2017 18:09:22 GMT</TimeNextVisible></QueueMessage></QueueMessagesList>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>11c6b808-7b33-44cf-95ad-40c938370cd4</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:45:53 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:45:53
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAAhuXaI6Ks0gE=</PopReceipt><TimeNextVisible>Mon,
|
||||
03 Apr 2017 17:45:53 GMT</TimeNextVisible></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:22 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:52 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -478,18 +478,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:23 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:54 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>59a2f5e0-90df-4f6a-86a7-9f1a820db25c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:22 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:22
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>11c6b808-7b33-44cf-95ad-40c938370cd4</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:45:53 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:45:53
|
||||
GMT</ExpirationTime><DequeueCount>0</DequeueCount><MessageText>test message</MessageText></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:23 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:53 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -499,20 +499,20 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:24 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:55 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>59a2f5e0-90df-4f6a-86a7-9f1a820db25c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:22 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:22
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAAhpmTqreo0gE=</PopReceipt><TimeNextVisible>Wed,
|
||||
29 Mar 2017 18:09:54 GMT</TimeNextVisible><DequeueCount>1</DequeueCount><MessageText>test
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>11c6b808-7b33-44cf-95ad-40c938370cd4</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:45:53 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:45:53
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAAeyTPNqKs0gE=</PopReceipt><TimeNextVisible>Mon,
|
||||
03 Apr 2017 17:46:25 GMT</TimeNextVisible><DequeueCount>1</DequeueCount><MessageText>test
|
||||
message</MessageText></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:22 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:55 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -525,18 +525,18 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['107']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:25 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:56 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages/59a2f5e0-90df-4f6a-86a7-9f1a820db25c?popreceipt=AgAAAAMAAAAAAAAAhpmTqreo0gE%3D&visibilitytimeout=1
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages/11c6b808-7b33-44cf-95ad-40c938370cd4?popreceipt=AgAAAAMAAAAAAAAAeyTPNqKs0gE%3D&visibilitytimeout=1
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:24 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:55 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-popreceipt: [AwAAAAMAAAAAAAAAhj7Xmbeo0gEBAAAA]
|
||||
x-ms-time-next-visible: ['Wed, 29 Mar 2017 18:09:26 GMT']
|
||||
x-ms-popreceipt: [AwAAAAMAAAAAAAAAxqseJqKs0gEBAAAA]
|
||||
x-ms-time-next-visible: ['Mon, 03 Apr 2017 17:45:57 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
- request:
|
||||
|
@ -544,18 +544,18 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:28 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:45:59 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>59a2f5e0-90df-4f6a-86a7-9f1a820db25c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:22 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:22
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>11c6b808-7b33-44cf-95ad-40c938370cd4</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:45:53 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:45:53
|
||||
GMT</ExpirationTime><DequeueCount>1</DequeueCount><MessageText>new message!</MessageText></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:27 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:58 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -568,18 +568,18 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['109']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:29 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:00 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: POST
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>15aa4d4a-674c-4159-ae99-5cb4c8eb063c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:28 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:28
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAA+4WLm7eo0gE=</PopReceipt><TimeNextVisible>Wed,
|
||||
29 Mar 2017 18:09:28 GMT</TimeNextVisible></QueueMessage></QueueMessagesList>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>ed2a76b0-4b80-4f6d-aada-0fc75853ca71</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:46:00 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:46:00
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAA9UTkJ6Ks0gE=</PopReceipt><TimeNextVisible>Mon,
|
||||
03 Apr 2017 17:46:00 GMT</TimeNextVisible></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:28 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:45:59 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -592,18 +592,18 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['108']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:30 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:01 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: POST
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>722f6de6-d44a-4d4e-a484-ecd4c209cefb</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:29 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:29
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAA5foYnLeo0gE=</PopReceipt><TimeNextVisible>Wed,
|
||||
29 Mar 2017 18:09:29 GMT</TimeNextVisible></QueueMessage></QueueMessagesList>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>7300278f-708f-43f5-b5a2-2a430575a767</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:46:01 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:46:01
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAAbxJzKKKs0gE=</PopReceipt><TimeNextVisible>Mon,
|
||||
03 Apr 2017 17:46:01 GMT</TimeNextVisible></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:29 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:00 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -613,22 +613,22 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:30 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:02 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true&numofmessages=32
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages?numofmessages=32&peekonly=true
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>59a2f5e0-90df-4f6a-86a7-9f1a820db25c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:22 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:22
|
||||
GMT</ExpirationTime><DequeueCount>1</DequeueCount><MessageText>new message!</MessageText></QueueMessage><QueueMessage><MessageId>15aa4d4a-674c-4159-ae99-5cb4c8eb063c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:28 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:28
|
||||
GMT</ExpirationTime><DequeueCount>0</DequeueCount><MessageText>second message</MessageText></QueueMessage><QueueMessage><MessageId>722f6de6-d44a-4d4e-a484-ecd4c209cefb</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:29 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:29
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>11c6b808-7b33-44cf-95ad-40c938370cd4</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:45:53 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:45:53
|
||||
GMT</ExpirationTime><DequeueCount>1</DequeueCount><MessageText>new message!</MessageText></QueueMessage><QueueMessage><MessageId>ed2a76b0-4b80-4f6d-aada-0fc75853ca71</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:46:00 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:46:00
|
||||
GMT</ExpirationTime><DequeueCount>0</DequeueCount><MessageText>second message</MessageText></QueueMessage><QueueMessage><MessageId>7300278f-708f-43f5-b5a2-2a430575a767</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:46:01 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:46:01
|
||||
GMT</ExpirationTime><DequeueCount>0</DequeueCount><MessageText>third message</MessageText></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:30 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:01 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -638,20 +638,20 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:31 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:03 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>59a2f5e0-90df-4f6a-86a7-9f1a820db25c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:22 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:22
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAAVZwLr7eo0gE=</PopReceipt><TimeNextVisible>Wed,
|
||||
29 Mar 2017 18:10:01 GMT</TimeNextVisible><DequeueCount>2</DequeueCount><MessageText>new
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>11c6b808-7b33-44cf-95ad-40c938370cd4</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:45:53 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:45:53
|
||||
GMT</ExpirationTime><PopReceipt>AgAAAAMAAAAAAAAA+mVxO6Ks0gE=</PopReceipt><TimeNextVisible>Mon,
|
||||
03 Apr 2017 17:46:32 GMT</TimeNextVisible><DequeueCount>2</DequeueCount><MessageText>new
|
||||
message!</MessageText></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:31 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:02 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -662,15 +662,15 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:32 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:04 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: DELETE
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages/59a2f5e0-90df-4f6a-86a7-9f1a820db25c?popreceipt=AgAAAAMAAAAAAAAAVZwLr7eo0gE%3D
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages/11c6b808-7b33-44cf-95ad-40c938370cd4?popreceipt=AgAAAAMAAAAAAAAA%2BmVxO6Ks0gE%3D
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:32 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:03 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -679,20 +679,20 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:33 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:05 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true&numofmessages=32
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages?numofmessages=32&peekonly=true
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>15aa4d4a-674c-4159-ae99-5cb4c8eb063c</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:28 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:28
|
||||
GMT</ExpirationTime><DequeueCount>0</DequeueCount><MessageText>second message</MessageText></QueueMessage><QueueMessage><MessageId>722f6de6-d44a-4d4e-a484-ecd4c209cefb</MessageId><InsertionTime>Wed,
|
||||
29 Mar 2017 18:09:29 GMT</InsertionTime><ExpirationTime>Wed, 05 Apr 2017 18:09:29
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList><QueueMessage><MessageId>ed2a76b0-4b80-4f6d-aada-0fc75853ca71</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:46:00 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:46:00
|
||||
GMT</ExpirationTime><DequeueCount>0</DequeueCount><MessageText>second message</MessageText></QueueMessage><QueueMessage><MessageId>7300278f-708f-43f5-b5a2-2a430575a767</MessageId><InsertionTime>Mon,
|
||||
03 Apr 2017 17:46:01 GMT</InsertionTime><ExpirationTime>Mon, 10 Apr 2017 17:46:01
|
||||
GMT</ExpirationTime><DequeueCount>0</DequeueCount><MessageText>third message</MessageText></QueueMessage></QueueMessagesList>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:33 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:04 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -703,7 +703,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:34 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:05 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: DELETE
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages
|
||||
|
@ -711,7 +711,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:34 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:04 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -720,17 +720,17 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:35 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:06 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages?peekonly=true&numofmessages=32
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003/messages?numofmessages=32&peekonly=true
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><QueueMessagesList
|
||||
/>"}
|
||||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:35 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:05 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
transfer-encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -741,7 +741,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:36 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:07 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: DELETE
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003
|
||||
|
@ -749,7 +749,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:35 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:07 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -758,17 +758,17 @@ interactions:
|
|||
headers:
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-date: ['Wed, 29 Mar 2017 18:09:37 GMT']
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:46:08 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://clitest000002.queue.core.windows.net/queue000003?comp=metadata
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>QueueNotFound</Code><Message>The
|
||||
specified queue does not exist.\nRequestId:6281aa39-0003-0038-57b7-a8c9cb000000\nTime:2017-03-29T18:09:37.5100979Z</Message></Error>"}
|
||||
specified queue does not exist.\nRequestId:a87656d9-0003-0019-05a2-ac968c000000\nTime:2017-04-03T17:46:08.6272934Z</Message></Error>"}
|
||||
headers:
|
||||
content-length: ['217']
|
||||
content-type: [application/xml]
|
||||
date: ['Wed, 29 Mar 2017 18:09:36 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:08 GMT']
|
||||
server: [Windows-Azure-Queue/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 404, message: The specified queue does not exist.}
|
||||
|
@ -792,12 +792,12 @@ interactions:
|
|||
headers:
|
||||
cache-control: [no-cache]
|
||||
content-length: ['0']
|
||||
date: ['Wed, 29 Mar 2017 18:09:38 GMT']
|
||||
date: ['Mon, 03 Apr 2017 17:46:05 GMT']
|
||||
expires: ['-1']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkc1REI3OTBGRjI1QjY2NDg3MURDNDBFMkQyQ0Y5MTBDNTcyQXw3MEFGODAyQzgyMEFCNzFELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdCRDAxQjVGRjQ5RjlFQUZCOTk4NUMzOTIxNDA0RDk1Q0ZFMnw1MDlFMkZDNjQ1QjlCMkYwLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01']
|
||||
pragma: [no-cache]
|
||||
retry-after: ['15']
|
||||
strict-transport-security: [max-age=31536000; includeSubDomains]
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1193']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1180']
|
||||
status: {code: 202, message: Accepted}
|
||||
version: 1
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -10,17 +10,17 @@ interactions:
|
|||
User-Agent: [python/3.5.3 (Darwin-16.5.0-x86_64-i386-64bit) requests/2.9.1 msrest/0.4.6
|
||||
msrest_azure/0.4.7 storagemanagementclient/0.31.0 Azure-SDK-For-Python AZURECLI/TEST/2.0.1+dev]
|
||||
accept-language: [en-US]
|
||||
x-ms-client-request-id: [1b32129e-1408-11e7-bc24-4c32759c53db]
|
||||
x-ms-client-request-id: [209d53de-1894-11e7-afe5-4c32759c53db]
|
||||
method: POST
|
||||
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_table_scenario_test/providers/Microsoft.Storage/storageAccounts/dummystorage/listKeys?api-version=2016-12-01
|
||||
response:
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"nv9+27XcdyjtO7Y3xJ0R5WlyouRpPf97vuQRvJRO1Ny1p/4QX+qGE6EnFy1xdH0Zns0P7ZBbGnVMEdELJ4rrkQ=="},{"keyName":"key2","permissions":"Full","value":"A+wZ6lFYZzJdxT40OtaMCl5xUIODcdrPdfskSq+EZUuMk9i2qqExBj5XhbahF5OoWd3w8iMOrG47/giA2UJTIA=="}]}
|
||||
body: {string: '{"keys":[{"keyName":"key1","permissions":"Full","value":"hA0v9hgE6xZFBYt+Kxy1p2Is3qnHsK8qzFuZNCuPPut7HbDMTfAEdPKU5r9qXtiCciY/HG6B6l3sw1RFGAlC7Q=="},{"keyName":"key2","permissions":"Full","value":"itAZtCzpLfQgTsY1+dB5hV352IKJjtadJBiHNGMlos47L3o21og8JAK66s71GJCq6n40YdaCqajRKCDQWZRXTQ=="}]}
|
||||
|
||||
'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:30 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:36:53 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -28,7 +28,7 @@ interactions:
|
|||
Transfer-Encoding: [chunked]
|
||||
Vary: [Accept-Encoding]
|
||||
content-length: ['289']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1193']
|
||||
x-ms-ratelimit-remaining-subscription-writes: ['1180']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"TableName": "table1"}'
|
||||
|
@ -41,8 +41,8 @@ interactions:
|
|||
MaxDataServiceVersion: ['3.0']
|
||||
Prefer: [return-no-content]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:31 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:36:55 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: POST
|
||||
uri: https://dummystorage.table.core.windows.net/Tables
|
||||
|
@ -51,9 +51,9 @@ interactions:
|
|||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Length: ['0']
|
||||
DataServiceId: ['https://vcrstorage599362686349.table.core.windows.net/Tables(''table1'')']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:30 GMT']
|
||||
Location: ['https://vcrstorage599362686349.table.core.windows.net/Tables(''table1'')']
|
||||
DataServiceId: ['https://vcrstorage452042157747.table.core.windows.net/Tables(''table1'')']
|
||||
Date: ['Mon, 03 Apr 2017 17:36:54 GMT']
|
||||
Location: ['https://vcrstorage452042157747.table.core.windows.net/Tables(''table1'')']
|
||||
Preference-Applied: [return-no-content]
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
|
@ -67,8 +67,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:32 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:36:56 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/Tables('table1')
|
||||
|
@ -77,7 +77,7 @@ interactions:
|
|||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:32 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:36:55 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
|
@ -91,8 +91,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:34 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:36:57 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/Tables
|
||||
|
@ -101,7 +101,7 @@ interactions:
|
|||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:33 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:36:56 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
|
@ -114,8 +114,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:36 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:36:58 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -124,7 +124,7 @@ interactions:
|
|||
/>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:37 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:36:58 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -136,8 +136,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:38 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:36:59 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -146,7 +146,7 @@ interactions:
|
|||
/>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:37 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:36:59 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -161,8 +161,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:38 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:00 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -170,7 +170,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:37 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:36:59 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -181,8 +181,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:39 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:00 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -190,7 +190,7 @@ interactions:
|
|||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:39 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:00 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -205,8 +205,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:39 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:01 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -214,7 +214,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:39 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:00 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -225,8 +225,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:41 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:02 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -234,7 +234,7 @@ interactions:
|
|||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:41 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:01 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -242,15 +242,15 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['413']
|
||||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:41 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:02 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -258,7 +258,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:41 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:01 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -269,16 +269,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:42 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:03 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:42 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:03 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -286,15 +286,15 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00Z</Start><Expiry>2016-05-01T00:00Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00Z</Start><Expiry>2016-05-01T00:00Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['591']
|
||||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:42 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:03 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -302,7 +302,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:42 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:03 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -313,16 +313,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:43 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:04 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:43 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:04 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -334,16 +334,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:44 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:05 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:43 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:05 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -355,16 +355,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:45 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:07 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:45 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:06 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -376,16 +376,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:46 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:08 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:49 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:07 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -397,16 +397,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:50 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:09 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:50 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:08 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -418,16 +418,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:50 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:10 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>a</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:50 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:09 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -435,15 +435,15 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>au</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>au</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['598']
|
||||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:51 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:10 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -451,7 +451,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:50 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:09 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -462,16 +462,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:52 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:11 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>au</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>au</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:51 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:11 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -483,16 +483,16 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:53 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:12 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>au</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test1</Id><AccessPolicy><Permission>au</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:53 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:12 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -500,15 +500,15 @@ interactions:
|
|||
- request:
|
||||
body: '<?xml version=''1.0'' encoding=''utf-8''?>
|
||||
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
<SignedIdentifiers><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start><Expiry>2016-05-01T00:00:00Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>'
|
||||
headers:
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['491']
|
||||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:53 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:12 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
|
@ -516,7 +516,7 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:53 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:12 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 204, message: No Content}
|
||||
|
@ -527,22 +527,22 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:54 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:13 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1?comp=acl
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><SignedIdentifiers><SignedIdentifier><Id>test4</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start><Expiry>2016-05-01T00:00:00.0000000Z</Expiry><Permission>raud</Permission></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test2</Id><AccessPolicy><Start>2016-01-01T00:00:00.0000000Z</Start></AccessPolicy></SignedIdentifier><SignedIdentifier><Id>test3</Id><AccessPolicy><Expiry>2018-01-01T00:00:00.0000000Z</Expiry></AccessPolicy></SignedIdentifier></SignedIdentifiers>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:53 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:13 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"RowKey": "001", "name": "test", "value": "something", "PartitionKey":
|
||||
body: '{"value": "something", "name": "test", "RowKey": "001", "PartitionKey":
|
||||
"001"}'
|
||||
headers:
|
||||
Accept: [application/json;odata=minimalmetadata]
|
||||
|
@ -553,8 +553,8 @@ interactions:
|
|||
MaxDataServiceVersion: ['3.0']
|
||||
Prefer: [return-no-content]
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:55 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:14 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: POST
|
||||
uri: https://dummystorage.table.core.windows.net/table1
|
||||
|
@ -563,10 +563,10 @@ interactions:
|
|||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Length: ['0']
|
||||
DataServiceId: ['https://vcrstorage599362686349.table.core.windows.net/table1(PartitionKey=''001'',RowKey=''001'')']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:55 GMT']
|
||||
ETag: [W/"datetime'2017-03-28T22%3A44%3A55.2473244Z'"]
|
||||
Location: ['https://vcrstorage599362686349.table.core.windows.net/table1(PartitionKey=''001'',RowKey=''001'')']
|
||||
DataServiceId: ['https://vcrstorage452042157747.table.core.windows.net/table1(PartitionKey=''001'',RowKey=''001'')']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:14 GMT']
|
||||
ETag: [W/"datetime'2017-04-03T17%3A37%3A15.2913773Z'"]
|
||||
Location: ['https://vcrstorage452042157747.table.core.windows.net/table1(PartitionKey=''001'',RowKey=''001'')']
|
||||
Preference-Applied: [return-no-content]
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
|
@ -580,18 +580,18 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:56 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:15 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1(PartitionKey='001',RowKey='001')
|
||||
response:
|
||||
body: {string: '{"odata.metadata":"https://vcrstorage599362686349.table.core.windows.net/$metadata#table1/@Element","odata.etag":"W/\"datetime''2017-03-28T22%3A44%3A55.2473244Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2017-03-28T22:44:55.2473244Z","name":"test","value":"something"}'}
|
||||
body: {string: '{"odata.metadata":"https://vcrstorage452042157747.table.core.windows.net/$metadata#table1/@Element","odata.etag":"W/\"datetime''2017-04-03T17%3A37%3A15.2913773Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2017-04-03T17:37:15.2913773Z","value":"something","name":"test"}'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:56 GMT']
|
||||
ETag: [W/"datetime'2017-03-28T22%3A44%3A55.2473244Z'"]
|
||||
Date: ['Mon, 03 Apr 2017 17:37:15 GMT']
|
||||
ETag: [W/"datetime'2017-04-03T17%3A37%3A15.2913773Z'"]
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
|
@ -605,25 +605,25 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:57 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:17 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1(PartitionKey='001',RowKey='001')?%24select=name
|
||||
response:
|
||||
body: {string: '{"odata.metadata":"https://vcrstorage599362686349.table.core.windows.net/$metadata#table1/@Element&$select=name","odata.etag":"W/\"datetime''2017-03-28T22%3A44%3A55.2473244Z''\"","name":"test"}'}
|
||||
body: {string: '{"odata.metadata":"https://vcrstorage452042157747.table.core.windows.net/$metadata#table1/@Element&$select=name","odata.etag":"W/\"datetime''2017-04-03T17%3A37%3A15.2913773Z''\"","name":"test"}'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:56 GMT']
|
||||
ETag: [W/"datetime'2017-03-28T22%3A44%3A55.2473244Z'"]
|
||||
Date: ['Mon, 03 Apr 2017 17:37:16 GMT']
|
||||
ETag: [W/"datetime'2017-04-03T17%3A37%3A15.2913773Z'"]
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"RowKey": "001", "name": "test", "value": "newval", "PartitionKey": "001"}'
|
||||
body: '{"value": "newval", "name": "test", "RowKey": "001", "PartitionKey": "001"}'
|
||||
headers:
|
||||
Accept: [application/json;odata=minimalmetadata]
|
||||
Connection: [keep-alive]
|
||||
|
@ -633,8 +633,8 @@ interactions:
|
|||
If-Match: ['*']
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:58 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:18 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: MERGE
|
||||
uri: https://dummystorage.table.core.windows.net/table1(PartitionKey='001',RowKey='001')
|
||||
|
@ -643,8 +643,8 @@ interactions:
|
|||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:57 GMT']
|
||||
ETag: [W/"datetime'2017-03-28T22%3A44%3A58.5381166Z'"]
|
||||
Date: ['Mon, 03 Apr 2017 17:37:18 GMT']
|
||||
ETag: [W/"datetime'2017-04-03T17%3A37%3A18.2294575Z'"]
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -657,25 +657,25 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:44:59 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:19 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1(PartitionKey='001',RowKey='001')
|
||||
response:
|
||||
body: {string: '{"odata.metadata":"https://vcrstorage599362686349.table.core.windows.net/$metadata#table1/@Element","odata.etag":"W/\"datetime''2017-03-28T22%3A44%3A58.5381166Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2017-03-28T22:44:58.5381166Z","name":"test","value":"newval"}'}
|
||||
body: {string: '{"odata.metadata":"https://vcrstorage452042157747.table.core.windows.net/$metadata#table1/@Element","odata.etag":"W/\"datetime''2017-04-03T17%3A37%3A18.2294575Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2017-04-03T17:37:18.2294575Z","name":"test","value":"newval"}'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
|
||||
Date: ['Tue, 28 Mar 2017 22:44:58 GMT']
|
||||
ETag: [W/"datetime'2017-03-28T22%3A44%3A58.5381166Z'"]
|
||||
Date: ['Mon, 03 Apr 2017 17:37:19 GMT']
|
||||
ETag: [W/"datetime'2017-04-03T17%3A37%3A18.2294575Z'"]
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-version: ['2016-05-31']
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '{"RowKey": "001", "PartitionKey": "001", "cat": "hat"}'
|
||||
body: '{"cat": "hat", "RowKey": "001", "PartitionKey": "001"}'
|
||||
headers:
|
||||
Accept: [application/json;odata=minimalmetadata]
|
||||
Connection: [keep-alive]
|
||||
|
@ -685,8 +685,8 @@ interactions:
|
|||
If-Match: ['*']
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:00 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:20 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: PUT
|
||||
uri: https://dummystorage.table.core.windows.net/table1(PartitionKey='001',RowKey='001')
|
||||
|
@ -695,8 +695,8 @@ interactions:
|
|||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:44:59 GMT']
|
||||
ETag: [W/"datetime'2017-03-28T22%3A45%3A00.4883551Z'"]
|
||||
Date: ['Mon, 03 Apr 2017 17:37:20 GMT']
|
||||
ETag: [W/"datetime'2017-04-03T17%3A37%3A20.3959945Z'"]
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -709,18 +709,18 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:01 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:21 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1(PartitionKey='001',RowKey='001')
|
||||
response:
|
||||
body: {string: '{"odata.metadata":"https://vcrstorage599362686349.table.core.windows.net/$metadata#table1/@Element","odata.etag":"W/\"datetime''2017-03-28T22%3A45%3A00.4883551Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2017-03-28T22:45:00.4883551Z","cat":"hat"}'}
|
||||
body: {string: '{"odata.metadata":"https://vcrstorage452042157747.table.core.windows.net/$metadata#table1/@Element","odata.etag":"W/\"datetime''2017-04-03T17%3A37%3A20.3959945Z''\"","PartitionKey":"001","RowKey":"001","Timestamp":"2017-04-03T17:37:20.3959945Z","cat":"hat"}'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
|
||||
Date: ['Tue, 28 Mar 2017 22:45:01 GMT']
|
||||
ETag: [W/"datetime'2017-03-28T22%3A45%3A00.4883551Z'"]
|
||||
Date: ['Mon, 03 Apr 2017 17:37:21 GMT']
|
||||
ETag: [W/"datetime'2017-04-03T17%3A37%3A20.3959945Z'"]
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
|
@ -736,8 +736,8 @@ interactions:
|
|||
If-Match: ['*']
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:02 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:23 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: DELETE
|
||||
uri: https://dummystorage.table.core.windows.net/table1(PartitionKey='001',RowKey='001')
|
||||
|
@ -746,7 +746,7 @@ interactions:
|
|||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:45:02 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:23 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -759,18 +759,18 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:03 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:24 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/table1(PartitionKey='001',RowKey='001')
|
||||
response:
|
||||
body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The
|
||||
specified resource does not exist.\nRequestId:f3e6df43-0002-0086-3e14-a8fc19000000\nTime:2017-03-28T22:45:03.6401464Z"}}}'}
|
||||
specified resource does not exist.\nRequestId:6c8583ba-0002-011a-25a0-ac5859000000\nTime:2017-04-03T17:37:25.1257662Z"}}}'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json;odata=minimalmetadata;streaming=true;charset=utf-8]
|
||||
Date: ['Tue, 28 Mar 2017 22:45:03 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:24 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
|
@ -785,8 +785,8 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:04 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:26 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: DELETE
|
||||
uri: https://dummystorage.table.core.windows.net/Tables('table1')
|
||||
|
@ -795,7 +795,7 @@ interactions:
|
|||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Length: ['0']
|
||||
Date: ['Tue, 28 Mar 2017 22:45:04 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:25 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-version: ['2016-05-31']
|
||||
|
@ -808,18 +808,18 @@ interactions:
|
|||
DataServiceVersion: [3.0;NetFx]
|
||||
MaxDataServiceVersion: ['3.0']
|
||||
User-Agent: [Azure-Storage/0.34.0 (Python CPython 3.5.3; Darwin 16.5.0) AZURECLI/2.0.1+dev]
|
||||
x-ms-client-request-id: [d2f2f8b0-1407-11e7-b4d3-4c32759c53db]
|
||||
x-ms-date: ['Tue, 28 Mar 2017 22:45:06 GMT']
|
||||
x-ms-client-request-id: [419ae2b6-1893-11e7-a391-4c32759c53db]
|
||||
x-ms-date: ['Mon, 03 Apr 2017 17:37:27 GMT']
|
||||
x-ms-version: ['2016-05-31']
|
||||
method: GET
|
||||
uri: https://dummystorage.table.core.windows.net/Tables('table1')
|
||||
response:
|
||||
body: {string: '{"odata.error":{"code":"ResourceNotFound","message":{"lang":"en-US","value":"The
|
||||
specified resource does not exist.\nRequestId:7715cf12-0002-0100-7b14-a8ee9e000000\nTime:2017-03-28T22:45:05.9626709Z"}}}'}
|
||||
specified resource does not exist.\nRequestId:e32ec767-0002-00ef-7ca0-ac3a1d000000\nTime:2017-04-03T17:37:27.4450901Z"}}}'}
|
||||
headers:
|
||||
Cache-Control: [no-cache]
|
||||
Content-Type: [application/json;odata=nometadata;streaming=true;charset=utf-8]
|
||||
Date: ['Tue, 28 Mar 2017 22:45:05 GMT']
|
||||
Date: ['Mon, 03 Apr 2017 17:37:26 GMT']
|
||||
Server: [Windows-Azure-Table/1.0 Microsoft-HTTPAPI/2.0]
|
||||
Transfer-Encoding: [chunked]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -5,9 +5,10 @@
|
|||
|
||||
import os
|
||||
import re
|
||||
import unittest
|
||||
from datetime import datetime, timedelta
|
||||
from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer,
|
||||
JMESPathCheck)
|
||||
from azure.cli.testsdk import (ScenarioTest, LiveTest, ResourceGroupPreparer,
|
||||
StorageAccountPreparer, JMESPathCheck, live_only, get_sha1_hash)
|
||||
|
||||
|
||||
class StorageBlobUploadTests(ScenarioTest):
|
||||
|
@ -23,34 +24,15 @@ class StorageBlobUploadTests(ScenarioTest):
|
|||
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_101mb_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 101 * 1024, 'block',
|
||||
26, skip_download=True)
|
||||
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_100mb_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 100 * 1024, 'block',
|
||||
25, skip_download=True)
|
||||
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_99mb_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 99 * 1024, 'block',
|
||||
25, skip_download=True)
|
||||
def test_storage_blob_upload_128mb_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 128 * 1024, 'block',
|
||||
0, skip_download=True)
|
||||
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_64mb_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 64 * 1024, 'block',
|
||||
16, skip_download=True)
|
||||
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_63mb_file(self, resource_group, storage_account):
|
||||
# 64MB is the put request size limit
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 63 * 1024, 'block',
|
||||
skip_download=True)
|
||||
0, skip_download=True)
|
||||
|
||||
def verify_blob_upload_and_download(self, group, account, file_size_kb, blob_type,
|
||||
block_count=0, skip_download=False):
|
||||
|
@ -100,7 +82,7 @@ class StorageBlobUploadTests(ScenarioTest):
|
|||
self.assertEqual(file_size_kb * 1024, os.stat(downloaded).st_size,
|
||||
'The download file size is not right.')
|
||||
|
||||
# Verify the requests in cassette to ensure the count of the block requests is expeected
|
||||
# Verify the requests in cassette to ensure the count of the block requests is expected
|
||||
# This portion of validation doesn't verify anything during playback because the recording
|
||||
# is fixed.
|
||||
def is_block_put_req(request):
|
||||
|
@ -131,7 +113,61 @@ class StorageBlobUploadTests(ScenarioTest):
|
|||
.format(name, group)).output
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
import unittest
|
||||
class StorageBlobUploadLiveTests(LiveTest):
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_256mb_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 256 * 1024, 'block')
|
||||
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_1G_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 1024 * 1024, 'block')
|
||||
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_2G_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 2 * 1024 * 1024,
|
||||
'block')
|
||||
|
||||
@ResourceGroupPreparer()
|
||||
@StorageAccountPreparer()
|
||||
def test_storage_blob_upload_10G_file(self, resource_group, storage_account):
|
||||
self.verify_blob_upload_and_download(resource_group, storage_account, 10 * 1024 * 1024,
|
||||
'block')
|
||||
|
||||
def verify_blob_upload_and_download(self, group, account, file_size_kb, blob_type):
|
||||
container = self.create_random_name(prefix='cont', length=24)
|
||||
local_dir = self.create_temp_dir()
|
||||
local_file = self.create_temp_file(file_size_kb, full_random=True)
|
||||
blob_name = self.create_random_name(prefix='blob', length=24)
|
||||
account_key = self.cmd('storage account keys list -n {} -g {} --query "[0].value" -otsv'
|
||||
.format(account, group)).output
|
||||
|
||||
self.set_env('AZURE_STORAGE_ACCOUNT', account)
|
||||
self.set_env('AZURE_STORAGE_KEY', account_key)
|
||||
|
||||
self.cmd('storage container create -n {}'.format(container))
|
||||
|
||||
self.cmd('storage blob exists -n {} -c {}'.format(blob_name, container),
|
||||
checks=JMESPathCheck('exists', False))
|
||||
|
||||
self.cmd('storage blob upload -c {} -f {} -n {} --type {}'
|
||||
.format(container, local_file, blob_name, blob_type))
|
||||
|
||||
self.cmd('storage blob exists -n {} -c {}'.format(blob_name, container),
|
||||
checks=JMESPathCheck('exists', True))
|
||||
|
||||
self.cmd('storage blob show -n {} -c {}'.format(blob_name, container),
|
||||
checks=JMESPathCheck('properties.contentLength', file_size_kb * 1024))
|
||||
|
||||
downloaded = os.path.join(local_dir, 'test.file')
|
||||
self.cmd('storage blob download -n {} -c {} --file {}'
|
||||
.format(blob_name, container, downloaded))
|
||||
self.assertTrue(os.path.isfile(downloaded), 'The file is not downloaded.')
|
||||
self.assertEqual(file_size_kb * 1024, os.stat(downloaded).st_size,
|
||||
'The download file size is not right.')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
Загрузка…
Ссылка в новой задаче