зеркало из https://github.com/microsoft/azure-cli.git
Change 'get' alias to 'show'
This commit is contained in:
Родитель
539d6a4639
Коммит
4492566a15
|
@ -214,14 +214,14 @@ build_operation(
|
|||
'storage container acl', None, _blob_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(BlockBlobService.set_container_acl, 'StoredAccessPolicy', 'set'),
|
||||
AutoCommandDefinition(BlockBlobService.get_container_acl, '[StoredAccessPolicy]', 'get'),
|
||||
AutoCommandDefinition(BlockBlobService.get_container_acl, '[StoredAccessPolicy]', 'show'),
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
build_operation(
|
||||
'storage container metadata', None, _blob_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(BlockBlobService.set_container_metadata, 'Properties', 'set'),
|
||||
AutoCommandDefinition(BlockBlobService.get_container_metadata, 'Metadata', 'get'),
|
||||
AutoCommandDefinition(BlockBlobService.get_container_metadata, 'Metadata', 'show'),
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
# TODO: update this once enums are supported in commands first-class (task #115175885)
|
||||
|
@ -278,7 +278,7 @@ build_operation(
|
|||
'storage blob service-properties', None, _blob_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(BlockBlobService.get_blob_service_properties,
|
||||
'[ServiceProperties]', 'get'),
|
||||
'[ServiceProperties]', 'show'),
|
||||
AutoCommandDefinition(BlockBlobService.set_blob_service_properties,
|
||||
'ServiceProperties', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
@ -286,14 +286,14 @@ build_operation(
|
|||
build_operation(
|
||||
'storage blob metadata', None, _blob_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(BlockBlobService.get_blob_metadata, 'Metadata', 'get'),
|
||||
AutoCommandDefinition(BlockBlobService.get_blob_metadata, 'Metadata', 'show'),
|
||||
AutoCommandDefinition(BlockBlobService.set_blob_metadata, 'Metadata', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
build_operation(
|
||||
'storage blob properties', None, _blob_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(BlockBlobService.get_blob_properties, 'Properties', 'get'),
|
||||
AutoCommandDefinition(BlockBlobService.get_blob_properties, 'Properties', 'show'),
|
||||
AutoCommandDefinition(BlockBlobService.set_blob_properties, 'Propeties', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
|
@ -435,14 +435,14 @@ build_operation(
|
|||
build_operation(
|
||||
'storage share metadata', None, _file_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(FileService.get_share_metadata, 'Metadata', 'get'),
|
||||
AutoCommandDefinition(FileService.get_share_metadata, 'Metadata', 'show'),
|
||||
AutoCommandDefinition(FileService.set_share_metadata, 'Metadata', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
build_operation(
|
||||
'storage share properties', None, _file_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(FileService.get_share_properties, 'Properties', 'get'),
|
||||
AutoCommandDefinition(FileService.get_share_properties, 'Properties', 'show'),
|
||||
AutoCommandDefinition(FileService.set_share_properties, 'Properties', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
|
@ -450,7 +450,7 @@ build_operation(
|
|||
'storage share acl', None, _file_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(FileService.set_share_acl, '[StoredAccessPolicy]', 'set'),
|
||||
AutoCommandDefinition(FileService.get_share_acl, 'StoredAccessPolicy', 'get'),
|
||||
AutoCommandDefinition(FileService.get_share_acl, 'StoredAccessPolicy', 'show'),
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
@command_table.command('storage share exists')
|
||||
|
@ -475,7 +475,7 @@ build_operation(
|
|||
build_operation(
|
||||
'storage directory metadata', None, _file_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(FileService.get_directory_metadata, 'Metadata', 'get'),
|
||||
AutoCommandDefinition(FileService.get_directory_metadata, 'Metadata', 'show'),
|
||||
AutoCommandDefinition(FileService.set_directory_metadata, 'Metadata', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
|
@ -513,21 +513,21 @@ build_operation(
|
|||
build_operation(
|
||||
'storage file metadata', None, _file_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(FileService.get_file_metadata, 'Metadata', 'get'),
|
||||
AutoCommandDefinition(FileService.get_file_metadata, 'Metadata', 'show'),
|
||||
AutoCommandDefinition(FileService.set_file_metadata, 'Metadata', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
build_operation(
|
||||
'storage file properties', None, _file_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(FileService.get_file_properties, 'Properties', 'get'),
|
||||
AutoCommandDefinition(FileService.get_file_properties, 'Properties', 'show'),
|
||||
AutoCommandDefinition(FileService.set_file_properties, 'Properties', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
build_operation(
|
||||
'storage file service-properties', None, _file_data_service_factory,
|
||||
[
|
||||
AutoCommandDefinition(FileService.get_file_service_properties, 'ServiceProperties', 'get'),
|
||||
AutoCommandDefinition(FileService.get_file_service_properties, 'ServiceProperties', 'show'),
|
||||
AutoCommandDefinition(FileService.set_file_service_properties, 'ServiceProperties', 'set')
|
||||
], command_table, PARAMETER_ALIASES, STORAGE_DATA_CLIENT_ARGS)
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ class StorageBlobScenarioTest(CommandTestScript):
|
|||
self.date = '2016-04-08T12:00Z'
|
||||
_get_connection_string(self)
|
||||
# TODO: 'exists' does not seem to work with a SAS token.
|
||||
#sas_token = self.run('storage account generate-sas --services b --resource-types sco --permission rwdl --expiry 2017-01-01T00:00Z')
|
||||
#sas_token = self.run('storage account generate-sas --services b --resource-types sco --permission rwdl --expiry 2017-01-01t00:00z')
|
||||
#sas_token = self.run('storage container generate-sas --permission rwdl --expiry 2017-01-01T00:00Z -c {}'.format(container))
|
||||
#print('TOKEN: {}'.format(sas_token))
|
||||
#self.set_env('AZURE_SAS_TOKEN', sas_token)
|
||||
|
@ -96,7 +96,7 @@ class StorageBlobScenarioTest(CommandTestScript):
|
|||
else:
|
||||
raise RuntimeError('Download failed. Test failed!')
|
||||
s.rec('storage blob list --container-name {}'.format(container))
|
||||
s.rec('storage blob properties get --container-name {} --blob-name {}'.format(container, blob))
|
||||
s.rec('storage blob properties show --container-name {} --blob-name {}'.format(container, blob))
|
||||
s.run('storage blob delete --container-name {} --blob-name {}'.format(container, blob))
|
||||
s.test('storage blob exists -b {} -c {}'.format(blob, container), False)
|
||||
|
||||
|
@ -112,9 +112,9 @@ class StorageBlobScenarioTest(CommandTestScript):
|
|||
s.test('storage container show --container-name {}'.format(container), {'name': container})
|
||||
s.rec('storage container list')
|
||||
s.run('storage container metadata set -c {} --metadata foo=bar;moo=bak;'.format(container))
|
||||
s.test('storage container metadata get -c {}'.format(container), {'foo': 'bar', 'moo': 'bak'})
|
||||
s.test('storage container metadata show -c {}'.format(container), {'foo': 'bar', 'moo': 'bak'})
|
||||
s.run('storage container metadata set -c {}'.format(container)) # reset metadata
|
||||
s.test('storage container metadata get -c {}'.format(container), None)
|
||||
s.test('storage container metadata show -c {}'.format(container), None)
|
||||
s._storage_blob_scenario()
|
||||
|
||||
# test lease operations
|
||||
|
@ -157,10 +157,10 @@ class StorageFileScenarioTest(CommandTestScript):
|
|||
s.test('storage directory create --share-name {} --directory-name {} --fail-on-exist'.format(share, dir), True)
|
||||
s.test('storage directory exists --share-name {} --directory-name {}'.format(share, dir), True)
|
||||
s.run('storage directory metadata set --share-name {} --directory-name {} --metadata a=b;c=d'.format(share, dir))
|
||||
s.test('storage directory metadata get --share-name {} --directory-name {}'.format(share, dir),
|
||||
s.test('storage directory metadata show --share-name {} --directory-name {}'.format(share, dir),
|
||||
{'a': 'b', 'c': 'd'})
|
||||
s.run('storage directory metadata set --share-name {} --directory-name {}'.format(share, dir))
|
||||
s.test('storage directory metadata get --share-name {} --directory-name {}'.format(share, dir), None)
|
||||
s.test('storage directory metadata show --share-name {} --directory-name {}'.format(share, dir), None)
|
||||
s._storage_file_in_subdir_scenario(share, dir)
|
||||
s.test('storage directory delete --share-name {} --directory-name {} --fail-not-exist'.format(share, dir), True)
|
||||
s.test('storage directory exists --share-name {} --directory-name {}'.format(share, dir), False)
|
||||
|
@ -168,7 +168,7 @@ class StorageFileScenarioTest(CommandTestScript):
|
|||
# verify a directory can be created with metadata and then delete
|
||||
dir = 'testdir02'
|
||||
s.test('storage directory create --share-name {} --directory-name {} --fail-on-exist --metadata foo=bar;cat=hat'.format(share, dir), True)
|
||||
s.test('storage directory metadata get --share-name {} --directory-name {}'.format(share, dir),
|
||||
s.test('storage directory metadata show --share-name {} --directory-name {}'.format(share, dir),
|
||||
{'cat': 'hat', 'foo': 'bar'})
|
||||
s.test('storage directory delete --share-name {} --directory-name {} --fail-not-exist'.format(share, dir), True)
|
||||
|
||||
|
@ -215,15 +215,15 @@ class StorageFileScenarioTest(CommandTestScript):
|
|||
s.test('storage share create --share-name {} --fail-on-exist'.format(share1), True)
|
||||
s.test('storage share create --share-name {} --fail-on-exist --metadata foo=bar;cat=hat'.format(share2), True)
|
||||
s.test('storage share exists --share-name {}'.format(share1), True)
|
||||
s.test('storage share metadata get --share-name {}'.format(share2), {'cat': 'hat', 'foo': 'bar'})
|
||||
s.test('storage share metadata show --share-name {}'.format(share2), {'cat': 'hat', 'foo': 'bar'})
|
||||
# TODO: Would need to enable behavior if a dictionary contains a list...
|
||||
s.rec('storage share list')
|
||||
|
||||
# verify metadata can be set, queried, and cleared
|
||||
s.run('storage share metadata set --share-name {} --metadata a=b;c=d'.format(share1))
|
||||
s.test('storage share metadata get --share-name {}'.format(share1), {'a': 'b', 'c': 'd'})
|
||||
s.test('storage share metadata show --share-name {}'.format(share1), {'a': 'b', 'c': 'd'})
|
||||
s.run('storage share metadata set --share-name {}'.format(share1))
|
||||
s.test('storage share metadata get --share-name {}'.format(share1), None)
|
||||
s.test('storage share metadata show --share-name {}'.format(share1), None)
|
||||
|
||||
self._storage_file_scenario(share1)
|
||||
self._storage_directory_scenario(share1)
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,4 +1,53 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: !!binary |
|
||||
Z3JhbnRfdHlwZT1yZWZyZXNoX3Rva2VuJnJlZnJlc2hfdG9rZW49QUFBQkFBQUFpTDlLbjJaMjdV
|
||||
dWJ2V0ZQYm0wZ0xkUUh0WUwxcnprUmt2ZjFmal96aEJrUEdxbzFiLVB6dzl4bEFfcFRmRDZ0bEVH
|
||||
LWNDS212WS1hai1NMnBDMk5QZTlmODZxdlVTWUVXbmgzOS1TRDlOdUhUM2lpTUNjYjVWMF9KTGgx
|
||||
MUd2MmhRYkszY3NYRGpqLWpzbVdUS0RtNTJ1WkVDS2duendHR2MwTzlPb0ZjQWlMRm9PYUVvYUk0
|
||||
RE5mRTA1MXRjdGotWDd4RXVTVU9zaEtaMWFMZTZFWmNXT2xTR05QZmFaZDN3YjJ1M2VVa2o4VVJj
|
||||
eGIzQW5KaHRyMDZYdUJCbVNGcENQbzNOeXhWYy1PeThmcGduTTV3MDNaMXRud0lhVzBaVkxXQ081
|
||||
djRfRlZhRHNubEZWcEJnOWtjT1ZyUUNENGFHTkNnWUFCWW5MMmIzeFFRY1RkT1J3ZGJzNF9talAy
|
||||
eVhPTk1fUk9jbXhIbUpLNW53eHVQZmQ0bmdKc1hBMjlkNWI2VEJXc2pBQ244MU9aWnpjcFJhZkpz
|
||||
SzZCZzgxVEtLemE1R2lWa2JmdEcxSHRPWEtTb0hTRTd1SmxuRTBrZG0tTlJYS0ltZ0w0NDVlY0o3
|
||||
eDNsTUVDalYzR2R6NWdvQkE1V2F5dTZ1am5hWGhaTGg5cmtDbk5OWlVVYXNFd3o4djY1dmhILTNn
|
||||
MXZMWmYxQUhTVldkWkYteHpsZDE2X29TckMwSEV5U3hkRy15bkktZGRuV1h2bWpzQ3RBM2diNnBk
|
||||
S1REQjdPbUstdEVuNUNhVFJpMExLWFYxa1R1bXEyVk1XYmNsWVBWSVRqYkFsdFZsRVZyRHpkajdY
|
||||
cWZuSkpjRnJ3OE50SkY0VFZwdUtmOTNRQ0FBJmNsaWVudF9pZD0wNGIwNzc5NS04ZGRiLTQ2MWEt
|
||||
YmJlZS0wMmY5ZTFiZjdiNDYmcmVzb3VyY2U9aHR0cHMlM0ElMkYlMkZtYW5hZ2VtZW50LmNvcmUu
|
||||
d2luZG93cy5uZXQlMkY=
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['812']
|
||||
User-Agent: [python-requests/2.9.1]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x86]
|
||||
x-client-OS: [win32]
|
||||
x-client-SKU: [Python]
|
||||
x-client-Ver: [0.2.0]
|
||||
method: POST
|
||||
uri: https://login.microsoftonline.com/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a/oauth2/token?api-version=1.0
|
||||
response:
|
||||
body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3599","expires_on":"1461346365","not_before":"1461342465","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ik1uQ19WWmNBVGZNNXBPWWlKSE1iYTlnb0VLWSIsImtpZCI6Ik1uQ19WWmNBVGZNNXBPWWlKSE1iYTlnb0VLWSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC81NDgyNmIyMi0zOGQ2LTRmYjItYmFkOS1iN2I5M2EzZTljNWEvIiwiaWF0IjoxNDYxMzQyNDY1LCJuYmYiOjE0NjEzNDI0NjUsImV4cCI6MTQ2MTM0NjM2NSwiYWNyIjoiMSIsImFtciI6WyJwd2QiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJmYW1pbHlfbmFtZSI6IkFkbWluMiIsImdpdmVuX25hbWUiOiJBZG1pbjIiLCJncm91cHMiOlsiZTRiYjBiNTYtMTAxNC00MGY4LTg4YWItM2Q4YThjYjBlMDg2Il0sImlwYWRkciI6IjE2Ny4yMjAuMS4xODYiLCJuYW1lIjoiQWRtaW4yIiwib2lkIjoiNTk2M2Y1MGMtN2M0My00MDVjLWFmN2UtNTMyOTRkZTc2YWJkIiwicHVpZCI6IjEwMDNCRkZEOTU5Rjg0MjMiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJzRGdleFJ3Q05JZlktaHpRampDRHZaVDdJemRmbzRTeXJyNHgwZEROelI0IiwidGlkIjoiNTQ4MjZiMjItMzhkNi00ZmIyLWJhZDktYjdiOTNhM2U5YzVhIiwidW5pcXVlX25hbWUiOiJhZG1pbjJAQXp1cmVTREtUZWFtLm9ubWljcm9zb2Z0LmNvbSIsInVwbiI6ImFkbWluMkBBenVyZVNES1RlYW0ub25taWNyb3NvZnQuY29tIiwidmVyIjoiMS4wIiwid2lkcyI6WyI2MmU5MDM5NC02OWY1LTQyMzctOTE5MC0wMTIxNzcxNDVlMTAiXX0.R3H5ivXBSIF5i4j8QAl-37RJj8IixBSIoQSjftKQfEKrieS0wj7K8ks8NnC23Xvgv1Jkrn4wyDiD55IoiZ_EfUBGEbdtR21sXllW40N0LjiW-o1aYdyLsD_MeGAya7mnrOZJZw3xQmJeTZX42DMy4XWgKBGez-jkegeqO0_OwUbcHniQedSVghTiRpbBFcN4AQkQQDds9wVNkpcE53vej3IRRSzubDb3kebeJvNYMynb6lAbO3ES9I_PXm9227OMwpqFP5DRyZNfyxpodR6ChCzoeKKlXvoXLEmbkJqf2qZVokDYsXFWUiqmtmTkentSWOKbEfqLY_xb3oGuKgqgGQ","refresh_token":"AAABAAAAiL9Kn2Z27UubvWFPbm0gLepEXKMzeuvIUPejBdMy-5f4ubHWN-Ci70fMmuRRDZq2Ztpq979pY94NPCsVEBGlNpAXPhIhd0hT6FUkv8dhFG0tgLCvShasQTJvxpyUmJjN9YDYBGf-FrIN4ZYmYqPvu6b2ODV5QmRq28jPDrOUIkkgMa1epfcXyEAvBD1BekrpUlsvcXbAXhxKH7eroWvht9-c0u4S98HeBogXZvt34pOwnvRoSf_JC_mInjxI-fF0XL3D60i-Q8tlaXYP09GctMjNAvGtppqRoxxHaX73rwbdze2xRwHu1RN6sfQ1oL_9EKtRs9JdCIJYjg-YC8-goB60zFW6Cptb3r9l1icR6trS2p72c5M6z1HHxe_Pl7lcD9xSD1KsEwpPo7iCdPn_btl4JT9bMjhu91rCaMNodkGw-GgYk21wI06AAIGwvPyvglZjhjhFcBlniMV2jb-aTNi9DK82BfyeHFxpyNUlTfRGaE7kz6I5hLraXK_3oAwa9DmEHPlh2mbFsVVNBE9bvykdmL50FJsiwFWJKuk7Puk8Ov-zIRLWXDq63Tuke6cffUc-MQCeYwwD_QBmB6ix02Pfk4XX-DvRmSNDwnr8QQ4a629tQZkD9Hhs6O1bI6pK6kHul156DORJM-s4e9_5vyAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2346']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 22 Apr 2016 16:32:45 GMT']
|
||||
Expires: ['-1']
|
||||
P3P: [CP="DSP CUR OTPi IND OTRi ONL FIN"]
|
||||
Pragma: [no-cache]
|
||||
Server: [Microsoft-IIS/8.5]
|
||||
Set-Cookie: [flight-uxoptin=true; path=/; secure; HttpOnly, x-ms-gateway-slice=productionb;
|
||||
path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly]
|
||||
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
X-Powered-By: [ASP.NET]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
|
@ -25,7 +74,7 @@ interactions:
|
|||
Cache-Control: [no-cache]
|
||||
Content-Encoding: [gzip]
|
||||
Content-Type: [application/json]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:07 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:46 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Server: [Microsoft-Azure-Storage-Resource-Provider/1.0, Microsoft-HTTPAPI/2.0]
|
||||
|
@ -40,18 +89,18 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:07 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:46 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: DELETE
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ContainerNotFound</Code><Message>The\
|
||||
\ specified container does not exist.\nRequestId:da27457f-0001-0054-472a-9c506e000000\n\
|
||||
Time:2016-04-22T00:01:08.1708010Z</Message></Error>"}
|
||||
\ specified container does not exist.\nRequestId:f809805b-0001-00eb-78b4-9c4418000000\n\
|
||||
Time:2016-04-22T16:32:47.1080908Z</Message></Error>"}
|
||||
headers:
|
||||
Content-Length: ['225']
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:07 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:46 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 404, message: The specified container does not exist.}
|
||||
|
@ -61,18 +110,18 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ContainerNotFound</Code><Message>The\
|
||||
\ specified container does not exist.\nRequestId:bc580c92-0001-00fc-292a-9c847b000000\n\
|
||||
Time:2016-04-22T00:01:08.6322074Z</Message></Error>"}
|
||||
\ specified container does not exist.\nRequestId:1770da4e-0001-0107-59b4-9c0a34000000\n\
|
||||
Time:2016-04-22T16:32:47.7238502Z</Message></Error>"}
|
||||
headers:
|
||||
Content-Length: ['225']
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:07 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 404, message: The specified container does not exist.}
|
||||
|
@ -83,16 +132,16 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: PUT
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
ETag: ['"0x8D36A41354566C1"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:46 GMT']
|
||||
ETag: ['"0x8D36ACBBD4C0C70"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 201, message: Created}
|
||||
|
@ -102,16 +151,16 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
ETag: ['"0x8D36A41354566C1"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
ETag: ['"0x8D36ACBBD4C0C70"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
|
@ -123,16 +172,16 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
ETag: ['"0x8D36A41354566C1"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
ETag: ['"0x8D36ACBBD4C0C70"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
|
@ -144,7 +193,7 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/?comp=list
|
||||
|
@ -153,13 +202,13 @@ interactions:
|
|||
\ ServiceEndpoint=\"https://travistestresourcegr3014.blob.core.windows.net/\"\
|
||||
><Containers><Container><Name>bootdiagnostics-testvm234-8bc8e6e1-9728-4540-b2a3-7f741fdd4609</Name><Properties><Last-Modified>Tue,\
|
||||
\ 15 Mar 2016 23:03:43 GMT</Last-Modified><Etag>\"0x8D34D260EA39931\"</Etag><LeaseStatus>unlocked</LeaseStatus><LeaseState>available</LeaseState></Properties></Container><Container><Name>testcontainer01</Name><Properties><Last-Modified>Fri,\
|
||||
\ 22 Apr 2016 00:01:08 GMT</Last-Modified><Etag>\"0x8D36A41354566C1\"</Etag><LeaseStatus>unlocked</LeaseStatus><LeaseState>available</LeaseState></Properties></Container><Container><Name>testcontainer1234</Name><Properties><Last-Modified>Wed,\
|
||||
\ 22 Apr 2016 16:32:47 GMT</Last-Modified><Etag>\"0x8D36ACBBD4C0C70\"</Etag><LeaseStatus>unlocked</LeaseStatus><LeaseState>available</LeaseState></Properties></Container><Container><Name>testcontainer1234</Name><Properties><Last-Modified>Wed,\
|
||||
\ 13 Apr 2016 22:48:55 GMT</Last-Modified><Etag>\"0x8D363EDCB2D35D1\"</Etag><LeaseStatus>unlocked</LeaseStatus><LeaseState>expired</LeaseState></Properties></Container><Container><Name>vhds</Name><Properties><Last-Modified>Tue,\
|
||||
\ 15 Mar 2016 23:03:44 GMT</Last-Modified><Etag>\"0x8D34D260EEA5070\"</Etag><LeaseStatus>locked</LeaseStatus><LeaseState>leased</LeaseState><LeaseDuration>infinite</LeaseDuration></Properties></Container></Containers><NextMarker\
|
||||
\ /></EnumerationResults>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:47 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 200, message: OK}
|
||||
|
@ -170,7 +219,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
x-ms-meta-foo: [bar]
|
||||
x-ms-meta-moo: [bak]
|
||||
x-ms-version: ['2015-04-05']
|
||||
|
@ -179,9 +228,9 @@ interactions:
|
|||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
ETag: ['"0x8D36A413592ACB9"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
ETag: ['"0x8D36ACBBDE7ACDB"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 200, message: OK}
|
||||
|
@ -191,16 +240,16 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container&comp=metadata
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:08 GMT']
|
||||
ETag: ['"0x8D36A413592ACB9"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
ETag: ['"0x8D36ACBBDE7ACDB"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-meta-foo: [bar]
|
||||
x-ms-meta-moo: [bak]
|
||||
|
@ -213,16 +262,16 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: PUT
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container&comp=metadata
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 200, message: OK}
|
||||
|
@ -232,16 +281,16 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container&comp=metadata
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:48 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 200, message: OK}
|
||||
|
@ -255,7 +304,7 @@ interactions:
|
|||
Content-Length: ['78']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: PUT
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testblockblob
|
||||
|
@ -263,9 +312,9 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A413609C6F7"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
ETag: ['"0x8D36ACBBE806C34"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 201, message: Created}
|
||||
|
@ -275,7 +324,7 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: HEAD
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testblockblob
|
||||
|
@ -286,9 +335,9 @@ interactions:
|
|||
Content-Length: ['78']
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A413609C6F7"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
ETag: ['"0x8D36ACBBE806C34"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -302,14 +351,14 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: HEAD
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testappendblob
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 404, message: The specified blob does not exist.}
|
||||
|
@ -321,16 +370,16 @@ interactions:
|
|||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-blob-type: [AppendBlob]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: PUT
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testappendblob
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A41364D6FEC"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
ETag: ['"0x8D36ACBBEC043A8"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 201, message: Created}
|
||||
|
@ -343,7 +392,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['78']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: PUT
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testappendblob?comp=appendblock
|
||||
|
@ -351,9 +400,9 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A413655FD7B"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
ETag: ['"0x8D36ACBBEC834D6"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-append-offset: ['0']
|
||||
x-ms-blob-committed-block-count: ['1']
|
||||
|
@ -365,7 +414,7 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: HEAD
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testappendblob
|
||||
|
@ -375,9 +424,9 @@ interactions:
|
|||
Accept-Ranges: [bytes]
|
||||
Content-Length: ['78']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A413655FD7B"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
ETag: ['"0x8D36ACBBEC834D6"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-committed-block-count: ['1']
|
||||
x-ms-blob-type: [AppendBlob]
|
||||
|
@ -395,7 +444,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['78']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: PUT
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testappendblob?comp=appendblock
|
||||
|
@ -403,9 +452,9 @@ interactions:
|
|||
body: {string: ''}
|
||||
headers:
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A413689C41B"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
ETag: ['"0x8D36ACBBEEC1924"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-append-offset: ['78']
|
||||
x-ms-blob-committed-block-count: ['2']
|
||||
|
@ -417,7 +466,7 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:11 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: HEAD
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testappendblob
|
||||
|
@ -427,9 +476,9 @@ interactions:
|
|||
Accept-Ranges: [bytes]
|
||||
Content-Length: ['156']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
ETag: ['"0x8D36A413689C41B"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
ETag: ['"0x8D36ACBBEEC1924"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-committed-block-count: ['2']
|
||||
x-ms-blob-type: [AppendBlob]
|
||||
|
@ -444,7 +493,7 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:11 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
x-ms-range: [bytes=None-]
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
|
@ -457,9 +506,9 @@ interactions:
|
|||
Content-Length: ['78']
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:11 GMT']
|
||||
ETag: ['"0x8D36A413609C6F7"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
ETag: ['"0x8D36ACBBE806C34"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -473,7 +522,7 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:11 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container&comp=list
|
||||
|
@ -481,16 +530,16 @@ interactions:
|
|||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><EnumerationResults\
|
||||
\ ServiceEndpoint=\"https://travistestresourcegr3014.blob.core.windows.net/\"\
|
||||
\ ContainerName=\"testcontainer01\"><Blobs><Blob><Name>testappendblob</Name><Properties><Last-Modified>Fri,\
|
||||
\ 22 Apr 2016 00:01:10 GMT</Last-Modified><Etag>0x8D36A413689C41B</Etag><Content-Length>156</Content-Length><Content-Type>application/octet-stream</Content-Type><Content-Encoding\
|
||||
\ 22 Apr 2016 16:32:50 GMT</Last-Modified><Etag>0x8D36ACBBEEC1924</Etag><Content-Length>156</Content-Length><Content-Type>application/octet-stream</Content-Type><Content-Encoding\
|
||||
\ /><Content-Language /><Content-MD5 /><Cache-Control /><Content-Disposition\
|
||||
\ /><BlobType>AppendBlob</BlobType><LeaseStatus>unlocked</LeaseStatus><LeaseState>available</LeaseState></Properties></Blob><Blob><Name>testblockblob</Name><Properties><Last-Modified>Fri,\
|
||||
\ 22 Apr 2016 00:01:10 GMT</Last-Modified><Etag>0x8D36A413609C6F7</Etag><Content-Length>78</Content-Length><Content-Type>application/octet-stream</Content-Type><Content-Encoding\
|
||||
\ 22 Apr 2016 16:32:49 GMT</Last-Modified><Etag>0x8D36ACBBE806C34</Etag><Content-Length>78</Content-Length><Content-Type>application/octet-stream</Content-Type><Content-Encoding\
|
||||
\ /><Content-Language /><Content-MD5>zeGiTMG1TdAobIHawzap3A==</Content-MD5><Cache-Control\
|
||||
\ /><Content-Disposition /><BlobType>BlockBlob</BlobType><LeaseStatus>unlocked</LeaseStatus><LeaseState>available</LeaseState></Properties></Blob></Blobs><NextMarker\
|
||||
\ /></EnumerationResults>"}
|
||||
headers:
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:11 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 200, message: OK}
|
||||
|
@ -500,7 +549,7 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:11 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: HEAD
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testblockblob
|
||||
|
@ -511,9 +560,9 @@ interactions:
|
|||
Content-Length: ['78']
|
||||
Content-MD5: [zeGiTMG1TdAobIHawzap3A==]
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:11 GMT']
|
||||
ETag: ['"0x8D36A413609C6F7"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:10 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:50 GMT']
|
||||
ETag: ['"0x8D36ACBBE806C34"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-blob-type: [BlockBlob]
|
||||
x-ms-lease-state: [available]
|
||||
|
@ -528,14 +577,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:11 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: DELETE
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testblockblob
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 202, message: Accepted}
|
||||
|
@ -545,14 +594,14 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: HEAD
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01/testblockblob
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 404, message: The specified blob does not exist.}
|
||||
|
@ -564,7 +613,7 @@ interactions:
|
|||
Content-Length: ['0']
|
||||
If-Modified-Since: ['Fri, 08 Apr 2016 12:00:00 GMT']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
x-ms-lease-action: [acquire]
|
||||
x-ms-lease-duration: ['60']
|
||||
x-ms-proposed-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd]
|
||||
|
@ -574,9 +623,9 @@ interactions:
|
|||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd]
|
||||
x-ms-version: ['2015-04-05']
|
||||
|
@ -587,16 +636,16 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-duration: [fixed]
|
||||
x-ms-lease-state: [leased]
|
||||
|
@ -610,7 +659,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:52 GMT']
|
||||
x-ms-lease-action: [change]
|
||||
x-ms-lease-id: [abcdabcd-abcd-abcd-abcd-abcdabcdabcd]
|
||||
x-ms-proposed-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba]
|
||||
|
@ -620,9 +669,9 @@ interactions:
|
|||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba]
|
||||
x-ms-version: ['2015-04-05']
|
||||
|
@ -634,7 +683,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:52 GMT']
|
||||
x-ms-lease-action: [renew]
|
||||
x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba]
|
||||
x-ms-version: ['2015-04-05']
|
||||
|
@ -643,9 +692,9 @@ interactions:
|
|||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:12 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:52 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba]
|
||||
x-ms-version: ['2015-04-05']
|
||||
|
@ -656,16 +705,16 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:52 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:51 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-duration: [fixed]
|
||||
x-ms-lease-state: [leased]
|
||||
|
@ -679,7 +728,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:52 GMT']
|
||||
x-ms-lease-action: [break]
|
||||
x-ms-lease-break-period: ['30']
|
||||
x-ms-version: ['2015-04-05']
|
||||
|
@ -688,9 +737,9 @@ interactions:
|
|||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:52 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-time: ['30']
|
||||
x-ms-version: ['2015-04-05']
|
||||
|
@ -701,16 +750,16 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:52 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:53 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-state: [breaking]
|
||||
x-ms-lease-status: [locked]
|
||||
|
@ -723,7 +772,7 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:53 GMT']
|
||||
x-ms-lease-action: [release]
|
||||
x-ms-lease-id: [dcbadcba-dcba-dcba-dcba-dcbadcbadcba]
|
||||
x-ms-version: ['2015-04-05']
|
||||
|
@ -732,9 +781,9 @@ interactions:
|
|||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:52 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 200, message: OK}
|
||||
|
@ -744,16 +793,16 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:14 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:53 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:13 GMT']
|
||||
ETag: ['"0x8D36A4135D2D28F"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 00:01:09 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:53 GMT']
|
||||
ETag: ['"0x8D36ACBBE244FA2"']
|
||||
Last-Modified: ['Fri, 22 Apr 2016 16:32:49 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-lease-state: [available]
|
||||
x-ms-lease-status: [unlocked]
|
||||
|
@ -766,14 +815,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:14 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:53 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: DELETE
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:14 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:53 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 202, message: Accepted}
|
||||
|
@ -783,18 +832,18 @@ interactions:
|
|||
Accept-Encoding: [identity]
|
||||
Connection: [keep-alive]
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:14 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:54 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: GET
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: "\uFEFF<?xml version=\"1.0\" encoding=\"utf-8\"?><Error><Code>ContainerNotFound</Code><Message>The\
|
||||
\ specified container does not exist.\nRequestId:0e182c09-0001-00cc-772a-9cde51000000\n\
|
||||
Time:2016-04-22T00:01:15.3838656Z</Message></Error>"}
|
||||
\ specified container does not exist.\nRequestId:22d875b3-0001-010d-0db4-9c13bd000000\n\
|
||||
Time:2016-04-22T16:32:54.8435723Z</Message></Error>"}
|
||||
headers:
|
||||
Content-Length: ['225']
|
||||
Content-Type: [application/xml]
|
||||
Date: ['Fri, 22 Apr 2016 00:01:14 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:54 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 404, message: The specified container does not exist.}
|
||||
|
@ -805,14 +854,14 @@ interactions:
|
|||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [Azure-Storage/0.30.0 (Python CPython 3.5.1; Windows 10)]
|
||||
x-ms-date: ['Fri, 22 Apr 2016 00:01:14 GMT']
|
||||
x-ms-date: ['Fri, 22 Apr 2016 16:32:54 GMT']
|
||||
x-ms-version: ['2015-04-05']
|
||||
method: DELETE
|
||||
uri: https://travistestresourcegr3014.blob.core.windows.net/testcontainer01?restype=container
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Date: ['Fri, 22 Apr 2016 00:01:15 GMT']
|
||||
Date: ['Fri, 22 Apr 2016 16:32:54 GMT']
|
||||
Server: [Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0]
|
||||
x-ms-version: ['2015-04-05']
|
||||
status: {code: 202, message: Accepted}
|
||||
|
|
Загрузка…
Ссылка в новой задаче